From debfb2df6b024b01abc51a80e8d646c181f26c7b Mon Sep 17 00:00:00 2001 From: Luisa Date: Fri, 19 Dec 2025 10:09:12 -0700 Subject: [PATCH] lo counters singles inst az labels should be 1-24 --- imap_processing/codice/codice_l1a_lo_counters_singles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imap_processing/codice/codice_l1a_lo_counters_singles.py b/imap_processing/codice/codice_l1a_lo_counters_singles.py index a63127cba..7ca12dd7a 100644 --- a/imap_processing/codice/codice_l1a_lo_counters_singles.py +++ b/imap_processing/codice/codice_l1a_lo_counters_singles.py @@ -164,7 +164,7 @@ def l1a_lo_counters_singles(unpacked_dataset: xr.Dataset, lut_file: Path) -> xr. attrs=cdf_attrs.get_variable_attributes("inst_az", check_schema=False), ), "inst_az_label": xr.DataArray( - np.arange(inst_az, dtype=np.uint8).astype(str), + (np.arange(inst_az, dtype=np.uint8) + 1).astype(str), dims=("inst_az",), attrs=cdf_attrs.get_variable_attributes( "inst_az_label", check_schema=False