Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MLAir
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
esde
machine-learning
MLAir
Commits
83a3c975
Commit
83a3c975
authored
1 year ago
by
leufen1
Browse files
Options
Downloads
Patches
Plain Diff
update tests
parent
4fdf7b77
No related branches found
No related tags found
3 merge requests
!522
filter can now combine obs, forecast, and apriori for first iteration. Further...
,
!521
Resolve "release v2.4.0"
,
!513
Resolve "robust apriori estimate for short timeseries"
Pipeline
#140222
passed
1 year ago
Stage: test
Stage: docs
Stage: pages
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/test_helpers/test_filter.py
+4
-4
4 additions, 4 deletions
test/test_helpers/test_filter.py
with
4 additions
and
4 deletions
test/test_helpers/test_filter.py
+
4
−
4
View file @
83a3c975
...
@@ -178,8 +178,8 @@ class TestClimateFIRFilter:
...
@@ -178,8 +178,8 @@ class TestClimateFIRFilter:
obj
=
object
.
__new__
(
ClimateFIRFilter
)
obj
=
object
.
__new__
(
ClimateFIRFilter
)
sel_opts
=
{
time_dim
:
slice
(
"
2010-05
"
,
"
2010-08
"
)}
sel_opts
=
{
time_dim
:
slice
(
"
2010-05
"
,
"
2010-08
"
)}
res
=
obj
.
create_monthly_mean
(
xr_array_long
,
time_dim
,
sel_opts
=
sel_opts
)
res
=
obj
.
create_monthly_mean
(
xr_array_long
,
time_dim
,
sel_opts
=
sel_opts
)
assert
res
.
dropna
(
time_dim
)[
f
"
{
time_dim
}
.month
"
].
min
()
==
5
assert
res
.
dropna
(
time_dim
)[
f
"
{
time_dim
}
.month
"
].
min
()
==
1
assert
res
.
dropna
(
time_dim
)[
f
"
{
time_dim
}
.month
"
].
max
()
==
8
assert
res
.
dropna
(
time_dim
)[
f
"
{
time_dim
}
.month
"
].
max
()
==
12
mean_jun_2010
=
xr_array_long
[
xr_array_long
[
f
"
{
time_dim
}
.month
"
]
==
6
].
sel
({
time_dim
:
"
2010
"
}).
mean
()
mean_jun_2010
=
xr_array_long
[
xr_array_long
[
f
"
{
time_dim
}
.month
"
]
==
6
].
sel
({
time_dim
:
"
2010
"
}).
mean
()
assert
res
.
sel
({
time_dim
:
"
2010-06-15T00:00:00
"
})
==
mean_jun_2010
assert
res
.
sel
({
time_dim
:
"
2010-06-15T00:00:00
"
})
==
mean_jun_2010
...
@@ -226,8 +226,8 @@ class TestClimateFIRFilter:
...
@@ -226,8 +226,8 @@ class TestClimateFIRFilter:
xr_array_long
=
xr_array_long
.
resample
({
time_dim
:
"
1H
"
}).
interpolate
()
xr_array_long
=
xr_array_long
.
resample
({
time_dim
:
"
1H
"
}).
interpolate
()
sel_opts
=
{
time_dim
:
slice
(
"
2010-05
"
,
"
2010-08
"
)}
sel_opts
=
{
time_dim
:
slice
(
"
2010-05
"
,
"
2010-08
"
)}
res
=
obj
.
create_seasonal_hourly_mean
(
xr_array_long
,
time_dim
,
sel_opts
=
sel_opts
)
res
=
obj
.
create_seasonal_hourly_mean
(
xr_array_long
,
time_dim
,
sel_opts
=
sel_opts
)
assert
res
.
dropna
(
time_dim
)[
f
"
{
time_dim
}
.month
"
].
min
()
==
5
assert
res
.
dropna
(
time_dim
)[
f
"
{
time_dim
}
.month
"
].
min
()
==
1
assert
res
.
dropna
(
time_dim
)[
f
"
{
time_dim
}
.month
"
].
max
()
==
8
assert
res
.
dropna
(
time_dim
)[
f
"
{
time_dim
}
.month
"
].
max
()
==
12
def
test_create_unity_array
(
self
,
xr_array
,
time_dim
):
def
test_create_unity_array
(
self
,
xr_array
,
time_dim
):
obj
=
object
.
__new__
(
ClimateFIRFilter
)
obj
=
object
.
__new__
(
ClimateFIRFilter
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment