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,254 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
+
<!-- This file was created by manually combining the SequenceContainerSets of
|
|
3
|
+
P_GLX_TMSCDE.xml and P_GLX_TMSHIST.xml to process both packet APIDs -->
|
|
4
|
+
<xtce:SpaceSystem xmlns:xtce="http://www.omg.org/space/xtce" name="P_GLX_TMSCHIST">
|
|
5
|
+
<xtce:Header date="2023-10" version="1.0" author="IMAP SDC" />
|
|
6
|
+
<xtce:TelemetryMetaData>
|
|
7
|
+
<xtce:ParameterTypeSet>
|
|
8
|
+
<xtce:IntegerParameterType name="UINT1" signed="false">
|
|
9
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
10
|
+
</xtce:IntegerParameterType>
|
|
11
|
+
<xtce:IntegerParameterType name="UINT2" signed="false">
|
|
12
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
13
|
+
</xtce:IntegerParameterType>
|
|
14
|
+
<xtce:IntegerParameterType name="UINT3" signed="false">
|
|
15
|
+
<xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
|
|
16
|
+
</xtce:IntegerParameterType>
|
|
17
|
+
<xtce:IntegerParameterType name="UINT8" signed="false">
|
|
18
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
19
|
+
</xtce:IntegerParameterType>
|
|
20
|
+
<xtce:IntegerParameterType name="UINT11" signed="false">
|
|
21
|
+
<xtce:IntegerDataEncoding sizeInBits="11" encoding="unsigned" />
|
|
22
|
+
</xtce:IntegerParameterType>
|
|
23
|
+
<xtce:IntegerParameterType name="UINT14" signed="false">
|
|
24
|
+
<xtce:IntegerDataEncoding sizeInBits="14" encoding="unsigned" />
|
|
25
|
+
</xtce:IntegerParameterType>
|
|
26
|
+
<xtce:IntegerParameterType name="UINT16" signed="false">
|
|
27
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
|
|
28
|
+
</xtce:IntegerParameterType>
|
|
29
|
+
<xtce:IntegerParameterType name="UINT24" signed="false">
|
|
30
|
+
<xtce:IntegerDataEncoding sizeInBits="24" encoding="unsigned" />
|
|
31
|
+
</xtce:IntegerParameterType>
|
|
32
|
+
<xtce:IntegerParameterType name="UINT32" signed="false">
|
|
33
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
34
|
+
</xtce:IntegerParameterType>
|
|
35
|
+
<xtce:IntegerParameterType name="INT32" signed="true">
|
|
36
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="signed" />
|
|
37
|
+
</xtce:IntegerParameterType>
|
|
38
|
+
<xtce:BinaryParameterType name="BYTE28800">
|
|
39
|
+
<xtce:BinaryDataEncoding bitOrder="mostSignificantBitFirst">
|
|
40
|
+
<xtce:SizeInBits>
|
|
41
|
+
<xtce:FixedValue>28800</xtce:FixedValue>
|
|
42
|
+
</xtce:SizeInBits>
|
|
43
|
+
</xtce:BinaryDataEncoding>
|
|
44
|
+
</xtce:BinaryParameterType>
|
|
45
|
+
<xtce:BinaryParameterType name="BYTEDE">
|
|
46
|
+
<xtce:BinaryDataEncoding bitOrder="mostSignificantBitFirst">
|
|
47
|
+
<xtce:SizeInBits>
|
|
48
|
+
<xtce:DynamicValue>
|
|
49
|
+
<xtce:ParameterInstanceRef parameterRef="PKT_LEN"/>
|
|
50
|
+
<!--To find the rest of the packet, this intercept is -(32 + 32 + 16 + 16) = 96 for MET, SEC, LEN, and SEQ values in DE packet. Then +8 because PKT_LEN is zero indexed, resulting in an offset of -88. -->
|
|
51
|
+
<xtce:LinearAdjustment intercept="-88" slope="8"/>
|
|
52
|
+
</xtce:DynamicValue>
|
|
53
|
+
</xtce:SizeInBits>
|
|
54
|
+
</xtce:BinaryDataEncoding>
|
|
55
|
+
</xtce:BinaryParameterType>
|
|
56
|
+
</xtce:ParameterTypeSet>
|
|
57
|
+
<xtce:ParameterSet>
|
|
58
|
+
<xtce:Parameter name="VERSION" parameterTypeRef="UINT3">
|
|
59
|
+
<xtce:LongDescription>CCSDS Packet Version Number (always 0)</xtce:LongDescription>
|
|
60
|
+
</xtce:Parameter>
|
|
61
|
+
<xtce:Parameter name="TYPE" parameterTypeRef="UINT1">
|
|
62
|
+
<xtce:LongDescription>CCSDS Packet Type Indicator (0=telemetry)</xtce:LongDescription>
|
|
63
|
+
</xtce:Parameter>
|
|
64
|
+
<xtce:Parameter name="SEC_HDR_FLG" parameterTypeRef="UINT1">
|
|
65
|
+
<xtce:LongDescription>CCSDS Packet Secondary Header Flag (always 1)</xtce:LongDescription>
|
|
66
|
+
</xtce:Parameter>
|
|
67
|
+
<xtce:Parameter name="PKT_APID" parameterTypeRef="UINT11">
|
|
68
|
+
<xtce:LongDescription>CCSDS Packet Application Process ID</xtce:LongDescription>
|
|
69
|
+
</xtce:Parameter>
|
|
70
|
+
<xtce:Parameter name="SEQ_FLGS" parameterTypeRef="UINT2">
|
|
71
|
+
<xtce:LongDescription>CCSDS Packet Grouping Flags (3=not part of group)</xtce:LongDescription>
|
|
72
|
+
</xtce:Parameter>
|
|
73
|
+
<xtce:Parameter name="SRC_SEQ_CTR" parameterTypeRef="UINT14">
|
|
74
|
+
<xtce:LongDescription>CCSDS Packet Sequence Count (increments with each new packet)</xtce:LongDescription>
|
|
75
|
+
</xtce:Parameter>
|
|
76
|
+
<xtce:Parameter name="PKT_LEN" parameterTypeRef="UINT16">
|
|
77
|
+
<xtce:LongDescription>CCSDS Packet Length (number of bytes after Packet length minus 1)</xtce:LongDescription>
|
|
78
|
+
</xtce:Parameter>
|
|
79
|
+
<xtce:Parameter name="MET" parameterTypeRef="UINT32">
|
|
80
|
+
<xtce:ShortDescription>CCSDS Packet 2nd Header Coarse Time</xtce:ShortDescription>
|
|
81
|
+
<xtce:LongDescription>CCSDS Packet 2nd Header Coarse Time (seconds)</xtce:LongDescription>
|
|
82
|
+
</xtce:Parameter>
|
|
83
|
+
<xtce:Parameter name="STARTID" parameterTypeRef="INT32">
|
|
84
|
+
<xtce:ShortDescription>Histogram Start ID</xtce:ShortDescription>
|
|
85
|
+
<xtce:LongDescription>Ordinal number of the first IMAP spin in the block.</xtce:LongDescription>
|
|
86
|
+
</xtce:Parameter>
|
|
87
|
+
<xtce:Parameter name="ENDID" parameterTypeRef="UINT16">
|
|
88
|
+
<xtce:ShortDescription>Histogram End ID</xtce:ShortDescription>
|
|
89
|
+
<xtce:LongDescription>Ordinal number of the last IMAP spin in the block, offset from STARTID.</xtce:LongDescription>
|
|
90
|
+
</xtce:Parameter>
|
|
91
|
+
<xtce:Parameter name="FLAGS" parameterTypeRef="UINT16">
|
|
92
|
+
<xtce:ShortDescription>Histogram flags</xtce:ShortDescription>
|
|
93
|
+
<xtce:LongDescription>Status flags indicating the quality of the produced histograms.</xtce:LongDescription>
|
|
94
|
+
</xtce:Parameter>
|
|
95
|
+
<xtce:Parameter name="SWVER" parameterTypeRef="UINT24">
|
|
96
|
+
<xtce:ShortDescription>Version of SW used for generation</xtce:ShortDescription>
|
|
97
|
+
<xtce:LongDescription>GLOWS AppSW version number.</xtce:LongDescription>
|
|
98
|
+
</xtce:Parameter>
|
|
99
|
+
<xtce:Parameter name="SEC" parameterTypeRef="INT32">
|
|
100
|
+
<xtce:ShortDescription>Block start time (IMAP), seconds</xtce:ShortDescription>
|
|
101
|
+
<xtce:LongDescription>Start time, seconds field, of the histogram block. Specified as a number of IMAP seconds (since start from IMAP epoch as defined in GI ICD).</xtce:LongDescription>
|
|
102
|
+
</xtce:Parameter>
|
|
103
|
+
<xtce:Parameter name="SUBSEC" parameterTypeRef="UINT24">
|
|
104
|
+
<xtce:ShortDescription>Block start time (IMAP), subseconds</xtce:ShortDescription>
|
|
105
|
+
<xtce:LongDescription>Start time, subseconds field, of the histogram block. This value is obtained in linear interpolation from PPS data and is converted to internal SCIENCE format, where Subseconds timer wraps at 2000000 (2MHz counter).</xtce:LongDescription>
|
|
106
|
+
</xtce:Parameter>
|
|
107
|
+
<xtce:Parameter name="OFFSETSEC" parameterTypeRef="UINT16">
|
|
108
|
+
<xtce:ShortDescription>Block end time (IMAP), seconds</xtce:ShortDescription>
|
|
109
|
+
<xtce:LongDescription>Stop time, seconds field, of the histogram block, offset. Specified as a number of IMAP seconds (since start time of the histogram block).</xtce:LongDescription>
|
|
110
|
+
</xtce:Parameter>
|
|
111
|
+
<xtce:Parameter name="OFFSETSUBSEC" parameterTypeRef="UINT24">
|
|
112
|
+
<xtce:ShortDescription>Block end time (IMAP), subseconds</xtce:ShortDescription>
|
|
113
|
+
<xtce:LongDescription>Stop time, subseconds field, of the histogram block, offset. This value is obtained in linear interpolation from PPS data and is converted to internal SCIENCE format, where Subseconds timer wraps at 2000000 (2MHz counter).</xtce:LongDescription>
|
|
114
|
+
</xtce:Parameter>
|
|
115
|
+
<xtce:Parameter name="GLXSEC" parameterTypeRef="INT32">
|
|
116
|
+
<xtce:ShortDescription>Block start time (GLOWS), seconds</xtce:ShortDescription>
|
|
117
|
+
<xtce:LongDescription>Start time, seconds field, of the histogram block. Specified as a number of seconds (since start from IMAP epoch as defined in GI ICD). Value based on readouts from internal SCIENCE timer which is synchronized to IMAP only on power on/reset</xtce:LongDescription>
|
|
118
|
+
</xtce:Parameter>
|
|
119
|
+
<xtce:Parameter name="GLXSUBSEC" parameterTypeRef="UINT24">
|
|
120
|
+
<xtce:ShortDescription>Block start time (GLOWS), Subseconds</xtce:ShortDescription>
|
|
121
|
+
<xtce:LongDescription>Start time, subseconds field, of the histogram block. Value read from internal SCIENCE timer. Subseconds timer wraps at 2000000 (2MHz counter).</xtce:LongDescription>
|
|
122
|
+
</xtce:Parameter>
|
|
123
|
+
<xtce:Parameter name="GLXOFFSEC" parameterTypeRef="UINT16">
|
|
124
|
+
<xtce:ShortDescription>Block end time (GLOWS), seconds</xtce:ShortDescription>
|
|
125
|
+
<xtce:LongDescription>Stop time, seconds field, of the histogram block, offset. Specified as a number of IMAP seconds (since start from IMAP epoch as defined in GI ICD). Value based on readouts from internal SCIENCE timer, which is synchronized to IMAP clock only on power on/reset.</xtce:LongDescription>
|
|
126
|
+
</xtce:Parameter>
|
|
127
|
+
<xtce:Parameter name="GLXOFFSUBSEC" parameterTypeRef="UINT24">
|
|
128
|
+
<xtce:ShortDescription>Block end time (GLOWS), subseconds</xtce:ShortDescription>
|
|
129
|
+
<xtce:LongDescription>Stop time, subseconds field, of the histogram block, offset. Value read from internal SCIENCE timer. Subseconds timers wraps at 2000000 (2MHz counter).</xtce:LongDescription>
|
|
130
|
+
</xtce:Parameter>
|
|
131
|
+
<xtce:Parameter name="SPINS" parameterTypeRef="UINT8">
|
|
132
|
+
<xtce:ShortDescription>Number of spins</xtce:ShortDescription>
|
|
133
|
+
<xtce:LongDescription>Number of spins the SCIENCE block (histogram) is composed of minus 1 (0 - 1 spins, 1 - 2 spins, ...)</xtce:LongDescription>
|
|
134
|
+
</xtce:Parameter>
|
|
135
|
+
<xtce:Parameter name="NBINS" parameterTypeRef="UINT16">
|
|
136
|
+
<xtce:ShortDescription>Number of bins</xtce:ShortDescription>
|
|
137
|
+
<xtce:LongDescription>Number of bins the SCIENCE histogram is composed of.</xtce:LongDescription>
|
|
138
|
+
</xtce:Parameter>
|
|
139
|
+
<xtce:Parameter name="TEMPAVG" parameterTypeRef="UINT8">
|
|
140
|
+
<xtce:ShortDescription>Mean filter temperature </xtce:ShortDescription>
|
|
141
|
+
<xtce:LongDescription>Average GLOWS Optical filter temperature observed during data collection for transmitted histograms.</xtce:LongDescription>
|
|
142
|
+
</xtce:Parameter>
|
|
143
|
+
<xtce:Parameter name="TEMPVAR" parameterTypeRef="UINT16">
|
|
144
|
+
<xtce:ShortDescription>Variance of filter temperature </xtce:ShortDescription>
|
|
145
|
+
<xtce:LongDescription>Variance observed on the GLOWS Optical filter temperature during data collection for transmitted histograms.</xtce:LongDescription>
|
|
146
|
+
</xtce:Parameter>
|
|
147
|
+
<xtce:Parameter name="HVAVG" parameterTypeRef="UINT16">
|
|
148
|
+
<xtce:ShortDescription>Mean CEM voltage</xtce:ShortDescription>
|
|
149
|
+
<xtce:LongDescription>Average CEM High Voltage bias observed during data collection for transmitted histograms.</xtce:LongDescription>
|
|
150
|
+
</xtce:Parameter>
|
|
151
|
+
<xtce:Parameter name="HVVAR" parameterTypeRef="INT32">
|
|
152
|
+
<xtce:ShortDescription>Variance of CEM voltage </xtce:ShortDescription>
|
|
153
|
+
<xtce:LongDescription>Variance observed on the CEM High Voltage bias during data collection for transmitted histograms.</xtce:LongDescription>
|
|
154
|
+
</xtce:Parameter>
|
|
155
|
+
<xtce:Parameter name="SPAVG" parameterTypeRef="UINT16">
|
|
156
|
+
<xtce:ShortDescription>Mean spin period </xtce:ShortDescription>
|
|
157
|
+
<xtce:LongDescription>Average spin period observed during data collection for transmitted histograms.</xtce:LongDescription>
|
|
158
|
+
</xtce:Parameter>
|
|
159
|
+
<xtce:Parameter name="SPVAR" parameterTypeRef="INT32">
|
|
160
|
+
<xtce:ShortDescription>Variance of spin period </xtce:ShortDescription>
|
|
161
|
+
<xtce:LongDescription>Variance observed on the spin period during data collection for transmitted histograms.</xtce:LongDescription>
|
|
162
|
+
</xtce:Parameter>
|
|
163
|
+
<xtce:Parameter name="ELAVG" parameterTypeRef="UINT8">
|
|
164
|
+
<xtce:ShortDescription>Mean length of event impulse</xtce:ShortDescription>
|
|
165
|
+
<xtce:LongDescription>Average event length observed during data collection for transmitted histograms.</xtce:LongDescription>
|
|
166
|
+
</xtce:Parameter>
|
|
167
|
+
<xtce:Parameter name="ELVAR" parameterTypeRef="UINT16">
|
|
168
|
+
<xtce:ShortDescription>Variance of event-impulse length</xtce:ShortDescription>
|
|
169
|
+
<xtce:LongDescription>Variance observed on the event length during data collection for transmitted histograms.</xtce:LongDescription>
|
|
170
|
+
</xtce:Parameter>
|
|
171
|
+
<xtce:Parameter name="EVENTS" parameterTypeRef="UINT32">
|
|
172
|
+
<xtce:ShortDescription>Number of events</xtce:ShortDescription>
|
|
173
|
+
<xtce:LongDescription>Number of event in all bins (sum) of this histogram.</xtce:LongDescription>
|
|
174
|
+
</xtce:Parameter>
|
|
175
|
+
<xtce:Parameter name="HISTOGRAM_DATA" parameterTypeRef="BYTE28800">
|
|
176
|
+
<xtce:ShortDescription>Histogram Counts</xtce:ShortDescription>
|
|
177
|
+
<xtce:LongDescription>Total histogram data counts. Each bin has 8 bits of data, with 3600 total bins.</xtce:LongDescription>
|
|
178
|
+
</xtce:Parameter>
|
|
179
|
+
<!-- Direct event parameters -->
|
|
180
|
+
<xtce:Parameter name="LEN" parameterTypeRef="UINT16">
|
|
181
|
+
<xtce:ShortDescription>Number of packets in data set.</xtce:ShortDescription>
|
|
182
|
+
<xtce:LongDescription>Number of GLX_TMSCDE packets the block of Direct event data is composed of. </xtce:LongDescription>
|
|
183
|
+
</xtce:Parameter>
|
|
184
|
+
<xtce:Parameter name="SEQ" parameterTypeRef="UINT16">
|
|
185
|
+
<xtce:ShortDescription>Packet sequence in data set.</xtce:ShortDescription>
|
|
186
|
+
<xtce:LongDescription>Sequence number for this packet in the series of GLX_TMSCDE packets the block of Direct event data is composed of. </xtce:LongDescription>
|
|
187
|
+
</xtce:Parameter>
|
|
188
|
+
<xtce:Parameter name="DE_DATA" parameterTypeRef="BYTEDE">
|
|
189
|
+
<xtce:ShortDescription>Direct events data</xtce:ShortDescription>
|
|
190
|
+
</xtce:Parameter>
|
|
191
|
+
</xtce:ParameterSet>
|
|
192
|
+
<xtce:ContainerSet>
|
|
193
|
+
<xtce:SequenceContainer name="CCSDSPacket">
|
|
194
|
+
<xtce:EntryList>
|
|
195
|
+
<xtce:ParameterRefEntry parameterRef="VERSION" />
|
|
196
|
+
<xtce:ParameterRefEntry parameterRef="TYPE" />
|
|
197
|
+
<xtce:ParameterRefEntry parameterRef="SEC_HDR_FLG" />
|
|
198
|
+
<xtce:ParameterRefEntry parameterRef="PKT_APID" />
|
|
199
|
+
<xtce:ParameterRefEntry parameterRef="SEQ_FLGS" />
|
|
200
|
+
<xtce:ParameterRefEntry parameterRef="SRC_SEQ_CTR" />
|
|
201
|
+
<xtce:ParameterRefEntry parameterRef="PKT_LEN" />
|
|
202
|
+
</xtce:EntryList>
|
|
203
|
+
</xtce:SequenceContainer>
|
|
204
|
+
<xtce:SequenceContainer name="P_GLX_TMSCHIST">
|
|
205
|
+
<xtce:BaseContainer containerRef="CCSDSPacket">
|
|
206
|
+
<xtce:RestrictionCriteria>
|
|
207
|
+
<xtce:Comparison parameterRef="PKT_APID" value="1480" useCalibratedValue="false" />
|
|
208
|
+
</xtce:RestrictionCriteria>
|
|
209
|
+
</xtce:BaseContainer>
|
|
210
|
+
<xtce:EntryList>
|
|
211
|
+
<xtce:ParameterRefEntry parameterRef="MET" />
|
|
212
|
+
<xtce:ParameterRefEntry parameterRef="STARTID" />
|
|
213
|
+
<xtce:ParameterRefEntry parameterRef="ENDID" />
|
|
214
|
+
<xtce:ParameterRefEntry parameterRef="FLAGS" />
|
|
215
|
+
<xtce:ParameterRefEntry parameterRef="SWVER" />
|
|
216
|
+
<xtce:ParameterRefEntry parameterRef="SEC" />
|
|
217
|
+
<xtce:ParameterRefEntry parameterRef="SUBSEC" />
|
|
218
|
+
<xtce:ParameterRefEntry parameterRef="OFFSETSEC" />
|
|
219
|
+
<xtce:ParameterRefEntry parameterRef="OFFSETSUBSEC" />
|
|
220
|
+
<xtce:ParameterRefEntry parameterRef="GLXSEC" />
|
|
221
|
+
<xtce:ParameterRefEntry parameterRef="GLXSUBSEC" />
|
|
222
|
+
<xtce:ParameterRefEntry parameterRef="GLXOFFSEC" />
|
|
223
|
+
<xtce:ParameterRefEntry parameterRef="GLXOFFSUBSEC" />
|
|
224
|
+
<xtce:ParameterRefEntry parameterRef="SPINS" />
|
|
225
|
+
<xtce:ParameterRefEntry parameterRef="NBINS" />
|
|
226
|
+
<xtce:ParameterRefEntry parameterRef="TEMPAVG" />
|
|
227
|
+
<xtce:ParameterRefEntry parameterRef="TEMPVAR" />
|
|
228
|
+
<xtce:ParameterRefEntry parameterRef="HVAVG" />
|
|
229
|
+
<xtce:ParameterRefEntry parameterRef="HVVAR" />
|
|
230
|
+
<xtce:ParameterRefEntry parameterRef="SPAVG" />
|
|
231
|
+
<xtce:ParameterRefEntry parameterRef="SPVAR" />
|
|
232
|
+
<xtce:ParameterRefEntry parameterRef="ELAVG" />
|
|
233
|
+
<xtce:ParameterRefEntry parameterRef="ELVAR" />
|
|
234
|
+
<xtce:ParameterRefEntry parameterRef="EVENTS" />
|
|
235
|
+
<xtce:ParameterRefEntry parameterRef="HISTOGRAM_DATA" />
|
|
236
|
+
</xtce:EntryList>
|
|
237
|
+
</xtce:SequenceContainer>
|
|
238
|
+
<xtce:SequenceContainer name="P_GLX_TMSCDE">
|
|
239
|
+
<xtce:BaseContainer containerRef="CCSDSPacket">
|
|
240
|
+
<xtce:RestrictionCriteria>
|
|
241
|
+
<xtce:Comparison parameterRef="PKT_APID" value="1481" useCalibratedValue="false" />
|
|
242
|
+
</xtce:RestrictionCriteria>
|
|
243
|
+
</xtce:BaseContainer>
|
|
244
|
+
<xtce:EntryList>
|
|
245
|
+
<xtce:ParameterRefEntry parameterRef="MET" />
|
|
246
|
+
<xtce:ParameterRefEntry parameterRef="SEC" />
|
|
247
|
+
<xtce:ParameterRefEntry parameterRef="LEN" />
|
|
248
|
+
<xtce:ParameterRefEntry parameterRef="SEQ" />
|
|
249
|
+
<xtce:ParameterRefEntry parameterRef="DE_DATA"/>
|
|
250
|
+
</xtce:EntryList>
|
|
251
|
+
</xtce:SequenceContainer>
|
|
252
|
+
</xtce:ContainerSet>
|
|
253
|
+
</xtce:TelemetryMetaData>
|
|
254
|
+
</xtce:SpaceSystem>
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
+
<xtce:SpaceSystem xmlns:xtce="http://www.omg.org/space/xtce" name="P_GLX_TMSCDE">
|
|
3
|
+
<xtce:Header date="2023-10" version="1.0" author="IMAP SDC" />
|
|
4
|
+
<xtce:TelemetryMetaData>
|
|
5
|
+
<xtce:ParameterTypeSet>
|
|
6
|
+
<xtce:IntegerParameterType name="UINT1" signed="false">
|
|
7
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
8
|
+
</xtce:IntegerParameterType>
|
|
9
|
+
<xtce:IntegerParameterType name="UINT2" signed="false">
|
|
10
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
11
|
+
</xtce:IntegerParameterType>
|
|
12
|
+
<xtce:IntegerParameterType name="UINT3" signed="false">
|
|
13
|
+
<xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
|
|
14
|
+
</xtce:IntegerParameterType>
|
|
15
|
+
<xtce:IntegerParameterType name="UINT11" signed="false">
|
|
16
|
+
<xtce:IntegerDataEncoding sizeInBits="11" encoding="unsigned" />
|
|
17
|
+
</xtce:IntegerParameterType>
|
|
18
|
+
<xtce:IntegerParameterType name="UINT14" signed="false">
|
|
19
|
+
<xtce:IntegerDataEncoding sizeInBits="14" encoding="unsigned" />
|
|
20
|
+
</xtce:IntegerParameterType>
|
|
21
|
+
<xtce:IntegerParameterType name="UINT16" signed="false">
|
|
22
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
|
|
23
|
+
</xtce:IntegerParameterType>
|
|
24
|
+
<xtce:IntegerParameterType name="UINT32" signed="false">
|
|
25
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
26
|
+
</xtce:IntegerParameterType>
|
|
27
|
+
<xtce:IntegerParameterType name="INT32" signed="true">
|
|
28
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="signed" />
|
|
29
|
+
</xtce:IntegerParameterType>
|
|
30
|
+
</xtce:ParameterTypeSet>
|
|
31
|
+
<xtce:ParameterSet>
|
|
32
|
+
<xtce:Parameter name="VERSION" parameterTypeRef="UINT3">
|
|
33
|
+
<xtce:LongDescription>CCSDS Packet Version Number (always 0)</xtce:LongDescription>
|
|
34
|
+
</xtce:Parameter>
|
|
35
|
+
<xtce:Parameter name="TYPE" parameterTypeRef="UINT1">
|
|
36
|
+
<xtce:LongDescription>CCSDS Packet Type Indicator (0=telemetry)</xtce:LongDescription>
|
|
37
|
+
</xtce:Parameter>
|
|
38
|
+
<xtce:Parameter name="SEC_HDR_FLG" parameterTypeRef="UINT1">
|
|
39
|
+
<xtce:LongDescription>CCSDS Packet Secondary Header Flag (always 1)</xtce:LongDescription>
|
|
40
|
+
</xtce:Parameter>
|
|
41
|
+
<xtce:Parameter name="PKT_APID" parameterTypeRef="UINT11">
|
|
42
|
+
<xtce:LongDescription>CCSDS Packet Application Process ID</xtce:LongDescription>
|
|
43
|
+
</xtce:Parameter>
|
|
44
|
+
<xtce:Parameter name="SEQ_FLGS" parameterTypeRef="UINT2">
|
|
45
|
+
<xtce:LongDescription>CCSDS Packet Grouping Flags (3=not part of group)</xtce:LongDescription>
|
|
46
|
+
</xtce:Parameter>
|
|
47
|
+
<xtce:Parameter name="SRC_SEQ_CTR" parameterTypeRef="UINT14">
|
|
48
|
+
<xtce:LongDescription>CCSDS Packet Sequence Count (increments with each new packet)</xtce:LongDescription>
|
|
49
|
+
</xtce:Parameter>
|
|
50
|
+
<xtce:Parameter name="PKT_LEN" parameterTypeRef="UINT16">
|
|
51
|
+
<xtce:LongDescription>CCSDS Packet Length (number of bytes after Packet length minus 1)</xtce:LongDescription>
|
|
52
|
+
</xtce:Parameter>
|
|
53
|
+
<xtce:Parameter name="MET" parameterTypeRef="UINT32">
|
|
54
|
+
<xtce:ShortDescription>CCSDS Packet 2nd Header Coarse Time</xtce:ShortDescription>
|
|
55
|
+
<xtce:LongDescription>CCSDS Packet 2nd Header Coarse Time (seconds)</xtce:LongDescription>
|
|
56
|
+
</xtce:Parameter>
|
|
57
|
+
<xtce:Parameter name="SEC" parameterTypeRef="INT32">
|
|
58
|
+
<xtce:ShortDescription>Data timestamp, seconds counter.</xtce:ShortDescription>
|
|
59
|
+
<xtce:LongDescription>Start time (subseconds by default set to 0) of the direct event dump. Specified as a number of IMAP seconds (since start from IMAP epoch as defined in GI ICD).</xtce:LongDescription>
|
|
60
|
+
</xtce:Parameter>
|
|
61
|
+
<xtce:Parameter name="LEN" parameterTypeRef="UINT16">
|
|
62
|
+
<xtce:ShortDescription>Number of packets in data set.</xtce:ShortDescription>
|
|
63
|
+
<xtce:LongDescription>Number of GLX_TMSCDE packets the block of Direct event data is composed of. </xtce:LongDescription>
|
|
64
|
+
</xtce:Parameter>
|
|
65
|
+
<xtce:Parameter name="SEQ" parameterTypeRef="UINT16">
|
|
66
|
+
<xtce:ShortDescription>Packet sequence in data set.</xtce:ShortDescription>
|
|
67
|
+
<xtce:LongDescription>Sequence number for this packet in the series of GLX_TMSCDE packets the block of Direct event data is composed of. </xtce:LongDescription>
|
|
68
|
+
</xtce:Parameter>
|
|
69
|
+
</xtce:ParameterSet>
|
|
70
|
+
<xtce:ContainerSet>
|
|
71
|
+
<xtce:SequenceContainer name="CCSDSPacket">
|
|
72
|
+
<xtce:EntryList>
|
|
73
|
+
<xtce:ParameterRefEntry parameterRef="VERSION" />
|
|
74
|
+
<xtce:ParameterRefEntry parameterRef="TYPE" />
|
|
75
|
+
<xtce:ParameterRefEntry parameterRef="SEC_HDR_FLG" />
|
|
76
|
+
<xtce:ParameterRefEntry parameterRef="PKT_APID" />
|
|
77
|
+
<xtce:ParameterRefEntry parameterRef="SEQ_FLGS" />
|
|
78
|
+
<xtce:ParameterRefEntry parameterRef="SRC_SEQ_CTR" />
|
|
79
|
+
<xtce:ParameterRefEntry parameterRef="PKT_LEN" />
|
|
80
|
+
</xtce:EntryList>
|
|
81
|
+
</xtce:SequenceContainer>
|
|
82
|
+
<xtce:SequenceContainer name="P_GLX_TMSCDE">
|
|
83
|
+
<xtce:BaseContainer containerRef="CCSDSPacket">
|
|
84
|
+
<xtce:RestrictionCriteria>
|
|
85
|
+
<xtce:Comparison parameterRef="PKT_APID" value="1481" useCalibratedValue="false" />
|
|
86
|
+
</xtce:RestrictionCriteria>
|
|
87
|
+
</xtce:BaseContainer>
|
|
88
|
+
<xtce:EntryList>
|
|
89
|
+
<xtce:ParameterRefEntry parameterRef="MET" />
|
|
90
|
+
<xtce:ParameterRefEntry parameterRef="SEC" />
|
|
91
|
+
<xtce:ParameterRefEntry parameterRef="LEN" />
|
|
92
|
+
<xtce:ParameterRefEntry parameterRef="SEQ" />
|
|
93
|
+
</xtce:EntryList>
|
|
94
|
+
</xtce:SequenceContainer>
|
|
95
|
+
</xtce:ContainerSet>
|
|
96
|
+
</xtce:TelemetryMetaData>
|
|
97
|
+
</xtce:SpaceSystem>
|
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='utf-8'?>
|
|
2
|
+
<xtce:SpaceSystem xmlns:xtce="http://www.omg.org/space/xtce" name="P_GLX_TMSCHIST">
|
|
3
|
+
<xtce:Header date="2023-10" version="1.0" author="IMAP SDC" />
|
|
4
|
+
<xtce:TelemetryMetaData>
|
|
5
|
+
<xtce:ParameterTypeSet>
|
|
6
|
+
<xtce:IntegerParameterType name="UINT1" signed="false">
|
|
7
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
8
|
+
</xtce:IntegerParameterType>
|
|
9
|
+
<xtce:IntegerParameterType name="UINT2" signed="false">
|
|
10
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
11
|
+
</xtce:IntegerParameterType>
|
|
12
|
+
<xtce:IntegerParameterType name="UINT3" signed="false">
|
|
13
|
+
<xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
|
|
14
|
+
</xtce:IntegerParameterType>
|
|
15
|
+
<xtce:IntegerParameterType name="UINT8" signed="false">
|
|
16
|
+
<xtce:IntegerDataEncoding sizeInBits="8" encoding="unsigned" />
|
|
17
|
+
</xtce:IntegerParameterType>
|
|
18
|
+
<xtce:IntegerParameterType name="UINT11" signed="false">
|
|
19
|
+
<xtce:IntegerDataEncoding sizeInBits="11" encoding="unsigned" />
|
|
20
|
+
</xtce:IntegerParameterType>
|
|
21
|
+
<xtce:IntegerParameterType name="UINT14" signed="false">
|
|
22
|
+
<xtce:IntegerDataEncoding sizeInBits="14" encoding="unsigned" />
|
|
23
|
+
</xtce:IntegerParameterType>
|
|
24
|
+
<xtce:IntegerParameterType name="UINT16" signed="false">
|
|
25
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
|
|
26
|
+
</xtce:IntegerParameterType>
|
|
27
|
+
<xtce:IntegerParameterType name="UINT24" signed="false">
|
|
28
|
+
<xtce:IntegerDataEncoding sizeInBits="24" encoding="unsigned" />
|
|
29
|
+
</xtce:IntegerParameterType>
|
|
30
|
+
<xtce:IntegerParameterType name="UINT32" signed="false">
|
|
31
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
32
|
+
</xtce:IntegerParameterType>
|
|
33
|
+
<xtce:IntegerParameterType name="INT32" signed="true">
|
|
34
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="signed" />
|
|
35
|
+
</xtce:IntegerParameterType>
|
|
36
|
+
<xtce:BinaryParameterType name="BYTE28800">
|
|
37
|
+
<xtce:BinaryDataEncoding bitOrder="mostSignificantBitFirst">
|
|
38
|
+
<xtce:SizeInBits>
|
|
39
|
+
<xtce:FixedValue>28800</xtce:FixedValue>
|
|
40
|
+
</xtce:SizeInBits>
|
|
41
|
+
</xtce:BinaryDataEncoding>
|
|
42
|
+
</xtce:BinaryParameterType>
|
|
43
|
+
</xtce:ParameterTypeSet>
|
|
44
|
+
<xtce:ParameterSet>
|
|
45
|
+
<xtce:Parameter name="VERSION" parameterTypeRef="UINT3">
|
|
46
|
+
<xtce:LongDescription>CCSDS Packet Version Number (always 0)</xtce:LongDescription>
|
|
47
|
+
</xtce:Parameter>
|
|
48
|
+
<xtce:Parameter name="TYPE" parameterTypeRef="UINT1">
|
|
49
|
+
<xtce:LongDescription>CCSDS Packet Type Indicator (0=telemetry)</xtce:LongDescription>
|
|
50
|
+
</xtce:Parameter>
|
|
51
|
+
<xtce:Parameter name="SEC_HDR_FLG" parameterTypeRef="UINT1">
|
|
52
|
+
<xtce:LongDescription>CCSDS Packet Secondary Header Flag (always 1)</xtce:LongDescription>
|
|
53
|
+
</xtce:Parameter>
|
|
54
|
+
<xtce:Parameter name="PKT_APID" parameterTypeRef="UINT11">
|
|
55
|
+
<xtce:LongDescription>CCSDS Packet Application Process ID</xtce:LongDescription>
|
|
56
|
+
</xtce:Parameter>
|
|
57
|
+
<xtce:Parameter name="SEQ_FLGS" parameterTypeRef="UINT2">
|
|
58
|
+
<xtce:LongDescription>CCSDS Packet Grouping Flags (3=not part of group)</xtce:LongDescription>
|
|
59
|
+
</xtce:Parameter>
|
|
60
|
+
<xtce:Parameter name="SRC_SEQ_CTR" parameterTypeRef="UINT14">
|
|
61
|
+
<xtce:LongDescription>CCSDS Packet Sequence Count (increments with each new packet)</xtce:LongDescription>
|
|
62
|
+
</xtce:Parameter>
|
|
63
|
+
<xtce:Parameter name="PKT_LEN" parameterTypeRef="UINT16">
|
|
64
|
+
<xtce:LongDescription>CCSDS Packet Length (number of bytes after Packet length minus 1)</xtce:LongDescription>
|
|
65
|
+
</xtce:Parameter>
|
|
66
|
+
<xtce:Parameter name="MET" parameterTypeRef="UINT32">
|
|
67
|
+
<xtce:ShortDescription>CCSDS Packet 2nd Header Coarse Time</xtce:ShortDescription>
|
|
68
|
+
<xtce:LongDescription>CCSDS Packet 2nd Header Coarse Time (seconds)</xtce:LongDescription>
|
|
69
|
+
</xtce:Parameter>
|
|
70
|
+
<xtce:Parameter name="STARTID" parameterTypeRef="INT32">
|
|
71
|
+
<xtce:ShortDescription>Histogram Start ID</xtce:ShortDescription>
|
|
72
|
+
<xtce:LongDescription>Ordinal number of the first IMAP spin in the block.</xtce:LongDescription>
|
|
73
|
+
</xtce:Parameter>
|
|
74
|
+
<xtce:Parameter name="ENDID" parameterTypeRef="UINT16">
|
|
75
|
+
<xtce:ShortDescription>Histogram End ID</xtce:ShortDescription>
|
|
76
|
+
<xtce:LongDescription>Ordinal number of the last IMAP spin in the block, offset from STARTID.</xtce:LongDescription>
|
|
77
|
+
</xtce:Parameter>
|
|
78
|
+
<xtce:Parameter name="FLAGS" parameterTypeRef="UINT16">
|
|
79
|
+
<xtce:ShortDescription>Histogram flags</xtce:ShortDescription>
|
|
80
|
+
<xtce:LongDescription>Status flags indicating the quality of the produced histograms.</xtce:LongDescription>
|
|
81
|
+
</xtce:Parameter>
|
|
82
|
+
<xtce:Parameter name="SWVER" parameterTypeRef="UINT24">
|
|
83
|
+
<xtce:ShortDescription>Version of SW used for generation</xtce:ShortDescription>
|
|
84
|
+
<xtce:LongDescription>GLOWS AppSW version number.</xtce:LongDescription>
|
|
85
|
+
</xtce:Parameter>
|
|
86
|
+
<xtce:Parameter name="SEC" parameterTypeRef="INT32">
|
|
87
|
+
<xtce:ShortDescription>Block start time (IMAP), seconds</xtce:ShortDescription>
|
|
88
|
+
<xtce:LongDescription>Start time, seconds field, of the histogram block. Specified as a number of IMAP seconds (since start from IMAP epoch as defined in GI ICD).</xtce:LongDescription>
|
|
89
|
+
</xtce:Parameter>
|
|
90
|
+
<xtce:Parameter name="SUBSEC" parameterTypeRef="UINT24">
|
|
91
|
+
<xtce:ShortDescription>Block start time (IMAP), subseconds</xtce:ShortDescription>
|
|
92
|
+
<xtce:LongDescription>Start time, subseconds field, of the histogram block. This value is obtained in linear interpolation from PPS data and is converted to internal SCIENCE format, where Subseconds timer wraps at 2000000 (2MHz counter).</xtce:LongDescription>
|
|
93
|
+
</xtce:Parameter>
|
|
94
|
+
<xtce:Parameter name="OFFSETSEC" parameterTypeRef="UINT16">
|
|
95
|
+
<xtce:ShortDescription>Block end time (IMAP), seconds</xtce:ShortDescription>
|
|
96
|
+
<xtce:LongDescription>Stop time, seconds field, of the histogram block, offset. Specified as a number of IMAP seconds (since start time of the histogram block).</xtce:LongDescription>
|
|
97
|
+
</xtce:Parameter>
|
|
98
|
+
<xtce:Parameter name="OFFSETSUBSEC" parameterTypeRef="UINT24">
|
|
99
|
+
<xtce:ShortDescription>Block end time (IMAP), subseconds</xtce:ShortDescription>
|
|
100
|
+
<xtce:LongDescription>Stop time, subseconds field, of the histogram block, offset. This value is obtained in linear interpolation from PPS data and is converted to internal SCIENCE format, where Subseconds timer wraps at 2000000 (2MHz counter).</xtce:LongDescription>
|
|
101
|
+
</xtce:Parameter>
|
|
102
|
+
<xtce:Parameter name="GLXSEC" parameterTypeRef="INT32">
|
|
103
|
+
<xtce:ShortDescription>Block start time (GLOWS), seconds</xtce:ShortDescription>
|
|
104
|
+
<xtce:LongDescription>Start time, seconds field, of the histogram block. Specified as a number of seconds (since start from IMAP epoch as defined in GI ICD). Value based on readouts from internal SCIENCE timer which is synchronized to IMAP only on power on/reset</xtce:LongDescription>
|
|
105
|
+
</xtce:Parameter>
|
|
106
|
+
<xtce:Parameter name="GLXSUBSEC" parameterTypeRef="UINT24">
|
|
107
|
+
<xtce:ShortDescription>Block start time (GLOWS), Subseconds</xtce:ShortDescription>
|
|
108
|
+
<xtce:LongDescription>Start time, subseconds field, of the histogram block. Value read from internal SCIENCE timer. Subseconds timer wraps at 2000000 (2MHz counter).</xtce:LongDescription>
|
|
109
|
+
</xtce:Parameter>
|
|
110
|
+
<xtce:Parameter name="GLXOFFSEC" parameterTypeRef="UINT16">
|
|
111
|
+
<xtce:ShortDescription>Block end time (GLOWS), seconds</xtce:ShortDescription>
|
|
112
|
+
<xtce:LongDescription>Stop time, seconds field, of the histogram block, offset. Specified as a number of IMAP seconds (since start from IMAP epoch as defined in GI ICD). Value based on readouts from internal SCIENCE timer, which is synchronized to IMAP clock only on power on/reset.</xtce:LongDescription>
|
|
113
|
+
</xtce:Parameter>
|
|
114
|
+
<xtce:Parameter name="GLXOFFSUBSEC" parameterTypeRef="UINT24">
|
|
115
|
+
<xtce:ShortDescription>Block end time (GLOWS), subseconds</xtce:ShortDescription>
|
|
116
|
+
<xtce:LongDescription>Stop time, subseconds field, of the histogram block, offset. Value read from internal SCIENCE timer. Subseconds timers wraps at 2000000 (2MHz counter).</xtce:LongDescription>
|
|
117
|
+
</xtce:Parameter>
|
|
118
|
+
<xtce:Parameter name="SPINS" parameterTypeRef="UINT8">
|
|
119
|
+
<xtce:ShortDescription>Number of spins</xtce:ShortDescription>
|
|
120
|
+
<xtce:LongDescription>Number of spins the SCIENCE block (histogram) is composed of minus 1 (0 - 1 spins, 1 - 2 spins, ...)</xtce:LongDescription>
|
|
121
|
+
</xtce:Parameter>
|
|
122
|
+
<xtce:Parameter name="NBINS" parameterTypeRef="UINT16">
|
|
123
|
+
<xtce:ShortDescription>Number of bins</xtce:ShortDescription>
|
|
124
|
+
<xtce:LongDescription>Number of bins the SCIENCE histogram is composed of.</xtce:LongDescription>
|
|
125
|
+
</xtce:Parameter>
|
|
126
|
+
<xtce:Parameter name="TEMPAVG" parameterTypeRef="UINT8">
|
|
127
|
+
<xtce:ShortDescription>Mean filter temperature </xtce:ShortDescription>
|
|
128
|
+
<xtce:LongDescription>Average GLOWS Optical filter temperature observed during data collection for transmitted histograms.</xtce:LongDescription>
|
|
129
|
+
</xtce:Parameter>
|
|
130
|
+
<xtce:Parameter name="TEMPVAR" parameterTypeRef="UINT16">
|
|
131
|
+
<xtce:ShortDescription>Variance of filter temperature </xtce:ShortDescription>
|
|
132
|
+
<xtce:LongDescription>Variance observed on the GLOWS Optical filter temperature during data collection for transmitted histograms.</xtce:LongDescription>
|
|
133
|
+
</xtce:Parameter>
|
|
134
|
+
<xtce:Parameter name="HVAVG" parameterTypeRef="UINT16">
|
|
135
|
+
<xtce:ShortDescription>Mean CEM voltage</xtce:ShortDescription>
|
|
136
|
+
<xtce:LongDescription>Average CEM High Voltage bias observed during data collection for transmitted histograms.</xtce:LongDescription>
|
|
137
|
+
</xtce:Parameter>
|
|
138
|
+
<xtce:Parameter name="HVVAR" parameterTypeRef="INT32">
|
|
139
|
+
<xtce:ShortDescription>Variance of CEM voltage </xtce:ShortDescription>
|
|
140
|
+
<xtce:LongDescription>Variance observed on the CEM High Voltage bias during data collection for transmitted histograms.</xtce:LongDescription>
|
|
141
|
+
</xtce:Parameter>
|
|
142
|
+
<xtce:Parameter name="SPAVG" parameterTypeRef="UINT16">
|
|
143
|
+
<xtce:ShortDescription>Mean spin period </xtce:ShortDescription>
|
|
144
|
+
<xtce:LongDescription>Average spin period observed during data collection for transmitted histograms.</xtce:LongDescription>
|
|
145
|
+
</xtce:Parameter>
|
|
146
|
+
<xtce:Parameter name="SPVAR" parameterTypeRef="INT32">
|
|
147
|
+
<xtce:ShortDescription>Variance of spin period </xtce:ShortDescription>
|
|
148
|
+
<xtce:LongDescription>Variance observed on the spin period during data collection for transmitted histograms.</xtce:LongDescription>
|
|
149
|
+
</xtce:Parameter>
|
|
150
|
+
<xtce:Parameter name="ELAVG" parameterTypeRef="UINT8">
|
|
151
|
+
<xtce:ShortDescription>Mean length of event impulse</xtce:ShortDescription>
|
|
152
|
+
<xtce:LongDescription>Average event length observed during data collection for transmitted histograms.</xtce:LongDescription>
|
|
153
|
+
</xtce:Parameter>
|
|
154
|
+
<xtce:Parameter name="ELVAR" parameterTypeRef="UINT16">
|
|
155
|
+
<xtce:ShortDescription>Variance of event-impulse length</xtce:ShortDescription>
|
|
156
|
+
<xtce:LongDescription>Variance observed on the event length during data collection for transmitted histograms.</xtce:LongDescription>
|
|
157
|
+
</xtce:Parameter>
|
|
158
|
+
<xtce:Parameter name="EVENTS" parameterTypeRef="UINT32">
|
|
159
|
+
<xtce:ShortDescription>Number of events</xtce:ShortDescription>
|
|
160
|
+
<xtce:LongDescription>Number of event in all bins (sum) of this histogram.</xtce:LongDescription>
|
|
161
|
+
</xtce:Parameter>
|
|
162
|
+
<xtce:Parameter name="HISTOGRAM_DATA" parameterTypeRef="BYTE28800">
|
|
163
|
+
<xtce:ShortDescription>Histogram Counts</xtce:ShortDescription>
|
|
164
|
+
<xtce:LongDescription>Total histogram data counts. Each bin has 8 bits of data, with 3600 total bins.</xtce:LongDescription>
|
|
165
|
+
</xtce:Parameter>
|
|
166
|
+
</xtce:ParameterSet>
|
|
167
|
+
<xtce:ContainerSet>
|
|
168
|
+
<xtce:SequenceContainer name="CCSDSPacket">
|
|
169
|
+
<xtce:EntryList>
|
|
170
|
+
<xtce:ParameterRefEntry parameterRef="VERSION" />
|
|
171
|
+
<xtce:ParameterRefEntry parameterRef="TYPE" />
|
|
172
|
+
<xtce:ParameterRefEntry parameterRef="SEC_HDR_FLG" />
|
|
173
|
+
<xtce:ParameterRefEntry parameterRef="PKT_APID" />
|
|
174
|
+
<xtce:ParameterRefEntry parameterRef="SEQ_FLGS" />
|
|
175
|
+
<xtce:ParameterRefEntry parameterRef="SRC_SEQ_CTR" />
|
|
176
|
+
<xtce:ParameterRefEntry parameterRef="PKT_LEN" />
|
|
177
|
+
</xtce:EntryList>
|
|
178
|
+
</xtce:SequenceContainer>
|
|
179
|
+
<xtce:SequenceContainer name="P_GLX_TMSCHIST">
|
|
180
|
+
<xtce:BaseContainer containerRef="CCSDSPacket">
|
|
181
|
+
<xtce:RestrictionCriteria>
|
|
182
|
+
<xtce:Comparison parameterRef="PKT_APID" value="1480" useCalibratedValue="false" />
|
|
183
|
+
</xtce:RestrictionCriteria>
|
|
184
|
+
</xtce:BaseContainer>
|
|
185
|
+
<xtce:EntryList>
|
|
186
|
+
<xtce:ParameterRefEntry parameterRef="MET" />
|
|
187
|
+
<xtce:ParameterRefEntry parameterRef="STARTID" />
|
|
188
|
+
<xtce:ParameterRefEntry parameterRef="ENDID" />
|
|
189
|
+
<xtce:ParameterRefEntry parameterRef="FLAGS" />
|
|
190
|
+
<xtce:ParameterRefEntry parameterRef="SWVER" />
|
|
191
|
+
<xtce:ParameterRefEntry parameterRef="SEC" />
|
|
192
|
+
<xtce:ParameterRefEntry parameterRef="SUBSEC" />
|
|
193
|
+
<xtce:ParameterRefEntry parameterRef="OFFSETSEC" />
|
|
194
|
+
<xtce:ParameterRefEntry parameterRef="OFFSETSUBSEC" />
|
|
195
|
+
<xtce:ParameterRefEntry parameterRef="GLXSEC" />
|
|
196
|
+
<xtce:ParameterRefEntry parameterRef="GLXSUBSEC" />
|
|
197
|
+
<xtce:ParameterRefEntry parameterRef="GLXOFFSEC" />
|
|
198
|
+
<xtce:ParameterRefEntry parameterRef="GLXOFFSUBSEC" />
|
|
199
|
+
<xtce:ParameterRefEntry parameterRef="SPINS" />
|
|
200
|
+
<xtce:ParameterRefEntry parameterRef="NBINS" />
|
|
201
|
+
<xtce:ParameterRefEntry parameterRef="TEMPAVG" />
|
|
202
|
+
<xtce:ParameterRefEntry parameterRef="TEMPVAR" />
|
|
203
|
+
<xtce:ParameterRefEntry parameterRef="HVAVG" />
|
|
204
|
+
<xtce:ParameterRefEntry parameterRef="HVVAR" />
|
|
205
|
+
<xtce:ParameterRefEntry parameterRef="SPAVG" />
|
|
206
|
+
<xtce:ParameterRefEntry parameterRef="SPVAR" />
|
|
207
|
+
<xtce:ParameterRefEntry parameterRef="ELAVG" />
|
|
208
|
+
<xtce:ParameterRefEntry parameterRef="ELVAR" />
|
|
209
|
+
<xtce:ParameterRefEntry parameterRef="EVENTS" />
|
|
210
|
+
<xtce:ParameterRefEntry parameterRef="HISTOGRAM_DATA" />
|
|
211
|
+
</xtce:EntryList>
|
|
212
|
+
</xtce:SequenceContainer>
|
|
213
|
+
</xtce:ContainerSet>
|
|
214
|
+
</xtce:TelemetryMetaData>
|
|
215
|
+
</xtce:SpaceSystem>
|
|
File without changes
|