File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments