Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
IRISCC-Dashboard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
KIT
imkasf-top
IRISCC-Dashboard
Commits
26a497f2
Commit
26a497f2
authored
1 week ago
by
Florian Obersteiner
Browse files
Options
Downloads
Patches
Plain Diff
fail in no data
parent
4fedb02a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!6
fail if no data, secondary y
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/data.py
+18
-0
18 additions, 0 deletions
src/data.py
with
18 additions
and
0 deletions
src/data.py
+
18
−
0
View file @
26a497f2
...
...
@@ -19,8 +19,14 @@ def load_from_thredds(
)
->
(
pd
.
DataFrame
,
dict
[
int
,
str
]):
# type: ignore
"""
Load multiple netCDF files from a THREDS TDS into a single DataFrame.
Raises:
ValueError: If
'
ACN
'
not found in dataset.
ValueError: If no datasets are found.
"""
log
.
debug
(
"
begin load data from THREDDS...
"
)
dataframes
=
[]
airports
=
{}
...
...
@@ -54,7 +60,11 @@ def load_from_thredds(
dataframes
.
append
(
df
)
if
len
(
dataframes
)
==
0
:
raise
ValueError
(
"
No datasets found!
"
)
log
.
debug
(
"
Data loaded from THREDDS successfully
"
)
return
(
pd
.
concat
(
dataframes
),
airports
)
...
...
@@ -63,6 +73,10 @@ def load_from_disk(
)
->
(
pd
.
DataFrame
,
dict
[
int
,
str
]):
# type: ignore
"""
Load multiple netCDF files into a single DataFrame.
Raises:
ValueError: If
'
ACN
'
not found in dataset.
ValueError: If no datasets are found.
"""
dataframes
=
[]
airports
=
{}
...
...
@@ -99,5 +113,9 @@ def load_from_disk(
dataframes
.
append
(
df
)
if
len
(
dataframes
)
==
0
:
raise
ValueError
(
"
No datasets found!
"
)
log
.
info
(
"
Data loaded from disk successfully
"
)
return
(
pd
.
concat
(
dataframes
),
airports
)
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