Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
toargridding
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
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
toar-public
toargridding
Commits
54d6e591
Commit
54d6e591
authored
1 year ago
by
Simon Grasse
Browse files
Options
Downloads
Patches
Plain Diff
fix: handle date inconsistencies at begin/end due to local time
parent
810952ac
No related branches found
No related tags found
1 merge request
!11
Creation of first beta release version
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
toargridding/metadata.py
+3
-2
3 additions, 2 deletions
toargridding/metadata.py
toargridding/toar_rest_client.py
+6
-6
6 additions, 6 deletions
toargridding/toar_rest_client.py
with
9 additions
and
8 deletions
toargridding/metadata.py
+
3
−
2
View file @
54d6e591
from
datetime
import
datetime
from
datetime
import
datetime
,
timedelta
from
enum
import
Enum
from
dataclasses
import
dataclass
...
...
@@ -33,7 +33,8 @@ class TimeSample:
@property
def
daterange_option
(
self
):
return
f
"
{
self
.
start
.
isoformat
()
}
,
{
self
.
end
.
isoformat
()
}
"
end_with_padding
=
self
.
end
+
timedelta
(
1
)
return
f
"
{
self
.
start
.
isoformat
()
}
,
{
end_with_padding
.
isoformat
()
}
"
@property
def
frequency
(
self
):
...
...
This diff is collapsed.
Click to expand it.
toargridding/toar_rest_client.py
+
6
−
6
View file @
54d6e591
...
...
@@ -154,16 +154,16 @@ class AnalysisService:
return
coords
[
valid_coords
]
def
get_clean_timeseries
(
self
,
timeseries
,
metadata
:
Metadata
):
# TODO maybe use cf-index here already ?
first
,
last
=
timeseries
.
columns
[
0
],
timeseries
.
columns
[
-
1
]
# remove data where utc -> sun/local ? time conversion leads to dateshift
timeseries
.
drop
(
columns
=
[
first
,
last
],
inplace
=
True
)
timeseries
.
columns
=
metadata
.
time
.
as_datetime_index
()
all_na
=
timeseries
.
isna
().
all
(
axis
=
1
)
timeseries
=
timeseries
[
~
all_na
]
timeseries
=
timeseries
.
fillna
(
0
)
response_timesteps
=
timeseries
.
columns
expected_timesteps
=
metadata
.
time
.
as_datetime_index
()
if
not
(
response_timesteps
==
expected_timesteps
).
all
():
raise
ValueError
(
"
foo
"
)
# TODO maybe use cf-index here already ?
timeseries
.
columns
=
metadata
.
time
.
as_datetime_index
()
return
timeseries
def
load_data
(
...
...
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