Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
geomag-algorithms
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
Service Desk
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
ghsc
National Geomagnetism Program
geomag-algorithms
Commits
b4ce9b7a
Commit
b4ce9b7a
authored
1 year ago
by
Geels, Brendan Ryan
Browse files
Options
Downloads
Patches
Plain Diff
Add some error handling for get_instrument_calibrations
parent
86e257d3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!306
Replace geomagio/Metadata.py & Poetry Update
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
geomagio/metadata/instrument/InstrumentCalibrations.py
+31
-13
31 additions, 13 deletions
geomagio/metadata/instrument/InstrumentCalibrations.py
with
31 additions
and
13 deletions
geomagio/metadata/instrument/InstrumentCalibrations.py
+
31
−
13
View file @
b4ce9b7a
...
@@ -327,16 +327,34 @@ def get_instrument_calibrations(
...
@@ -327,16 +327,34 @@ def get_instrument_calibrations(
# remove invalid metadata entries
# remove invalid metadata entries
for
i
,
m
in
enumerate
(
metadata
):
for
i
,
m
in
enumerate
(
metadata
):
if
not
m
.
data_valid
:
if
not
m
.
data_valid
or
"
instrument_category
"
not
in
m
.
metadata
:
metadata
.
pop
(
i
)
metadata
.
remove
(
m
)
instrumentCalibrations
=
InstrumentCalibrations
(
metadata
)
if
not
metadata
or
metadata
is
None
:
calibrations
=
instrumentCalibrations
.
get_calibrations
()
raise
ValueError
(
f
"
No valid metadata returned for
{
observatory
}
for time interval:
{
start_time
}
-
{
end_time
}
"
return
[
)
c
else
:
for
c
in
calibrations
instrumentCalibrations
=
InstrumentCalibrations
(
metadata
)
if
c
[
"
station
"
]
==
observatory
calibrations
=
instrumentCalibrations
.
get_calibrations
()
and
(
end_time
is
None
or
c
[
"
start_time
"
]
is
None
or
c
[
"
start_time
"
]
<
end_time
)
and
(
start_time
is
None
or
c
[
"
end_time
"
]
is
None
or
c
[
"
end_time
"
]
>
start_time
)
if
not
calibrations
or
calibrations
is
None
:
]
raise
ValueError
(
f
"
No valid calibrations returned for
{
observatory
}
for time interval:
{
start_time
}
-
{
end_time
}
"
)
else
:
return
[
c
for
c
in
calibrations
if
c
[
"
station
"
]
==
observatory
and
(
end_time
is
None
or
c
[
"
start_time
"
]
is
None
or
c
[
"
start_time
"
]
<
end_time
)
and
(
start_time
is
None
or
c
[
"
end_time
"
]
is
None
or
c
[
"
end_time
"
]
>
start_time
)
]
This diff is collapsed.
Click to expand it.
Geels, Brendan Ryan
@bgeels
mentioned in commit
26761aa0
·
1 year ago
mentioned in commit
26761aa0
mentioned in commit 26761aa01d442217d3f296e93e77432ce0ca83a3
Toggle commit list
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