Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions imap_processing/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""Version information for the imap_processing package."""

# These version placeholders will be replaced later during substitution.
__version__ = "1.0.29.post19.dev0+f2be49d7"
__version_tuple__ = (1, 0, 29, "post19", "dev0", "f2be49d7")
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

new poetry and may be CDF library catched this bug.

Original file line number Diff line number Diff line change
Expand Up @@ -902,6 +902,7 @@ de_2d_attrs:
DEPEND_0: epoch
DEPEND_1: priority
DICT_KEY: SPASE>Support>SupportQuantity:Other
DISPLAY_TYPE: spectogram
FIELDNAM: Direct Event Data
FILLVAL: -9223372036854775808
FORMAT: I5
Expand All @@ -919,6 +920,7 @@ de_3d_attrs:
DEPEND_1: priority
DEPEND_2: event_num
DICT_KEY: SPASE>Support>SupportQuantity:Other
DISPLAY_TYPE: spectogram
FIELDNAM: Direct Event Data
FILLVAL: -9223372036854775808
FORMAT: I{num_digits}
Expand Down
10 changes: 0 additions & 10 deletions imap_processing/codice/codice_l1a.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
from imap_processing.codice.codice_l1a_hi_omni import l1a_hi_omni
from imap_processing.codice.codice_l1a_hi_priority import l1a_hi_priority
from imap_processing.codice.codice_l1a_hi_sectored import l1a_hi_sectored
from imap_processing.codice.codice_l1a_lo_angular import l1a_lo_angular
from imap_processing.codice.codice_l1a_lo_counters_aggregated import (
l1a_lo_counters_aggregated,
)
Expand Down Expand Up @@ -80,15 +79,6 @@ def process_l1a( # noqa: PLR0912
if apid == CODICEAPID.COD_LO_SW_SPECIES_COUNTS:
logger.info("Processing Lo SW Species Counts")
datasets.append(l1a_lo_species(datasets_by_apid[apid], lut_file))
elif apid == CODICEAPID.COD_LO_NSW_SPECIES_COUNTS:
logger.info("Processing Lo NSW Species Counts")
datasets.append(l1a_lo_species(datasets_by_apid[apid], lut_file))
elif apid == CODICEAPID.COD_LO_SW_ANGULAR_COUNTS:
logger.info("Processing Lo SW Angular Counts")
datasets.append(l1a_lo_angular(datasets_by_apid[apid], lut_file))
elif apid == CODICEAPID.COD_LO_NSW_ANGULAR_COUNTS:
logger.info("Processing Lo NSW Angular Counts")
datasets.append(l1a_lo_angular(datasets_by_apid[apid], lut_file))
elif apid == CODICEAPID.COD_HI_OMNI_SPECIES_COUNTS:
datasets.append(l1a_hi_omni(datasets_by_apid[apid], lut_file))
elif apid == CODICEAPID.COD_HI_SECT_SPECIES_COUNTS:
Expand Down
Loading
Loading