Skip to content

Commit 5a471b8

Browse files
authored
Fix hi l1a tests broken by upgrade to cdflib 1.3.9 (#3008)
1 parent 010caaa commit 5a471b8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

imap_processing/hi/hi_l1a.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -404,11 +404,11 @@ def finish_hist_dataset(input_ds: xr.Dataset) -> xr.Dataset:
404404
dataset = input_ds.rename_vars({"shcoarse": "ccsds_met"})
405405

406406
dataset.epoch.attrs.update(
407-
attr_mgr.get_variable_attributes("epoch"),
407+
attr_mgr.get_variable_attributes("epoch", check_schema=False),
408408
)
409409
# Add the hist_angle coordinate
410410
# Histogram data is binned in 90, 4-degree bins
411-
attrs = attr_mgr.get_variable_attributes("hi_hist_angle")
411+
attrs = attr_mgr.get_variable_attributes("hi_hist_angle", check_schema=False)
412412
dataset.coords.update(
413413
{
414414
"angle": xr.DataArray(
@@ -535,7 +535,7 @@ def finish_memdmp_dataset(input_ds: xr.Dataset) -> xr.Dataset:
535535
dataset = dataset.rename_vars({"shcoarse": "ccsds_met"})
536536

537537
dataset.epoch.attrs.update(
538-
attr_mgr.get_variable_attributes("epoch"),
538+
attr_mgr.get_variable_attributes("epoch", check_schema=False),
539539
)
540540

541541
# Update existing variable attributes

0 commit comments

Comments
 (0)