Skip to content
Snippets Groups Projects
Commit b4ce9b7a authored by Geels, Brendan Ryan's avatar Geels, Brendan Ryan :tophat:
Browse files

Add some error handling for get_instrument_calibrations

parent 86e257d3
No related branches found
No related tags found
1 merge request!306Replace geomagio/Metadata.py & Poetry Update
...@@ -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
)
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment