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
e34ea6da
Commit
e34ea6da
authored
11 months ago
by
Simon Grasse
Browse files
Options
Downloads
Patches
Plain Diff
fix: load content of response not response
parent
7a0662aa
No related branches found
No related tags found
1 merge request
!11
Creation of first beta release version
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
toargridding/toar_rest_client.py
+5
-3
5 additions, 3 deletions
toargridding/toar_rest_client.py
with
5 additions
and
3 deletions
toargridding/toar_rest_client.py
+
5
−
3
View file @
e34ea6da
...
...
@@ -142,10 +142,12 @@ class AnalysisService:
timeseries
=
self
.
get_clean_timeseries
(
timeseries
,
metadata
)
return
AnalysisRequestResult
(
timeseries
,
coords
,
metadata
)
def
get_timeseries_and_metadata
(
self
,
metadata
:
Metadata
):
def
get_timeseries_and_metadata
(
self
,
metadata
:
Metadata
)
->
tuple
[
pd
.
DataFrame
,
pd
.
DataFrame
]:
query_options
=
QueryOptions
.
from_metadata
(
metadata
)
conten
t
=
self
.
connection
.
get
(
query_options
)
timeseries
,
timeseries_metadata
=
self
.
load_data
(
content
,
metadata
)
resul
t
=
self
.
connection
.
get
(
query_options
)
timeseries
,
timeseries_metadata
=
self
.
load_data
(
result
.
content
,
metadata
)
return
timeseries
,
timeseries_metadata
def
get_clean_coords
(
self
,
timeseries_metadata
):
...
...
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