imap-processing 0.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- imap_processing/__init__.py +34 -0
- imap_processing/_version.py +3 -0
- imap_processing/ccsds/__init__.py +0 -0
- imap_processing/ccsds/ccsds_data.py +55 -0
- imap_processing/ccsds/excel_to_xtce.py +477 -0
- imap_processing/cdf/__init__.py +0 -0
- imap_processing/cdf/cdf_attribute_manager.py +322 -0
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +212 -0
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +1358 -0
- imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +391 -0
- imap_processing/cdf/config/imap_constant_attrs.yaml +33 -0
- imap_processing/cdf/config/imap_default_global_cdf_attrs.yaml +17 -0
- imap_processing/cdf/config/imap_glows_global_cdf_attrs.yaml +41 -0
- imap_processing/cdf/config/imap_glows_l1a_variable_attrs.yaml +499 -0
- imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +334 -0
- imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +51 -0
- imap_processing/cdf/config/imap_hi_variable_attrs.yaml +435 -0
- imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +27 -0
- imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +493 -0
- imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +564 -0
- imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +24 -0
- imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +426 -0
- imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +90 -0
- imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +487 -0
- imap_processing/cdf/config/imap_lo_l1b_variable_attrs.yaml +121 -0
- imap_processing/cdf/config/imap_lo_l1c_variable_attrs.yaml +179 -0
- imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +97 -0
- imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +201 -0
- imap_processing/cdf/config/imap_swapi_global_cdf_attrs.yaml +33 -0
- imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +137 -0
- imap_processing/cdf/config/imap_swe_global_cdf_attrs.yaml +24 -0
- imap_processing/cdf/config/imap_swe_l1a_variable_attrs.yaml +234 -0
- imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +273 -0
- imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +100 -0
- imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +52 -0
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +297 -0
- imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +121 -0
- imap_processing/cdf/config/shared/default_global_cdf_attrs_schema.yaml +246 -0
- imap_processing/cdf/config/shared/default_variable_cdf_attrs_schema.yaml +466 -0
- imap_processing/cdf/imap_cdf_manager.py +64 -0
- imap_processing/cdf/utils.py +147 -0
- imap_processing/cli.py +863 -0
- imap_processing/codice/__init__.py +1 -0
- imap_processing/codice/codice_l0.py +54 -0
- imap_processing/codice/codice_l1a.py +558 -0
- imap_processing/codice/codice_l1b.py +194 -0
- imap_processing/codice/constants.py +986 -0
- imap_processing/codice/data/esa_sweep_values.csv +257 -0
- imap_processing/codice/data/lo_stepping_values.csv +129 -0
- imap_processing/codice/decompress.py +142 -0
- imap_processing/codice/packet_definitions/P_COD_NHK.xml +618 -0
- imap_processing/codice/packet_definitions/codice_packet_definition.xml +5073 -0
- imap_processing/codice/utils.py +95 -0
- imap_processing/decom.py +40 -0
- imap_processing/glows/__init__.py +1 -0
- imap_processing/glows/ancillary/l1b_conversion_table_v001.json +42 -0
- imap_processing/glows/l0/__init__.py +0 -0
- imap_processing/glows/l0/decom_glows.py +91 -0
- imap_processing/glows/l0/glows_l0_data.py +194 -0
- imap_processing/glows/l1a/glows_l1a.py +424 -0
- imap_processing/glows/l1a/glows_l1a_data.py +555 -0
- imap_processing/glows/l1b/glows_l1b.py +270 -0
- imap_processing/glows/l1b/glows_l1b_data.py +583 -0
- imap_processing/glows/packet_definitions/GLX_COMBINED.xml +254 -0
- imap_processing/glows/packet_definitions/P_GLX_TMSCDE.xml +97 -0
- imap_processing/glows/packet_definitions/P_GLX_TMSCHIST.xml +215 -0
- imap_processing/glows/utils/__init__.py +0 -0
- imap_processing/glows/utils/constants.py +105 -0
- imap_processing/hi/__init__.py +1 -0
- imap_processing/hi/l0/__init__.py +0 -0
- imap_processing/hi/l0/decom_hi.py +24 -0
- imap_processing/hi/l1a/__init__.py +0 -0
- imap_processing/hi/l1a/hi_l1a.py +73 -0
- imap_processing/hi/l1a/histogram.py +142 -0
- imap_processing/hi/l1a/housekeeping.py +27 -0
- imap_processing/hi/l1a/science_direct_event.py +341 -0
- imap_processing/hi/l1b/__init__.py +0 -0
- imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +154 -0
- imap_processing/hi/l1b/hi_l1b.py +127 -0
- imap_processing/hi/l1c/__init__.py +0 -0
- imap_processing/hi/l1c/hi_l1c.py +228 -0
- imap_processing/hi/packet_definitions/__init__.py +0 -0
- imap_processing/hi/packet_definitions/hi_packet_definition.xml +482 -0
- imap_processing/hi/utils.py +27 -0
- imap_processing/hit/__init__.py +1 -0
- imap_processing/hit/l0/__init__.py +0 -0
- imap_processing/hit/l0/data_classes/housekeeping.py +240 -0
- imap_processing/hit/l0/data_classes/science_packet.py +259 -0
- imap_processing/hit/l0/decom_hit.py +467 -0
- imap_processing/hit/l0/utils/hit_base.py +57 -0
- imap_processing/hit/l1a/__init__.py +0 -0
- imap_processing/hit/l1a/hit_l1a.py +254 -0
- imap_processing/hit/l1b/hit_l1b.py +179 -0
- imap_processing/hit/packet_definitions/hit_packet_definitions.xml +1276 -0
- imap_processing/ialirt/__init__.py +0 -0
- imap_processing/ialirt/l0/__init__.py +0 -0
- imap_processing/ialirt/l0/process_hit.py +220 -0
- imap_processing/ialirt/packet_definitions/__init__.py +0 -0
- imap_processing/ialirt/packet_definitions/ialirt.xml +778 -0
- imap_processing/ialirt/packet_definitions/ialirt_hit.xml +186 -0
- imap_processing/idex/__init__.py +2 -0
- imap_processing/idex/idex_constants.py +27 -0
- imap_processing/idex/idex_l0.py +31 -0
- imap_processing/idex/idex_l1a.py +631 -0
- imap_processing/idex/packet_definitions/idex_packet_definition.xml +3162 -0
- imap_processing/lo/__init__.py +1 -0
- imap_processing/lo/l0/__init__.py +0 -0
- imap_processing/lo/l0/data_classes/science_direct_events.py +215 -0
- imap_processing/lo/l0/data_classes/star_sensor.py +98 -0
- imap_processing/lo/l0/decompression_tables/12_to_16_bit.csv +4097 -0
- imap_processing/lo/l0/decompression_tables/8_to_12_bit.csv +257 -0
- imap_processing/lo/l0/decompression_tables/8_to_16_bit.csv +257 -0
- imap_processing/lo/l0/decompression_tables/decompression_tables.py +75 -0
- imap_processing/lo/l0/lo_apid.py +15 -0
- imap_processing/lo/l0/lo_science.py +150 -0
- imap_processing/lo/l0/utils/binary_string.py +59 -0
- imap_processing/lo/l0/utils/bit_decompression.py +62 -0
- imap_processing/lo/l0/utils/lo_base.py +57 -0
- imap_processing/lo/l1a/__init__.py +0 -0
- imap_processing/lo/l1a/lo_l1a.py +157 -0
- imap_processing/lo/l1b/lo_l1b.py +160 -0
- imap_processing/lo/l1c/lo_l1c.py +180 -0
- imap_processing/lo/packet_definitions/lo_xtce.xml +3541 -0
- imap_processing/mag/__init__.py +2 -0
- imap_processing/mag/constants.py +108 -0
- imap_processing/mag/l0/decom_mag.py +170 -0
- imap_processing/mag/l0/mag_l0_data.py +118 -0
- imap_processing/mag/l1a/mag_l1a.py +317 -0
- imap_processing/mag/l1a/mag_l1a_data.py +1007 -0
- imap_processing/mag/l1b/__init__.py +0 -0
- imap_processing/mag/l1b/imap_calibration_mag_20240229_v01.cdf +0 -0
- imap_processing/mag/l1b/mag_l1b.py +125 -0
- imap_processing/mag/l1c/mag_l1c.py +57 -0
- imap_processing/mag/packet_definitions/MAG_SCI_COMBINED.xml +235 -0
- imap_processing/quality_flags.py +91 -0
- imap_processing/spice/__init__.py +1 -0
- imap_processing/spice/geometry.py +322 -0
- imap_processing/spice/kernels.py +459 -0
- imap_processing/spice/time.py +72 -0
- imap_processing/swapi/__init__.py +1 -0
- imap_processing/swapi/l1/__init__.py +0 -0
- imap_processing/swapi/l1/swapi_l1.py +685 -0
- imap_processing/swapi/l2/__init__.py +0 -0
- imap_processing/swapi/l2/swapi_l2.py +107 -0
- imap_processing/swapi/packet_definitions/__init__.py +0 -0
- imap_processing/swapi/packet_definitions/swapi_packet_definition.xml +708 -0
- imap_processing/swapi/swapi_utils.py +25 -0
- imap_processing/swe/__init__.py +1 -0
- imap_processing/swe/l1a/__init__.py +0 -0
- imap_processing/swe/l1a/swe_l1a.py +48 -0
- imap_processing/swe/l1a/swe_science.py +223 -0
- imap_processing/swe/l1b/engineering_unit_convert_table.csv +65 -0
- imap_processing/swe/l1b/swe_esa_lookup_table.csv +1441 -0
- imap_processing/swe/l1b/swe_l1b.py +49 -0
- imap_processing/swe/l1b/swe_l1b_science.py +557 -0
- imap_processing/swe/packet_definitions/__init__.py +0 -0
- imap_processing/swe/packet_definitions/swe_packet_definition.xml +303 -0
- imap_processing/swe/utils/__init__.py +0 -0
- imap_processing/swe/utils/swe_utils.py +9 -0
- imap_processing/tests/__init__.py +0 -0
- imap_processing/tests/ccsds/test_data/expected_output.xml +171 -0
- imap_processing/tests/ccsds/test_excel_to_xtce.py +285 -0
- imap_processing/tests/cdf/__init__.py +0 -0
- imap_processing/tests/cdf/imap_default_global_cdf_attrs.yaml +8 -0
- imap_processing/tests/cdf/shared/default_global_cdf_attrs_schema.yaml +246 -0
- imap_processing/tests/cdf/shared/default_variable_cdf_attrs_schema.yaml +466 -0
- imap_processing/tests/cdf/test_cdf_attribute_manager.py +353 -0
- imap_processing/tests/cdf/test_data/imap_default_global_test_cdf_attrs.yaml +7 -0
- imap_processing/tests/cdf/test_data/imap_instrument1_global_cdf_attrs.yaml +14 -0
- imap_processing/tests/cdf/test_data/imap_instrument1_level1_variable_attrs.yaml +23 -0
- imap_processing/tests/cdf/test_data/imap_instrument2_global_cdf_attrs.yaml +23 -0
- imap_processing/tests/cdf/test_data/imap_instrument2_level2_variable_attrs.yaml +30 -0
- imap_processing/tests/cdf/test_data/imap_test_global.yaml +26 -0
- imap_processing/tests/cdf/test_data/imap_test_variable.yaml +41 -0
- imap_processing/tests/cdf/test_imap_cdf_manager.py +62 -0
- imap_processing/tests/cdf/test_utils.py +109 -0
- imap_processing/tests/codice/__init__.py +0 -0
- imap_processing/tests/codice/conftest.py +56 -0
- imap_processing/tests/codice/data/eu_unit_lookup_table.csv +101 -0
- imap_processing/tests/codice/data/idle_export_eu.COD_NHK_20230822_122700 2.csv +100 -0
- imap_processing/tests/codice/data/idle_export_raw.COD_NHK_20230822_122700.csv +100 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-counters-aggregated_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-counters-singles_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-omni_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-pha_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-sectored_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hskp_20100101_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-counters-aggregated_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-counters-singles_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-angular_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-priority_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-species_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-pha_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-angular_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-priority_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-species_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-omni_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-sectored_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hskp_20100101_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-omni_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-sectored_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hskp_20100101_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/test_codice_l0.py +144 -0
- imap_processing/tests/codice/test_codice_l1a.py +187 -0
- imap_processing/tests/codice/test_codice_l1b.py +60 -0
- imap_processing/tests/codice/test_decompress.py +50 -0
- imap_processing/tests/conftest.py +372 -0
- imap_processing/tests/glows/direct_events_validation_data_l1a.csv +5704 -0
- imap_processing/tests/glows/glows_test_packet_20110921_v01.pkts +0 -0
- imap_processing/tests/glows/test_glows_decom.py +133 -0
- imap_processing/tests/glows/test_glows_l1a_cdf.py +85 -0
- imap_processing/tests/glows/test_glows_l1a_data.py +510 -0
- imap_processing/tests/glows/test_glows_l1b.py +348 -0
- imap_processing/tests/glows/test_glows_l1b_data.py +70 -0
- imap_processing/tests/hi/__init__.py +0 -0
- imap_processing/tests/hi/conftest.py +133 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_APP_NHK.bin +0 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_APP_NHK.csv +201 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_SCI_CNT.bin +0 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_SCI_DE.bin +0 -0
- imap_processing/tests/hi/test_data/l0/README.txt +54 -0
- imap_processing/tests/hi/test_decom.py +55 -0
- imap_processing/tests/hi/test_hi_l1b.py +31 -0
- imap_processing/tests/hi/test_hi_l1c.py +69 -0
- imap_processing/tests/hi/test_l1a.py +96 -0
- imap_processing/tests/hi/test_l1a_sci_de.py +72 -0
- imap_processing/tests/hi/test_utils.py +15 -0
- imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1251.pkts +0 -0
- imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1252.pkts +0 -0
- imap_processing/tests/hit/__init__.py +0 -0
- imap_processing/tests/hit/test_data/imap_hit_l0_hk_20100105_v001.pkts +0 -0
- imap_processing/tests/hit/test_data/sci_sample.ccsds +0 -0
- imap_processing/tests/hit/test_hit_decom.py +230 -0
- imap_processing/tests/hit/test_hit_l1a.py +224 -0
- imap_processing/tests/hit/test_hit_l1b.py +52 -0
- imap_processing/tests/hit/validation_data/hskp_sample_raw.csv +88 -0
- imap_processing/tests/ialirt/__init__.py +0 -0
- imap_processing/tests/ialirt/test_data/l0/IALiRT Raw Packet Telemetry.txt +33 -0
- imap_processing/tests/ialirt/test_data/l0/hit_ialirt_sample.ccsds +0 -0
- imap_processing/tests/ialirt/test_data/l0/hit_ialirt_sample.csv +1001 -0
- imap_processing/tests/ialirt/unit/__init__.py +0 -0
- imap_processing/tests/ialirt/unit/test_decom_ialirt.py +94 -0
- imap_processing/tests/ialirt/unit/test_process_hit.py +226 -0
- imap_processing/tests/idex/__init__.py +0 -0
- imap_processing/tests/idex/conftest.py +22 -0
- imap_processing/tests/idex/imap_idex_l0_raw_20230725_v001.pkts +0 -0
- imap_processing/tests/idex/impact_14_tof_high_data.txt +8189 -0
- imap_processing/tests/idex/test_idex_l0.py +45 -0
- imap_processing/tests/idex/test_idex_l1a.py +91 -0
- imap_processing/tests/lo/__init__.py +0 -0
- imap_processing/tests/lo/test_binary_string.py +21 -0
- imap_processing/tests/lo/test_bit_decompression.py +39 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l0_raw_20240627_v001.pkts +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1b_de_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_lo_l1a.py +66 -0
- imap_processing/tests/lo/test_lo_l1b.py +74 -0
- imap_processing/tests/lo/test_lo_l1c.py +66 -0
- imap_processing/tests/lo/test_science_counts.py +41 -0
- imap_processing/tests/lo/test_science_direct_events.py +209 -0
- imap_processing/tests/lo/test_star_sensor.py +35 -0
- imap_processing/tests/mag/imap_mag_l1a_burst-magi_20231025_v001.cdf +0 -0
- imap_processing/tests/mag/mag_l0_test_data.pkts +0 -0
- imap_processing/tests/mag/mag_l0_test_output.csv +37 -0
- imap_processing/tests/mag/mag_l1_test_data.pkts +0 -0
- imap_processing/tests/mag/mag_l1a_test_output.csv +97 -0
- imap_processing/tests/mag/test_mag_decom.py +117 -0
- imap_processing/tests/mag/test_mag_l1a.py +856 -0
- imap_processing/tests/mag/test_mag_l1b.py +77 -0
- imap_processing/tests/mag/test_mag_l1c.py +40 -0
- imap_processing/tests/spice/__init__.py +0 -0
- imap_processing/tests/spice/test_data/imap_ena_sim_metakernel.template +4 -0
- imap_processing/tests/spice/test_data/imap_science_0001.tf +171 -0
- imap_processing/tests/spice/test_data/imap_sclk_0000.tsc +156 -0
- imap_processing/tests/spice/test_data/imap_sim_ck_2hr_2secsampling_with_nutation.bc +0 -0
- imap_processing/tests/spice/test_data/imap_simple_metakernel.template +3 -0
- imap_processing/tests/spice/test_data/imap_spk_demo.bsp +0 -0
- imap_processing/tests/spice/test_data/imap_wkcp.tf +1806 -0
- imap_processing/tests/spice/test_data/naif0012.tls +150 -0
- imap_processing/tests/spice/test_data/sim_1yr_imap_attitude.bc +0 -0
- imap_processing/tests/spice/test_data/sim_1yr_imap_pointing_frame.bc +0 -0
- imap_processing/tests/spice/test_geometry.py +214 -0
- imap_processing/tests/spice/test_kernels.py +272 -0
- imap_processing/tests/spice/test_time.py +35 -0
- imap_processing/tests/swapi/__init__.py +0 -0
- imap_processing/tests/swapi/conftest.py +16 -0
- imap_processing/tests/swapi/l0_data/__init__.py +0 -0
- imap_processing/tests/swapi/l0_data/imap_swapi_l0_raw_20231012_v001.pkts +0 -0
- imap_processing/tests/swapi/l0_validation_data/__init__.py +0 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_AUT_20231012_125245.csv +124 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_HK_20231012_125245.csv +98 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_MG_20231012_125245.csv +9 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_SCI_20231012_125245.csv +72 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_AUT_20231012_125245.csv +124 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_HK_20231012_125245.csv +98 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_MG_20231012_125245.csv +9 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_SCI_20231012_125245.csv +72 -0
- imap_processing/tests/swapi/test_swapi_decom.py +135 -0
- imap_processing/tests/swapi/test_swapi_l1.py +354 -0
- imap_processing/tests/swapi/test_swapi_l2.py +21 -0
- imap_processing/tests/swe/__init__.py +0 -0
- imap_processing/tests/swe/conftest.py +35 -0
- imap_processing/tests/swe/decompressed/20230927173238_4th_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/decompressed/20230927173253_1st_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/decompressed/20230927173308_2nd_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/decompressed/20230927173323_3rd_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/l0_data/2024051010_SWE_SCIENCE_packet.bin +0 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_SCIENCE_20240510_092742.csv +544 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_raw.SWE_SCIENCE_20240510_092742.csv +363 -0
- imap_processing/tests/swe/test_swe_l1a.py +12 -0
- imap_processing/tests/swe/test_swe_l1a_science.py +129 -0
- imap_processing/tests/swe/test_swe_l1b.py +61 -0
- imap_processing/tests/swe/test_swe_l1b_science.py +65 -0
- imap_processing/tests/test_cli.py +229 -0
- imap_processing/tests/test_decom.py +66 -0
- imap_processing/tests/test_quality_flags.py +71 -0
- imap_processing/tests/test_utils.py +107 -0
- imap_processing/tests/ultra/__init__.py +0 -0
- imap_processing/tests/ultra/test_data/l0/FM45_40P_Phi28p5_BeamCal_LinearScan_phi28.50_theta-0.00_20240207T102740.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/FM45_7P_Phi0.0_BeamCal_LinearScan_phi0.04_theta-0.01_20230821T121304.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_auxdata_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +24 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_enaphxtofhangimg_FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.csv +105 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultraimgrates_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +24 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3314 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimgevent_FM45_7P_Phi00_BeamCal_LinearScan_phi004_theta-001_20230821T121304.csv +702 -0
- imap_processing/tests/ultra/unit/__init__.py +0 -0
- imap_processing/tests/ultra/unit/conftest.py +210 -0
- imap_processing/tests/ultra/unit/test_decom_apid_880.py +98 -0
- imap_processing/tests/ultra/unit/test_decom_apid_881.py +50 -0
- imap_processing/tests/ultra/unit/test_decom_apid_883.py +44 -0
- imap_processing/tests/ultra/unit/test_decom_apid_896.py +104 -0
- imap_processing/tests/ultra/unit/test_lookup_utils.py +68 -0
- imap_processing/tests/ultra/unit/test_ultra_l1a.py +338 -0
- imap_processing/tests/ultra/unit/test_ultra_l1b.py +122 -0
- imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +57 -0
- imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +342 -0
- imap_processing/tests/ultra/unit/test_ultra_l1c.py +104 -0
- imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +35 -0
- imap_processing/ultra/__init__.py +1 -0
- imap_processing/ultra/constants.py +60 -0
- imap_processing/ultra/l0/__init__.py +0 -0
- imap_processing/ultra/l0/decom_tools.py +281 -0
- imap_processing/ultra/l0/decom_ultra.py +278 -0
- imap_processing/ultra/l0/ultra_utils.py +326 -0
- imap_processing/ultra/l1a/__init__.py +0 -0
- imap_processing/ultra/l1a/ultra_l1a.py +319 -0
- imap_processing/ultra/l1b/badtimes.py +26 -0
- imap_processing/ultra/l1b/cullingmask.py +26 -0
- imap_processing/ultra/l1b/de.py +59 -0
- imap_processing/ultra/l1b/extendedspin.py +45 -0
- imap_processing/ultra/l1b/lookup_utils.py +165 -0
- imap_processing/ultra/l1b/ultra_l1b.py +65 -0
- imap_processing/ultra/l1b/ultra_l1b_annotated.py +54 -0
- imap_processing/ultra/l1b/ultra_l1b_extended.py +764 -0
- imap_processing/ultra/l1c/histogram.py +36 -0
- imap_processing/ultra/l1c/pset.py +36 -0
- imap_processing/ultra/l1c/ultra_l1c.py +52 -0
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +54 -0
- imap_processing/ultra/lookup_tables/EgyNorm.mem.csv +32769 -0
- imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -0
- imap_processing/ultra/lookup_tables/ultra45_back-pos-luts.csv +4097 -0
- imap_processing/ultra/lookup_tables/ultra45_tdc_norm.csv +2050 -0
- imap_processing/ultra/lookup_tables/ultra90_back-pos-luts.csv +4097 -0
- imap_processing/ultra/lookup_tables/ultra90_tdc_norm.csv +2050 -0
- imap_processing/ultra/lookup_tables/yadjust.csv +257 -0
- imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +547 -0
- imap_processing/ultra/packet_definitions/__init__.py +0 -0
- imap_processing/ultra/utils/__init__.py +0 -0
- imap_processing/ultra/utils/ultra_l1_utils.py +50 -0
- imap_processing/utils.py +413 -0
- imap_processing-0.6.0.dist-info/LICENSE +21 -0
- imap_processing-0.6.0.dist-info/METADATA +107 -0
- imap_processing-0.6.0.dist-info/RECORD +398 -0
- imap_processing-0.6.0.dist-info/WHEEL +4 -0
- imap_processing-0.6.0.dist-info/entry_points.txt +4 -0
|
@@ -0,0 +1,426 @@
|
|
|
1
|
+
int_fillval: &int_fillval -9223372036854775808
|
|
2
|
+
min_epoch: &min_epoch -315575942816000000
|
|
3
|
+
max_epoch: &max_epoch 3155630469184000000
|
|
4
|
+
|
|
5
|
+
data_min: &data_min 0
|
|
6
|
+
data_max: &data_max 4096
|
|
7
|
+
|
|
8
|
+
sample_rate_min: &sample_rate_min -130
|
|
9
|
+
sample_rate_max: &sample_rate_max 130
|
|
10
|
+
|
|
11
|
+
int_maxval: &int_maxval 9223372036854775807
|
|
12
|
+
|
|
13
|
+
l1_data_base: &l1_data_base
|
|
14
|
+
VALIDMIN: *data_min
|
|
15
|
+
VALIDMAX: *data_max
|
|
16
|
+
DISPLAY_TYPE: spectrogram
|
|
17
|
+
DEPEND_0: epoch
|
|
18
|
+
FORMAT: ""
|
|
19
|
+
UNITS: dN
|
|
20
|
+
VAR_TYPE: data
|
|
21
|
+
# VAR_PURPOSE: PRIMARY
|
|
22
|
+
CATDESC: ""
|
|
23
|
+
FIELDNAM: ""
|
|
24
|
+
FILLVAL: *int_fillval
|
|
25
|
+
LABLAXIS: ""
|
|
26
|
+
|
|
27
|
+
l1_tof_base: &l1_tof_base
|
|
28
|
+
<<: *l1_data_base
|
|
29
|
+
DEPEND_1: time_high_sr
|
|
30
|
+
|
|
31
|
+
l1_target_base: &l1_target_base
|
|
32
|
+
<<: *l1_data_base
|
|
33
|
+
DEPEND_1: time_low_sr
|
|
34
|
+
|
|
35
|
+
sample_rate_base: &sample_rate_base
|
|
36
|
+
DISPLAY_TYPE: no_plot
|
|
37
|
+
CATDESC: ""
|
|
38
|
+
FIELDNAM: ""
|
|
39
|
+
FILLVAL: -1.0e+31
|
|
40
|
+
VALIDMIN: *sample_rate_min
|
|
41
|
+
VALIDMAX: *sample_rate_max
|
|
42
|
+
DEPEND_0: epoch
|
|
43
|
+
FORMAT: F64.5
|
|
44
|
+
LABLAXIS: Time
|
|
45
|
+
UNITS: microseconds
|
|
46
|
+
VAR_TYPE: support_data # Not in attrs file
|
|
47
|
+
VAR_NOTES: The number of microseconds since the event.
|
|
48
|
+
0 is the start of data collection, negative
|
|
49
|
+
numbers represent data collected prior to a dust event
|
|
50
|
+
|
|
51
|
+
trigger_base: &trigger_base
|
|
52
|
+
VALIDMIN: 0
|
|
53
|
+
VALIDMAX: *int_maxval
|
|
54
|
+
DISPLAY_0: epoch
|
|
55
|
+
DISPLAY_TYPE: no_plot
|
|
56
|
+
CATDESC: ""
|
|
57
|
+
FIELDNAM: ""
|
|
58
|
+
VAR_TYPE: support_data
|
|
59
|
+
FILLVAL: *int_fillval
|
|
60
|
+
LABLAXIS: ""
|
|
61
|
+
FORMAT: I12
|
|
62
|
+
UNITS: ""
|
|
63
|
+
|
|
64
|
+
# TODO: All of these have var_notes in idex_cef_attrs. Should I add these?
|
|
65
|
+
low_sr_attrs:
|
|
66
|
+
<<: *sample_rate_base
|
|
67
|
+
CATDESC: Low sample rate time steps for a dust event.
|
|
68
|
+
FIELDNAM: Low Sample Rate Time
|
|
69
|
+
FILLVAL: *int_fillval
|
|
70
|
+
VAR_NOTES: The low sample rate in microseconds. Steps are approximately 1/4.025
|
|
71
|
+
microseconds in duration. Used by the Ion_Grid, Target_Low, and
|
|
72
|
+
Target_High variables.
|
|
73
|
+
|
|
74
|
+
high_sr_attrs:
|
|
75
|
+
<<: *sample_rate_base
|
|
76
|
+
CATDESC: High sample rate time steps for a dust event.
|
|
77
|
+
FIELDNAM: High Sample Rate Time
|
|
78
|
+
VAR_NOTES: The high sample rate in microseconds. Steps are approximately 1/260
|
|
79
|
+
microseconds in duration. Used by the TOF_High, TOF_Mid, and
|
|
80
|
+
TOF_Low variables.
|
|
81
|
+
|
|
82
|
+
tof_high_attrs:
|
|
83
|
+
<<: *l1_tof_base
|
|
84
|
+
CATDESC: Time of flight waveform on the high-gain channel
|
|
85
|
+
FIELDNAM: High Gain Time of Flight
|
|
86
|
+
LABLAXIS: TOF High Ampl.
|
|
87
|
+
VAR_NOTES: High gain channel of the time-of-flight signal.
|
|
88
|
+
Sampled at 260 Megasamples per second, with a 10-bit resolution.
|
|
89
|
+
Data is used to quantify dust composition.
|
|
90
|
+
|
|
91
|
+
tof_mid_attrs:
|
|
92
|
+
<<: *l1_tof_base
|
|
93
|
+
CATDESC: Time of flight waveform on the mid-gain channel
|
|
94
|
+
FIELDNAM: Mid Gain Time of Flight
|
|
95
|
+
LABLAXIS: TOF Mid Ampl.
|
|
96
|
+
VAR_NOTES: Mid gain channel of the time-of-flight signal.
|
|
97
|
+
Sampled at 260 Megasamples per second, with a 10-bit resolution.
|
|
98
|
+
Data is used to quantify dust composition.
|
|
99
|
+
|
|
100
|
+
tof_low_attrs:
|
|
101
|
+
<<: *l1_tof_base
|
|
102
|
+
FILLVAL: *int_fillval
|
|
103
|
+
CATDESC: Time of flight waveform on the low-gain channel
|
|
104
|
+
FIELDNAM: Low Gain Time of Flight
|
|
105
|
+
LABLAXIS: TOF Low Ampl.
|
|
106
|
+
VAR_NOTES: Low gain channel of the time-of-flight signal.
|
|
107
|
+
Sampled at 260 Megasamples per second, with a 10-bit resolution.
|
|
108
|
+
Data is used to quantify dust composition.
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
target_low_attrs:
|
|
112
|
+
<<: *l1_target_base
|
|
113
|
+
CATDESC: Target low charge sensitive amplifier waveform
|
|
114
|
+
FIELDNAM: Low Target Signal
|
|
115
|
+
LABLAXIS: Low Target Ampl.
|
|
116
|
+
VAR_NOTES: Low gain channel of IDEX's target signal.
|
|
117
|
+
Sampled at 3.75 Msps with 12-bit resolution.
|
|
118
|
+
Data is used to quantify dust charge.
|
|
119
|
+
|
|
120
|
+
target_high_attrs:
|
|
121
|
+
<<: *l1_target_base
|
|
122
|
+
CATDESC: Ion grid charge sensitive amplifier waveform
|
|
123
|
+
FIELDNAM: High Target Signal
|
|
124
|
+
LABLAXIS: High Target Ampl.
|
|
125
|
+
VAR_NOTES: High gain channel of IDEX's target signal.
|
|
126
|
+
Sampled at 3.75 Msps with 12-bit resolution.
|
|
127
|
+
Data is used to quantify dust charge.
|
|
128
|
+
|
|
129
|
+
ion_grid_attrs:
|
|
130
|
+
<<: *l1_target_base
|
|
131
|
+
CATDESC: Ion grid charge sensitive amplifier waveform data
|
|
132
|
+
FIELDNAM: Ion Grid Signal
|
|
133
|
+
LABLAXIS: Ion Grid Ampl.
|
|
134
|
+
VAR_NOTES: This is the ion grid signal from IDEX.
|
|
135
|
+
Sampled at 3.75 Msps with 12-bit resolution.
|
|
136
|
+
Data is used to quantify dust charge.
|
|
137
|
+
|
|
138
|
+
# Trigger Stuff
|
|
139
|
+
|
|
140
|
+
event_number:
|
|
141
|
+
<<: *trigger_base
|
|
142
|
+
CATDESC: The unique number assigned to the impact by the FPGA
|
|
143
|
+
FIELDNAM: Event Number
|
|
144
|
+
VALIDMAX: 65535
|
|
145
|
+
LABLAXIS: Event Number
|
|
146
|
+
UNITS: ""
|
|
147
|
+
|
|
148
|
+
tof_high_trigger_level:
|
|
149
|
+
<<: *trigger_base
|
|
150
|
+
VALIDMAX: 1023
|
|
151
|
+
FIELDNAM: TOF High Trigger Level
|
|
152
|
+
CATDESC: Trigger level for the TOF High Channel
|
|
153
|
+
LABLAXIS: Level
|
|
154
|
+
UNITS: ""
|
|
155
|
+
|
|
156
|
+
tof_high_trigger_num_max_1_2:
|
|
157
|
+
<<: *trigger_base
|
|
158
|
+
VALIDMAX: 2047
|
|
159
|
+
FIELDNAM: TOF High Double Pulse Max Samples
|
|
160
|
+
CATDESC: Maximum number of samples between pulse 1 and 2 for TOF. High double pulse triggering.
|
|
161
|
+
LABLAXIS: Samples Number
|
|
162
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
163
|
+
|
|
164
|
+
tof_high_trigger_num_min_1_2:
|
|
165
|
+
<<: *trigger_base
|
|
166
|
+
VALIDMAX: 2047
|
|
167
|
+
FIELDNAM: TOF High Double Pulse Min Samples
|
|
168
|
+
CATDESC: Minimum number of samples between pulse 1 and 2 for TOF High. Double pulse triggering.
|
|
169
|
+
LABLAXIS: Samples Number
|
|
170
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
171
|
+
|
|
172
|
+
tof_high_trigger_num_min_1:
|
|
173
|
+
<<: *trigger_base
|
|
174
|
+
VALIDMAX: 255
|
|
175
|
+
FIELDNAM: TOF High Pulse 1 Min Samples
|
|
176
|
+
CATDESC: Minimum number of samples for pulse 1 for TOF High single and double pulse triggering.
|
|
177
|
+
LABLAXIS: Samples Number
|
|
178
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
179
|
+
|
|
180
|
+
tof_high_trigger_num_max_1:
|
|
181
|
+
<<: *trigger_base
|
|
182
|
+
VALIDMAX: 255
|
|
183
|
+
FIELDNAM: TOF High Pulse 1 Max Samples
|
|
184
|
+
CATDESC: Maximum number of samples for pulse 1 for TOF High single and double pulse triggering.
|
|
185
|
+
LABLAXIS: Samples Number
|
|
186
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
187
|
+
|
|
188
|
+
tof_high_trigger_num_min_2:
|
|
189
|
+
<<: *trigger_base
|
|
190
|
+
VALIDMAX: 255
|
|
191
|
+
FIELDNAM: TOF High Pulse 2 Min Samples
|
|
192
|
+
CATDESC: Minimum number of samples for pulse 2 for TOF High single and double pulse triggering.
|
|
193
|
+
LABLAXIS: Samples Number
|
|
194
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
195
|
+
|
|
196
|
+
tof_high_trigger_num_max_2:
|
|
197
|
+
<<: *trigger_base
|
|
198
|
+
VALIDMAX: 255
|
|
199
|
+
FIELDNAM: TOF High Pulse 2 Max Samples
|
|
200
|
+
CATDESC: Maximum number of samples for pulse 2 for TOF High single and double pulse triggering.
|
|
201
|
+
LABLAXIS: Samples Number
|
|
202
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
203
|
+
|
|
204
|
+
tof_low_trigger_level:
|
|
205
|
+
<<: *trigger_base
|
|
206
|
+
VALIDMAX: 1023
|
|
207
|
+
FIELDNAM: TOF Low Trigger Level
|
|
208
|
+
CATDESC: Trigger level for the TOF Low Channel
|
|
209
|
+
LABLAXIS: Level
|
|
210
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
211
|
+
|
|
212
|
+
tof_low_trigger_num_max_1_2:
|
|
213
|
+
<<: *trigger_base
|
|
214
|
+
VALIDMAX: 2047
|
|
215
|
+
FIELDNAM: TOF Low Double Pulse Max Samples
|
|
216
|
+
CATDESC: Maximum number of samples between pulse 1 and 2 for TOF Low double pulse triggering.
|
|
217
|
+
LABLAXIS: Samples Number
|
|
218
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
219
|
+
|
|
220
|
+
tof_low_trigger_num_min_1_2:
|
|
221
|
+
<<: *trigger_base
|
|
222
|
+
VALIDMAX: 2047
|
|
223
|
+
FIELDNAM: TOF Low Double Pulse Min Samples
|
|
224
|
+
CATDESC: Minimum number of samples between pulse 1 and 2 for TOF Low double pulse triggering.
|
|
225
|
+
LABLAXIS: Samples Number
|
|
226
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
227
|
+
|
|
228
|
+
tof_low_trigger_num_min_1:
|
|
229
|
+
<<: *trigger_base
|
|
230
|
+
VALIDMAX: 255
|
|
231
|
+
FIELDNAM: TOF Low Pulse 1 Min Samples
|
|
232
|
+
CATDESC: Minimum number of samples for pulse 1 for TOF Low single and double pulse triggering.
|
|
233
|
+
LABLAXIS: Samples Number
|
|
234
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
235
|
+
|
|
236
|
+
tof_low_trigger_num_max_1:
|
|
237
|
+
<<: *trigger_base
|
|
238
|
+
VALIDMAX: 255
|
|
239
|
+
FIELDNAM: TOF Low Pulse 1 Max Samples
|
|
240
|
+
CATDESC: Maximum number of samples for pulse 1 for TOF Low single and double pulse triggering.
|
|
241
|
+
LABLAXIS: Samples Number
|
|
242
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
243
|
+
|
|
244
|
+
tof_low_trigger_num_min_2 :
|
|
245
|
+
<<: *trigger_base
|
|
246
|
+
VALIDMAX: 255
|
|
247
|
+
FIELDNAM: TOF Low Pulse 2 Min Samples
|
|
248
|
+
CATDESC: Minimum number of samples for pulse 2 for TOF Low single and double pulse triggering.
|
|
249
|
+
LABLAXIS: Samples Number
|
|
250
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
251
|
+
|
|
252
|
+
tof_low_trigger_num_max_2:
|
|
253
|
+
<<: *trigger_base
|
|
254
|
+
VALIDMAX: 65535
|
|
255
|
+
FIELDNAM: TOF Low Pulse 2 Max Samples
|
|
256
|
+
CATDESC: Maximum number of samples for pulse 2 for TOF Low single and double pulse triggering.
|
|
257
|
+
LABLAXIS: Samples Number
|
|
258
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
259
|
+
|
|
260
|
+
tof_mid_trigger_level:
|
|
261
|
+
<<: *trigger_base
|
|
262
|
+
VALIDMAX: 1023
|
|
263
|
+
FIELDNAM: TOF Mid Trigger Level
|
|
264
|
+
CATDESC: Trigger level for the TOF Mid Channel
|
|
265
|
+
LABLAXIS: Level
|
|
266
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
267
|
+
|
|
268
|
+
tof_mid_trigger_num_max_1_2:
|
|
269
|
+
<<: *trigger_base
|
|
270
|
+
VALIDMAX: 2047
|
|
271
|
+
FIELDNAM: TOF Mid Double Pulse Max Samples
|
|
272
|
+
CATDESC: Maximum number of samples between pulse 1 and 2 for TOF Mid double pulse triggering.
|
|
273
|
+
LABLAXIS: Samples Number
|
|
274
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
275
|
+
|
|
276
|
+
tof_mid_trigger_num_min_1_2:
|
|
277
|
+
<<: *trigger_base
|
|
278
|
+
VALIDMAX: 2047
|
|
279
|
+
FIELDNAM: TOF Mid Double Pulse Min Samples
|
|
280
|
+
CATDESC: Minimum number of samples between pulse 1 and 2 for TOF Mid double pulse triggering.
|
|
281
|
+
LABLAXIS: Samples Number
|
|
282
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
283
|
+
|
|
284
|
+
tof_mid_trigger_num_min_1:
|
|
285
|
+
<<: *trigger_base
|
|
286
|
+
VALIDMAX: 255
|
|
287
|
+
FIELDNAM: TOF Mid Pulse 1 Min Samples
|
|
288
|
+
CATDESC: Minimum number of samples for pulse 1 for TOF Mid single and double pulse triggering.
|
|
289
|
+
LABLAXIS: Samples Number
|
|
290
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
291
|
+
|
|
292
|
+
tof_mid_trigger_num_max_1:
|
|
293
|
+
<<: *trigger_base
|
|
294
|
+
VALIDMAX: 255
|
|
295
|
+
FIELDNAM: TOF Mid Pulse 1 Max Samples
|
|
296
|
+
CATDESC: Maximum number of samples for pulse 1 for TOF Mid single and double pulse triggering.
|
|
297
|
+
LABLAXIS: Samples Number
|
|
298
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
299
|
+
|
|
300
|
+
tof_mid_trigger_num_min_2:
|
|
301
|
+
<<: *trigger_base
|
|
302
|
+
VALIDMAX: 255
|
|
303
|
+
FIELDNAM: TOF Mid Pulse 2 Min Samples
|
|
304
|
+
CATDESC: Minimum number of samples for pulse 2 for TOF Mid single and double pulse triggering.
|
|
305
|
+
LABLAXIS: Samples Number
|
|
306
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
307
|
+
|
|
308
|
+
tof_mid_trigger_num_max_2:
|
|
309
|
+
<<: *trigger_base
|
|
310
|
+
VALIDMAX: 255
|
|
311
|
+
FIELDNAM: TOF Mid Pulse 2 Max Samples
|
|
312
|
+
CATDESC: Maximum number of samples for pulse 2 for TOF Mid single and double pulse triggering.
|
|
313
|
+
LABLAXIS: Samples Number
|
|
314
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
315
|
+
|
|
316
|
+
low_sample_coincidence_mode_blocks:
|
|
317
|
+
<<: *trigger_base
|
|
318
|
+
VALIDMAX: 7
|
|
319
|
+
FIELDNAM: LS Coincidence Mode Blocks
|
|
320
|
+
CATDESC: Number of blocks coincidence window is enabled after low sample trigger.
|
|
321
|
+
LABLAXIS: Blocks Number
|
|
322
|
+
UNITS: "" # "blocks" in idex_packet_parser...?
|
|
323
|
+
|
|
324
|
+
low_sample_trigger_polarity:
|
|
325
|
+
<<: *trigger_base
|
|
326
|
+
VALIDMAX: 1
|
|
327
|
+
FIELDNAM: LS Trigger Polarity
|
|
328
|
+
CATDESC: The trigger polarity for low sample (0 = normal, 1 = inverted)
|
|
329
|
+
LABLAXIS: Polarity
|
|
330
|
+
UNITS: ""
|
|
331
|
+
|
|
332
|
+
low_sample_trigger_level:
|
|
333
|
+
<<: *trigger_base
|
|
334
|
+
VALIDMAX: 4095
|
|
335
|
+
FIELDNAM: LS Trigger Level
|
|
336
|
+
CATDESC: Trigger level for the low sample
|
|
337
|
+
LABLAXIS: Level
|
|
338
|
+
UNITS: ""
|
|
339
|
+
|
|
340
|
+
low_sample_trigger_num_min:
|
|
341
|
+
<<: *trigger_base
|
|
342
|
+
VALIDMAX: 255
|
|
343
|
+
FIELDNAM: LS Trigger Min Num Samples
|
|
344
|
+
CATDESC: The minimum number of samples above/below the trigger level for triggering the low sample.
|
|
345
|
+
LABLAXIS: Samples Number
|
|
346
|
+
UNITS: "" # "samples" in idex_packet_parser...?
|
|
347
|
+
|
|
348
|
+
low_sample_trigger_mode:
|
|
349
|
+
<<: *trigger_base
|
|
350
|
+
VALIDMAX: 1
|
|
351
|
+
FIELDNAM: LS Trigger Mode Enabled
|
|
352
|
+
CATDESC: Low sample trigger mode (0=disabled, 1=enabled)
|
|
353
|
+
LABLAXIS: Mode
|
|
354
|
+
UNITS: ""
|
|
355
|
+
|
|
356
|
+
tof_low_trigger_mode:
|
|
357
|
+
<<: *trigger_base
|
|
358
|
+
VALIDMAX: 1
|
|
359
|
+
FIELDNAM: TOF Low Trigger Mode Enabled
|
|
360
|
+
CATDESC: TOF Low trigger mode (0=disabled, 1=enabled)
|
|
361
|
+
LABLAXIS: Mode
|
|
362
|
+
UNITS: ""
|
|
363
|
+
|
|
364
|
+
tof_mid_trigger_mode:
|
|
365
|
+
<<: *trigger_base
|
|
366
|
+
VALIDMAX: 1
|
|
367
|
+
FIELDNAM: TOF Mid Trigger Mode Enabled
|
|
368
|
+
CATDESC: TOF Mid trigger mode (0=disabled, 1=enabled)
|
|
369
|
+
LABLAXIS: Mode
|
|
370
|
+
UNITS: ""
|
|
371
|
+
|
|
372
|
+
tof_high_trigger_mode:
|
|
373
|
+
<<: *trigger_base
|
|
374
|
+
VALIDMAX: 3
|
|
375
|
+
FIELDNAM: TOF High Trigger Mode Enabled
|
|
376
|
+
CATDESC: TOF High trigger mode (0=disabled, 1=threshold mode, 2=single pulse mode, 3=double pulse mode).
|
|
377
|
+
LABLAXIS: Mode
|
|
378
|
+
UNITS: ""
|
|
379
|
+
|
|
380
|
+
detector_voltage:
|
|
381
|
+
<<: *trigger_base
|
|
382
|
+
VALIDMAX: 4095
|
|
383
|
+
FIELDNAM: Detector Voltage
|
|
384
|
+
CATDESC: Last measurement in raw dN for processor board signal - "Detector Voltage"
|
|
385
|
+
LABLAXIS: Voltage
|
|
386
|
+
UNITS: dN
|
|
387
|
+
|
|
388
|
+
sensor_voltage:
|
|
389
|
+
<<: *trigger_base
|
|
390
|
+
VALIDMAX: 4095
|
|
391
|
+
FIELDNAM: Sensor Voltage
|
|
392
|
+
CATDESC: Last measurement in raw dN for processor board signal - "Sensor Voltage "
|
|
393
|
+
LABLAXIS: Voltage
|
|
394
|
+
UNITS: dN
|
|
395
|
+
|
|
396
|
+
target_voltage:
|
|
397
|
+
<<: *trigger_base
|
|
398
|
+
VALIDMAX: 4095
|
|
399
|
+
FIELDNAM: Target Voltage
|
|
400
|
+
CATDESC: Last measurement in raw dN for processor board signal - "Target Voltage"
|
|
401
|
+
LABLAXIS: Voltage
|
|
402
|
+
UNITS: dN
|
|
403
|
+
|
|
404
|
+
reflectron_voltage:
|
|
405
|
+
<<: *trigger_base
|
|
406
|
+
VALIDMAX: 4095
|
|
407
|
+
FIELDNAM: Reflectron Voltage
|
|
408
|
+
CATDESC: Last measurement in raw dN for processor board signal - "Reflectron Voltage"
|
|
409
|
+
LABLAXIS: Voltage
|
|
410
|
+
UNITS: dN
|
|
411
|
+
|
|
412
|
+
rejection_voltage:
|
|
413
|
+
<<: *trigger_base
|
|
414
|
+
VALIDMAX: 4095
|
|
415
|
+
FIELDNAM: Rejection Voltage
|
|
416
|
+
CATDESC: Last measurement in raw dN for processor board signal - "Rejection Voltage"
|
|
417
|
+
LABLAXIS: Voltage
|
|
418
|
+
UNITS: dN
|
|
419
|
+
|
|
420
|
+
detector_current:
|
|
421
|
+
<<: *trigger_base
|
|
422
|
+
VALIDMAX: 4095
|
|
423
|
+
FIELDNAM: Detector Current
|
|
424
|
+
CATDESC: Last measurement in raw dN for processor board signal - "Detector Current "
|
|
425
|
+
LABLAXIS: Current
|
|
426
|
+
UNITS: dN
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
instrument_base: &instrument_base
|
|
2
|
+
Descriptor:
|
|
3
|
+
Lo>IMAP Low-Energy (IMAP-Lo) Energetic Neutral Atom Imager
|
|
4
|
+
TEXT: >
|
|
5
|
+
IMAP-Lo is a single-pixel neutral atom imager that delivers energy and position measurements of low-energy Interstellar Neutral (ISN) atoms tracked over the ecliptic longitude >180deg and global maps of energetic neutral atoms (ENAs). Mounted on a pivot platform, IMAP-Lo tracks the flow of these ions through the local interstellar medium (LISM) to precisely determine the species-dependent flow speed, temperature, and direction of the LISM that surrounds, interacts with, and determines the outer boundaries of the global heliosphere. IMAP-Lo uses the pivoting field of view (FOV) to view variable angles out to 90deg from the spin axis. This assists IMAP-Lo to pinpoint the intersection between the ISN inflow speed and longitude to uniquely determine the LISM flow vector. Data from IMAP-Lo will help us be able to see from inside the heliosphere what it is like just outside the solar system, our local neighborhood.
|
|
6
|
+
Instrument_type: "Particles (space)"
|
|
7
|
+
|
|
8
|
+
imap_lo_l1a_de:
|
|
9
|
+
<<: *instrument_base
|
|
10
|
+
Data_level: 1A
|
|
11
|
+
Data_type: L1A_de>Level-1A Science Direct Events
|
|
12
|
+
Logical_source: imap_lo_l1a_de
|
|
13
|
+
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1A Data
|
|
14
|
+
|
|
15
|
+
imap_lo_l1a_histogram:
|
|
16
|
+
<<: *instrument_base
|
|
17
|
+
Data_level: 1A
|
|
18
|
+
Data_type: L1A_histogram>Level-1A Science Counts
|
|
19
|
+
Logical_source: imap_lo_l1a_histogram
|
|
20
|
+
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1A Data
|
|
21
|
+
|
|
22
|
+
imap_lo_l1a_star:
|
|
23
|
+
<<: *instrument_base
|
|
24
|
+
Data_level: 1A
|
|
25
|
+
Data_type: L1A_star>Level-1A Star Sensor
|
|
26
|
+
Logical_source: imap_lo_l1a_star
|
|
27
|
+
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1A Data
|
|
28
|
+
|
|
29
|
+
imap_lo_l1a_spin:
|
|
30
|
+
<<: *instrument_base
|
|
31
|
+
Data_level: 1A
|
|
32
|
+
Data_type: L1A_star>Level-1A Spin
|
|
33
|
+
Logical_source: imap_lo_l1a_spin
|
|
34
|
+
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1A Data
|
|
35
|
+
|
|
36
|
+
imap_lo_l1b_badtimes:
|
|
37
|
+
<<: *instrument_base
|
|
38
|
+
Data_level: 1B
|
|
39
|
+
Data_type: L1B_badtimes>Level-1B Badtimes
|
|
40
|
+
Logical_source: imap_lo_l1b_badtimes
|
|
41
|
+
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
|
|
42
|
+
|
|
43
|
+
imap_lo_l1b_de:
|
|
44
|
+
<<: *instrument_base
|
|
45
|
+
Data_level: 1B
|
|
46
|
+
Data_type: L1B_de>Level-1B Annotated Direct Events
|
|
47
|
+
Logical_source: imap_lo_l1b_de
|
|
48
|
+
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
|
|
49
|
+
|
|
50
|
+
imap_lo_l1b_monitorrates:
|
|
51
|
+
<<: *instrument_base
|
|
52
|
+
Data_level: 1B
|
|
53
|
+
Data_type: L1B_monitorrates>Level-1B Monitor Rates
|
|
54
|
+
Logical_source: imap_lo_l1b_monitorrates
|
|
55
|
+
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
|
|
56
|
+
|
|
57
|
+
imap_lo_l1b_histogramrates:
|
|
58
|
+
<<: *instrument_base
|
|
59
|
+
Data_level: 1B
|
|
60
|
+
Data_type: L1B_histogramrates>Level-1B Histogram Rates
|
|
61
|
+
Logical_source: imap_lo_l1b_histogramrrates
|
|
62
|
+
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
|
|
63
|
+
|
|
64
|
+
imap_lo_l1b_derates:
|
|
65
|
+
<<: *instrument_base
|
|
66
|
+
Data_level: 1B
|
|
67
|
+
Data_type: L1B_derates>Level-1B Direct Event Rates
|
|
68
|
+
Logical_source: imap_lo_l1b_derates
|
|
69
|
+
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
|
|
70
|
+
|
|
71
|
+
imap_lo_l1b_prostar:
|
|
72
|
+
<<: *instrument_base
|
|
73
|
+
Data_level: 1B
|
|
74
|
+
Data_type: L1B_prostar>Level-1B Processed Star Sensor
|
|
75
|
+
Logical_source: imap_lo_l1b_prostar
|
|
76
|
+
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
|
|
77
|
+
|
|
78
|
+
imap_lo_l1c_goodtimes:
|
|
79
|
+
<<: *instrument_base
|
|
80
|
+
Data_level: 1C
|
|
81
|
+
Data_type: L1C_goodtimes>Level-1C Goodtimes List
|
|
82
|
+
Logical_source: imap_lo_l1c_goodtimes
|
|
83
|
+
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1C Data
|
|
84
|
+
|
|
85
|
+
imap_lo_l1c_pset:
|
|
86
|
+
<<: *instrument_base
|
|
87
|
+
Data_level: 1C
|
|
88
|
+
Data_type: L1C_pset>Level-1C Pointing Set
|
|
89
|
+
Logical_source: imap_lo_l1c_pset
|
|
90
|
+
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1C Data
|