imap-processing 0.12.0__py3-none-any.whl → 0.13.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.
Potentially problematic release.
This version of imap-processing might be problematic. Click here for more details.
- imap_processing/__init__.py +1 -0
- imap_processing/_version.py +2 -2
- imap_processing/ccsds/ccsds_data.py +1 -2
- imap_processing/ccsds/excel_to_xtce.py +1 -2
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +18 -12
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +569 -0
- imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +1846 -128
- imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +5 -5
- imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +20 -1
- imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +6 -4
- imap_processing/cdf/config/imap_idex_l1b_variable_attrs.yaml +3 -3
- imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +15 -0
- imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +22 -0
- imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +16 -0
- imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +178 -5
- imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +5045 -41
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +33 -19
- imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +8 -48
- imap_processing/cdf/utils.py +41 -33
- imap_processing/cli.py +463 -234
- imap_processing/codice/codice_l1a.py +260 -47
- imap_processing/codice/codice_l1b.py +51 -152
- imap_processing/codice/constants.py +38 -1
- imap_processing/ena_maps/ena_maps.py +658 -65
- imap_processing/ena_maps/utils/coordinates.py +1 -1
- imap_processing/ena_maps/utils/spatial_utils.py +10 -5
- imap_processing/glows/l1a/glows_l1a.py +28 -99
- imap_processing/glows/l1a/glows_l1a_data.py +2 -2
- imap_processing/glows/l1b/glows_l1b.py +1 -4
- imap_processing/glows/l1b/glows_l1b_data.py +1 -3
- imap_processing/glows/l2/glows_l2.py +2 -5
- imap_processing/hi/l1a/hi_l1a.py +31 -12
- imap_processing/hi/l1b/hi_l1b.py +80 -43
- imap_processing/hi/l1c/hi_l1c.py +12 -16
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-sector-dt0-factors_20250219_v002.csv +81 -0
- imap_processing/hit/hit_utils.py +93 -35
- imap_processing/hit/l0/decom_hit.py +3 -1
- imap_processing/hit/l1a/hit_l1a.py +30 -25
- imap_processing/hit/l1b/constants.py +6 -2
- imap_processing/hit/l1b/hit_l1b.py +279 -318
- imap_processing/hit/l2/constants.py +37 -0
- imap_processing/hit/l2/hit_l2.py +373 -264
- imap_processing/ialirt/l0/parse_mag.py +138 -10
- imap_processing/ialirt/l0/process_swapi.py +69 -0
- imap_processing/ialirt/l0/process_swe.py +318 -22
- imap_processing/ialirt/packet_definitions/ialirt.xml +216 -212
- imap_processing/ialirt/packet_definitions/ialirt_codicehi.xml +1 -1
- imap_processing/ialirt/packet_definitions/ialirt_codicelo.xml +1 -1
- imap_processing/ialirt/packet_definitions/ialirt_swapi.xml +14 -14
- imap_processing/ialirt/utils/grouping.py +1 -1
- imap_processing/idex/idex_constants.py +9 -1
- imap_processing/idex/idex_l0.py +22 -8
- imap_processing/idex/idex_l1a.py +75 -44
- imap_processing/idex/idex_l1b.py +9 -8
- imap_processing/idex/idex_l2a.py +79 -45
- imap_processing/idex/idex_l2b.py +120 -0
- imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +33 -39
- imap_processing/idex/packet_definitions/idex_housekeeping_packet_definition.xml +9130 -0
- imap_processing/lo/l0/lo_science.py +1 -2
- imap_processing/lo/l1a/lo_l1a.py +1 -4
- imap_processing/lo/l1b/lo_l1b.py +527 -6
- imap_processing/lo/l1b/tof_conversions.py +11 -0
- imap_processing/lo/l1c/lo_l1c.py +1 -4
- imap_processing/mag/constants.py +43 -0
- imap_processing/mag/imap_mag_sdc_configuration_v001.py +8 -0
- imap_processing/mag/l1a/mag_l1a.py +2 -9
- imap_processing/mag/l1a/mag_l1a_data.py +10 -10
- imap_processing/mag/l1b/mag_l1b.py +84 -17
- imap_processing/mag/l1c/interpolation_methods.py +180 -3
- imap_processing/mag/l1c/mag_l1c.py +236 -70
- imap_processing/mag/l2/mag_l2.py +140 -0
- imap_processing/mag/l2/mag_l2_data.py +288 -0
- imap_processing/spacecraft/quaternions.py +1 -3
- imap_processing/spice/geometry.py +3 -3
- imap_processing/spice/kernels.py +0 -276
- imap_processing/spice/pointing_frame.py +257 -0
- imap_processing/spice/repoint.py +48 -19
- imap_processing/spice/spin.py +38 -33
- imap_processing/spice/time.py +24 -0
- imap_processing/swapi/l1/swapi_l1.py +16 -12
- imap_processing/swapi/l2/swapi_l2.py +116 -4
- imap_processing/swapi/swapi_utils.py +32 -0
- imap_processing/swe/l1a/swe_l1a.py +2 -9
- imap_processing/swe/l1a/swe_science.py +8 -11
- imap_processing/swe/l1b/swe_l1b.py +898 -23
- imap_processing/swe/l2/swe_l2.py +21 -77
- imap_processing/swe/utils/swe_constants.py +1 -0
- imap_processing/tests/ccsds/test_excel_to_xtce.py +1 -1
- imap_processing/tests/cdf/test_utils.py +14 -16
- imap_processing/tests/codice/conftest.py +44 -33
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-pha_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-pha_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/test_codice_l1a.py +20 -11
- imap_processing/tests/codice/test_codice_l1b.py +6 -7
- imap_processing/tests/conftest.py +78 -22
- imap_processing/tests/ena_maps/test_ena_maps.py +462 -33
- imap_processing/tests/ena_maps/test_spatial_utils.py +1 -1
- imap_processing/tests/glows/conftest.py +10 -14
- imap_processing/tests/glows/test_glows_decom.py +4 -4
- imap_processing/tests/glows/test_glows_l1a_cdf.py +6 -27
- imap_processing/tests/glows/test_glows_l1a_data.py +6 -8
- imap_processing/tests/glows/test_glows_l1b.py +11 -11
- imap_processing/tests/glows/test_glows_l1b_data.py +5 -5
- imap_processing/tests/glows/test_glows_l2.py +2 -8
- imap_processing/tests/hi/conftest.py +1 -1
- imap_processing/tests/hi/test_hi_l1b.py +10 -12
- imap_processing/tests/hi/test_hi_l1c.py +27 -24
- imap_processing/tests/hi/test_l1a.py +7 -9
- imap_processing/tests/hi/test_science_direct_event.py +2 -2
- imap_processing/tests/hit/helpers/l1_validation.py +44 -43
- imap_processing/tests/hit/test_decom_hit.py +1 -1
- imap_processing/tests/hit/test_hit_l1a.py +9 -9
- imap_processing/tests/hit/test_hit_l1b.py +172 -217
- imap_processing/tests/hit/test_hit_l2.py +380 -118
- imap_processing/tests/hit/test_hit_utils.py +122 -55
- imap_processing/tests/hit/validation_data/hit_l1b_standard_sample2_nsrl_v4_3decimals.csv +62 -62
- imap_processing/tests/hit/validation_data/sci_sample_raw.csv +1 -1
- imap_processing/tests/ialirt/unit/test_decom_ialirt.py +16 -81
- imap_processing/tests/ialirt/unit/test_grouping.py +2 -2
- imap_processing/tests/ialirt/unit/test_parse_mag.py +71 -16
- imap_processing/tests/ialirt/unit/test_process_codicehi.py +3 -3
- imap_processing/tests/ialirt/unit/test_process_codicelo.py +3 -10
- imap_processing/tests/ialirt/unit/test_process_ephemeris.py +4 -4
- imap_processing/tests/ialirt/unit/test_process_hit.py +3 -3
- imap_processing/tests/ialirt/unit/test_process_swapi.py +24 -16
- imap_processing/tests/ialirt/unit/test_process_swe.py +115 -7
- imap_processing/tests/idex/conftest.py +72 -7
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20241206_v001.pkts +0 -0
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20250108_v001.pkts +0 -0
- imap_processing/tests/idex/test_idex_l0.py +33 -11
- imap_processing/tests/idex/test_idex_l1a.py +50 -23
- imap_processing/tests/idex/test_idex_l1b.py +104 -25
- imap_processing/tests/idex/test_idex_l2a.py +48 -32
- imap_processing/tests/idex/test_idex_l2b.py +93 -0
- imap_processing/tests/lo/test_lo_l1a.py +3 -3
- imap_processing/tests/lo/test_lo_l1b.py +371 -6
- imap_processing/tests/lo/test_lo_l1c.py +1 -1
- imap_processing/tests/lo/test_lo_science.py +6 -7
- imap_processing/tests/lo/test_star_sensor.py +1 -1
- imap_processing/tests/mag/conftest.py +58 -9
- imap_processing/tests/mag/test_mag_decom.py +4 -3
- imap_processing/tests/mag/test_mag_l1a.py +13 -7
- imap_processing/tests/mag/test_mag_l1b.py +9 -9
- imap_processing/tests/mag/test_mag_l1c.py +151 -47
- imap_processing/tests/mag/test_mag_l2.py +130 -0
- imap_processing/tests/mag/test_mag_validation.py +144 -7
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-out.csv +1857 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-out.csv +1857 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-out.csv +1793 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-out.csv +1793 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-burst-in.csv +2561 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-in.csv +961 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-out.csv +1539 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-in.csv +1921 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-out.csv +2499 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-in.csv +865 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-out.csv +1196 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-in.csv +1729 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-out.csv +3053 -0
- imap_processing/tests/mag/validation/L2/imap_mag_l1b_norm-mago_20251017_v002.cdf +0 -0
- imap_processing/tests/mag/validation/calibration/imap_mag_l2-calibration-matrices_20251017_v004.cdf +0 -0
- imap_processing/tests/mag/validation/calibration/imap_mag_l2-offsets-norm_20251017_20251017_v001.cdf +0 -0
- imap_processing/tests/spacecraft/test_quaternions.py +1 -1
- imap_processing/tests/spice/test_data/fake_repoint_data.csv +4 -4
- imap_processing/tests/spice/test_data/fake_spin_data.csv +11 -11
- imap_processing/tests/spice/test_geometry.py +3 -3
- imap_processing/tests/spice/test_kernels.py +1 -200
- imap_processing/tests/spice/test_pointing_frame.py +185 -0
- imap_processing/tests/spice/test_repoint.py +20 -10
- imap_processing/tests/spice/test_spin.py +50 -9
- imap_processing/tests/spice/test_time.py +14 -0
- imap_processing/tests/swapi/lut/imap_swapi_esa-unit-conversion_20250211_v000.csv +73 -0
- imap_processing/tests/swapi/lut/imap_swapi_lut-notes_20250211_v000.csv +1025 -0
- imap_processing/tests/swapi/test_swapi_l1.py +7 -9
- imap_processing/tests/swapi/test_swapi_l2.py +180 -8
- imap_processing/tests/swe/lut/checker-board-indices.csv +24 -0
- imap_processing/tests/swe/lut/imap_swe_esa-lut_20250301_v000.csv +385 -0
- imap_processing/tests/swe/lut/imap_swe_l1b-in-flight-cal_20240510_20260716_v000.csv +3 -0
- imap_processing/tests/swe/test_swe_l1a.py +6 -6
- imap_processing/tests/swe/test_swe_l1a_science.py +3 -3
- imap_processing/tests/swe/test_swe_l1b.py +162 -24
- imap_processing/tests/swe/test_swe_l2.py +82 -102
- imap_processing/tests/test_cli.py +171 -88
- imap_processing/tests/test_utils.py +2 -1
- imap_processing/tests/ultra/data/mock_data.py +49 -21
- imap_processing/tests/ultra/unit/conftest.py +53 -70
- imap_processing/tests/ultra/unit/test_badtimes.py +2 -4
- imap_processing/tests/ultra/unit/test_cullingmask.py +4 -6
- imap_processing/tests/ultra/unit/test_de.py +3 -10
- imap_processing/tests/ultra/unit/test_decom_apid_880.py +27 -76
- imap_processing/tests/ultra/unit/test_decom_apid_881.py +15 -16
- imap_processing/tests/ultra/unit/test_decom_apid_883.py +12 -10
- imap_processing/tests/ultra/unit/test_decom_apid_896.py +202 -55
- imap_processing/tests/ultra/unit/test_lookup_utils.py +23 -1
- imap_processing/tests/ultra/unit/test_spacecraft_pset.py +3 -4
- imap_processing/tests/ultra/unit/test_ultra_l1a.py +84 -307
- imap_processing/tests/ultra/unit/test_ultra_l1b.py +30 -12
- imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +2 -2
- imap_processing/tests/ultra/unit/test_ultra_l1b_culling.py +4 -1
- imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +163 -29
- imap_processing/tests/ultra/unit/test_ultra_l1c.py +5 -5
- imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +32 -43
- imap_processing/tests/ultra/unit/test_ultra_l2.py +230 -0
- imap_processing/ultra/constants.py +1 -1
- imap_processing/ultra/l0/decom_tools.py +21 -34
- imap_processing/ultra/l0/decom_ultra.py +168 -204
- imap_processing/ultra/l0/ultra_utils.py +152 -136
- imap_processing/ultra/l1a/ultra_l1a.py +55 -243
- imap_processing/ultra/l1b/badtimes.py +1 -4
- imap_processing/ultra/l1b/cullingmask.py +2 -6
- imap_processing/ultra/l1b/de.py +62 -47
- imap_processing/ultra/l1b/extendedspin.py +8 -4
- imap_processing/ultra/l1b/lookup_utils.py +72 -9
- imap_processing/ultra/l1b/ultra_l1b.py +3 -8
- imap_processing/ultra/l1b/ultra_l1b_culling.py +4 -4
- imap_processing/ultra/l1b/ultra_l1b_extended.py +236 -78
- imap_processing/ultra/l1c/histogram.py +2 -6
- imap_processing/ultra/l1c/spacecraft_pset.py +2 -4
- imap_processing/ultra/l1c/ultra_l1c.py +1 -5
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +107 -60
- imap_processing/ultra/l2/ultra_l2.py +299 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_LeftSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_RightSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_LeftSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_RightSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -2
- imap_processing/ultra/lookup_tables/FM90_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -0
- imap_processing/ultra/packet_definitions/README.md +38 -0
- imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +15302 -482
- imap_processing/ultra/utils/ultra_l1_utils.py +13 -12
- imap_processing/utils.py +1 -1
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/METADATA +3 -2
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/RECORD +264 -225
- imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +0 -154
- imap_processing/mag/imap_mag_sdc-configuration_v001.yaml +0 -6
- imap_processing/mag/l1b/__init__.py +0 -0
- imap_processing/swe/l1b/swe_esa_lookup_table.csv +0 -1441
- imap_processing/swe/l1b/swe_l1b_science.py +0 -699
- imap_processing/tests/swe/test_swe_l1b_science.py +0 -103
- imap_processing/ultra/lookup_tables/dps_sensitivity45.cdf +0 -0
- imap_processing/ultra/lookup_tables/ultra_90_dps_exposure_compressed.cdf +0 -0
- /imap_processing/idex/packet_definitions/{idex_packet_definition.xml → idex_science_packet_definition.xml} +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/20240827095047_SWE_IALIRT_packet.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971383-404.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971384-405.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971385-406.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971386-407.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971387-408.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971388-409.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971389-410.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971390-411.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971391-412.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/BinLog CCSDS_FRAG_TLM_20240826_152323Z_IALIRT_data_for_SDC.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/IALiRT Raw Packet Telemetry.txt +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/apid01152.tlm +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/eu_SWP_IAL_20240826_152033.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hi_fsw_view_1_ccsds.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.ccsds +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/idle_export_eu.SWE_IALIRT_20240827_093852.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_hi-ialirt_20240523200000_v0.0.0.cdf +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/sample_decoded_i-alirt_data.csv +0 -0
- /imap_processing/tests/mag/validation/{imap_calibration_mag_20240229_v01.cdf → calibration/imap_mag_l1b-calibration_20240229_v001.cdf} +0 -0
- /imap_processing/{swe/l1b/engineering_unit_convert_table.csv → tests/swe/lut/imap_swe_eu-conversion_20240510_v000.csv} +0 -0
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/LICENSE +0 -0
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/WHEEL +0 -0
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/entry_points.txt +0 -0
|
@@ -326,159 +326,65 @@
|
|
|
326
326
|
<xtce:LongDescription>Spare 3</xtce:LongDescription>
|
|
327
327
|
</xtce:Parameter>
|
|
328
328
|
<!-- Spacecraft -->
|
|
329
|
-
<!--
|
|
330
|
-
<xtce:Parameter name="
|
|
331
|
-
<xtce:LongDescription>
|
|
332
|
-
</xtce:Parameter>
|
|
333
|
-
<xtce:Parameter name="SWE_ACQ_SUB" parameterTypeRef="uint24">
|
|
334
|
-
<xtce:LongDescription>SWE Acquisition Time (sub sec)</xtce:LongDescription>
|
|
335
|
-
</xtce:Parameter>
|
|
336
|
-
<xtce:Parameter name="SWE_NOM_FLAG" parameterTypeRef="instrument_status">
|
|
337
|
-
<xtce:LongDescription>1 = nominal, 0 = off-nominal</xtce:LongDescription>
|
|
338
|
-
</xtce:Parameter>
|
|
339
|
-
<xtce:Parameter name="SWE_OPS_FLAG" parameterTypeRef="swe_ops_flag">
|
|
340
|
-
<xtce:LongDescription>1 = HVSCI mode, 0 = not HVSCI mode</xtce:LongDescription>
|
|
341
|
-
</xtce:Parameter>
|
|
342
|
-
<xtce:Parameter name="SWE_SEQ" parameterTypeRef="uint6">
|
|
343
|
-
<xtce:LongDescription>Sequence Number corresponds to 15 2-spin sectors times 4 sets.</xtce:LongDescription>
|
|
344
|
-
</xtce:Parameter>
|
|
345
|
-
<xtce:Parameter name="SWE_CEM1_E1" parameterTypeRef="uint8">
|
|
346
|
-
<xtce:LongDescription>Electron counts for CEM1 energy 1.</xtce:LongDescription>
|
|
347
|
-
</xtce:Parameter>
|
|
348
|
-
<xtce:Parameter name="SWE_CEM1_E2" parameterTypeRef="uint8">
|
|
349
|
-
<xtce:LongDescription>Electron counts for CEM1 energy 2.</xtce:LongDescription>
|
|
350
|
-
</xtce:Parameter>
|
|
351
|
-
<xtce:Parameter name="SWE_CEM1_E3" parameterTypeRef="uint8">
|
|
352
|
-
<xtce:LongDescription>Electron counts for CEM1 energy 3.</xtce:LongDescription>
|
|
353
|
-
</xtce:Parameter>
|
|
354
|
-
<xtce:Parameter name="SWE_CEM1_E4" parameterTypeRef="uint8">
|
|
355
|
-
<xtce:LongDescription>Electron counts for CEM1 energy 4.</xtce:LongDescription>
|
|
356
|
-
</xtce:Parameter>
|
|
357
|
-
<xtce:Parameter name="SWE_CEM2_E1" parameterTypeRef="uint8">
|
|
358
|
-
<xtce:LongDescription>Electron counts for CEM2 energy 1.</xtce:LongDescription>
|
|
359
|
-
</xtce:Parameter>
|
|
360
|
-
<xtce:Parameter name="SWE_CEM2_E2" parameterTypeRef="uint8">
|
|
361
|
-
<xtce:LongDescription>Electron counts for CEM2 energy 2.</xtce:LongDescription>
|
|
362
|
-
</xtce:Parameter>
|
|
363
|
-
<xtce:Parameter name="SWE_CEM2_E3" parameterTypeRef="uint8">
|
|
364
|
-
<xtce:LongDescription>Electron counts for CEM2 energy 3.</xtce:LongDescription>
|
|
365
|
-
</xtce:Parameter>
|
|
366
|
-
<xtce:Parameter name="SWE_CEM2_E4" parameterTypeRef="uint8">
|
|
367
|
-
<xtce:LongDescription>Electron counts for CEM2 energy 4.</xtce:LongDescription>
|
|
368
|
-
</xtce:Parameter>
|
|
369
|
-
<xtce:Parameter name="SWE_CEM3_E1" parameterTypeRef="uint8">
|
|
370
|
-
<xtce:LongDescription>Electron counts for CEM3 energy 1.</xtce:LongDescription>
|
|
371
|
-
</xtce:Parameter>
|
|
372
|
-
<xtce:Parameter name="SWE_CEM3_E2" parameterTypeRef="uint8">
|
|
373
|
-
<xtce:LongDescription>Electron counts for CEM3 energy 2.</xtce:LongDescription>
|
|
374
|
-
</xtce:Parameter>
|
|
375
|
-
<xtce:Parameter name="SWE_CEM3_E3" parameterTypeRef="uint8">
|
|
376
|
-
<xtce:LongDescription>Electron counts for CEM3 energy 3.</xtce:LongDescription>
|
|
377
|
-
</xtce:Parameter>
|
|
378
|
-
<xtce:Parameter name="SWE_CEM3_E4" parameterTypeRef="uint8">
|
|
379
|
-
<xtce:LongDescription>Electron counts for CEM3 energy 4.</xtce:LongDescription>
|
|
380
|
-
</xtce:Parameter>
|
|
381
|
-
<xtce:Parameter name="SWE_CEM4_E1" parameterTypeRef="uint8">
|
|
382
|
-
<xtce:LongDescription>Electron counts for CEM4 energy 1.</xtce:LongDescription>
|
|
383
|
-
</xtce:Parameter>
|
|
384
|
-
<xtce:Parameter name="SWE_CEM4_E2" parameterTypeRef="uint8">
|
|
385
|
-
<xtce:LongDescription>Electron counts for CEM4 energy 2.</xtce:LongDescription>
|
|
386
|
-
</xtce:Parameter>
|
|
387
|
-
<xtce:Parameter name="SWE_CEM4_E3" parameterTypeRef="uint8">
|
|
388
|
-
<xtce:LongDescription>Electron counts for CEM4 energy 3.</xtce:LongDescription>
|
|
389
|
-
</xtce:Parameter>
|
|
390
|
-
<xtce:Parameter name="SWE_CEM4_E4" parameterTypeRef="uint8">
|
|
391
|
-
<xtce:LongDescription>Electron counts for CEM4 energy 4.</xtce:LongDescription>
|
|
392
|
-
</xtce:Parameter>
|
|
393
|
-
<xtce:Parameter name="SWE_CEM5_E1" parameterTypeRef="uint8">
|
|
394
|
-
<xtce:LongDescription>Electron counts for CEM5 energy 1.</xtce:LongDescription>
|
|
395
|
-
</xtce:Parameter>
|
|
396
|
-
<xtce:Parameter name="SWE_CEM5_E2" parameterTypeRef="uint8">
|
|
397
|
-
<xtce:LongDescription>Electron counts for CEM5 energy 2.</xtce:LongDescription>
|
|
398
|
-
</xtce:Parameter>
|
|
399
|
-
<xtce:Parameter name="SWE_CEM5_E3" parameterTypeRef="uint8">
|
|
400
|
-
<xtce:LongDescription>Electron counts for CEM5 energy 3.</xtce:LongDescription>
|
|
401
|
-
</xtce:Parameter>
|
|
402
|
-
<xtce:Parameter name="SWE_CEM5_E4" parameterTypeRef="uint8">
|
|
403
|
-
<xtce:LongDescription>Electron counts for CEM5 energy 4.</xtce:LongDescription>
|
|
404
|
-
</xtce:Parameter>
|
|
405
|
-
<xtce:Parameter name="SWE_CEM6_E1" parameterTypeRef="uint8">
|
|
406
|
-
<xtce:LongDescription>Electron counts for CEM6 energy 1.</xtce:LongDescription>
|
|
407
|
-
</xtce:Parameter>
|
|
408
|
-
<xtce:Parameter name="SWE_CEM6_E2" parameterTypeRef="uint8">
|
|
409
|
-
<xtce:LongDescription>Electron counts for CEM6 energy 2.</xtce:LongDescription>
|
|
410
|
-
</xtce:Parameter>
|
|
411
|
-
<xtce:Parameter name="SWE_CEM6_E3" parameterTypeRef="uint8">
|
|
412
|
-
<xtce:LongDescription>Electron counts for CEM6 energy 3.</xtce:LongDescription>
|
|
413
|
-
</xtce:Parameter>
|
|
414
|
-
<xtce:Parameter name="SWE_CEM6_E4" parameterTypeRef="uint8">
|
|
415
|
-
<xtce:LongDescription>Electron counts for CEM6 energy 4.</xtce:LongDescription>
|
|
416
|
-
</xtce:Parameter>
|
|
417
|
-
<xtce:Parameter name="SWE_CEM7_E1" parameterTypeRef="uint8">
|
|
418
|
-
<xtce:LongDescription>Electron counts for CEM7 energy 1.</xtce:LongDescription>
|
|
419
|
-
</xtce:Parameter>
|
|
420
|
-
<xtce:Parameter name="SWE_CEM7_E2" parameterTypeRef="uint8">
|
|
421
|
-
<xtce:LongDescription>Electron counts for CEM7 energy 2.</xtce:LongDescription>
|
|
329
|
+
<!-- CoDICE LO -->
|
|
330
|
+
<xtce:Parameter name="COD_LO_ACQ" parameterTypeRef="uint32">
|
|
331
|
+
<xtce:LongDescription>CODICE LO Acquisition Time</xtce:LongDescription>
|
|
422
332
|
</xtce:Parameter>
|
|
423
|
-
<xtce:Parameter name="
|
|
424
|
-
<xtce:LongDescription>
|
|
333
|
+
<xtce:Parameter name="COD_LO_STATUS" parameterTypeRef="uint8">
|
|
334
|
+
<xtce:LongDescription>CODICE LO Status</xtce:LongDescription>
|
|
425
335
|
</xtce:Parameter>
|
|
426
|
-
<xtce:Parameter name="
|
|
427
|
-
<xtce:LongDescription>
|
|
336
|
+
<xtce:Parameter name="COD_LO_COUNTER" parameterTypeRef="uint8">
|
|
337
|
+
<xtce:LongDescription>CODICE LO Counter</xtce:LongDescription>
|
|
428
338
|
</xtce:Parameter>
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
<xtce:Parameter name="MAG_ACQ_TM_COARSE" parameterTypeRef="uint32">
|
|
432
|
-
<xtce:LongDescription>MAG Coarse Acquisition Time</xtce:LongDescription>
|
|
339
|
+
<xtce:Parameter name="COD_LO_DATA_00" parameterTypeRef="uint8">
|
|
340
|
+
<xtce:LongDescription>CODICE LO Data_00</xtce:LongDescription>
|
|
433
341
|
</xtce:Parameter>
|
|
434
|
-
<xtce:Parameter name="
|
|
435
|
-
<xtce:LongDescription>
|
|
342
|
+
<xtce:Parameter name="COD_LO_DATA_01" parameterTypeRef="uint8">
|
|
343
|
+
<xtce:LongDescription>CODICE LO Data_01</xtce:LongDescription>
|
|
436
344
|
</xtce:Parameter>
|
|
437
|
-
<xtce:Parameter name="
|
|
438
|
-
<xtce:LongDescription>
|
|
345
|
+
<xtce:Parameter name="COD_LO_DATA_02" parameterTypeRef="uint8">
|
|
346
|
+
<xtce:LongDescription>CODICE LO Data_02</xtce:LongDescription>
|
|
439
347
|
</xtce:Parameter>
|
|
440
|
-
<xtce:Parameter name="
|
|
441
|
-
<xtce:LongDescription>
|
|
348
|
+
<xtce:Parameter name="COD_LO_DATA_03" parameterTypeRef="uint8">
|
|
349
|
+
<xtce:LongDescription>CODICE LO Data_03</xtce:LongDescription>
|
|
442
350
|
</xtce:Parameter>
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
<xtce:Parameter name="SWAPI_ACQ" parameterTypeRef="uint32">
|
|
446
|
-
<xtce:LongDescription>SWAPI Acquisition Time</xtce:LongDescription>
|
|
351
|
+
<xtce:Parameter name="COD_LO_DATA_04" parameterTypeRef="uint8">
|
|
352
|
+
<xtce:LongDescription>CODICE LO Data_04</xtce:LongDescription>
|
|
447
353
|
</xtce:Parameter>
|
|
448
|
-
<xtce:Parameter name="
|
|
449
|
-
<xtce:LongDescription>
|
|
354
|
+
<xtce:Parameter name="COD_LO_DATA_05" parameterTypeRef="uint8">
|
|
355
|
+
<xtce:LongDescription>CODICE LO Data_05</xtce:LongDescription>
|
|
450
356
|
</xtce:Parameter>
|
|
451
|
-
<xtce:Parameter name="
|
|
452
|
-
<xtce:LongDescription>
|
|
357
|
+
<xtce:Parameter name="COD_LO_DATA_06" parameterTypeRef="uint8">
|
|
358
|
+
<xtce:LongDescription>CODICE LO Data_06</xtce:LongDescription>
|
|
453
359
|
</xtce:Parameter>
|
|
454
|
-
<xtce:Parameter name="
|
|
455
|
-
<xtce:LongDescription>
|
|
360
|
+
<xtce:Parameter name="COD_LO_DATA_07" parameterTypeRef="uint8">
|
|
361
|
+
<xtce:LongDescription>CODICE LO Data_07</xtce:LongDescription>
|
|
456
362
|
</xtce:Parameter>
|
|
457
|
-
<xtce:Parameter name="
|
|
458
|
-
<xtce:LongDescription>
|
|
363
|
+
<xtce:Parameter name="COD_LO_DATA_08" parameterTypeRef="uint8">
|
|
364
|
+
<xtce:LongDescription>CODICE LO Data_08</xtce:LongDescription>
|
|
459
365
|
</xtce:Parameter>
|
|
460
|
-
<xtce:Parameter name="
|
|
461
|
-
<xtce:LongDescription>
|
|
366
|
+
<xtce:Parameter name="COD_LO_DATA_09" parameterTypeRef="uint8">
|
|
367
|
+
<xtce:LongDescription>CODICE LO Data_09</xtce:LongDescription>
|
|
462
368
|
</xtce:Parameter>
|
|
463
|
-
<xtce:Parameter name="
|
|
464
|
-
<xtce:LongDescription>
|
|
369
|
+
<xtce:Parameter name="COD_LO_DATA_10" parameterTypeRef="uint8">
|
|
370
|
+
<xtce:LongDescription>CODICE LO Data_10</xtce:LongDescription>
|
|
465
371
|
</xtce:Parameter>
|
|
466
|
-
<xtce:Parameter name="
|
|
467
|
-
<xtce:LongDescription>
|
|
372
|
+
<xtce:Parameter name="COD_LO_DATA_11" parameterTypeRef="uint8">
|
|
373
|
+
<xtce:LongDescription>CODICE LO Data_11</xtce:LongDescription>
|
|
468
374
|
</xtce:Parameter>
|
|
469
|
-
<xtce:Parameter name="
|
|
470
|
-
<xtce:LongDescription>
|
|
375
|
+
<xtce:Parameter name="COD_LO_DATA_12" parameterTypeRef="uint8">
|
|
376
|
+
<xtce:LongDescription>CODICE LO Data_12</xtce:LongDescription>
|
|
471
377
|
</xtce:Parameter>
|
|
472
|
-
<xtce:Parameter name="
|
|
473
|
-
<xtce:LongDescription>
|
|
378
|
+
<xtce:Parameter name="COD_LO_DATA_13" parameterTypeRef="uint8">
|
|
379
|
+
<xtce:LongDescription>CODICE LO Data_13</xtce:LongDescription>
|
|
474
380
|
</xtce:Parameter>
|
|
475
|
-
<xtce:Parameter name="
|
|
476
|
-
<xtce:LongDescription>
|
|
381
|
+
<xtce:Parameter name="COD_LO_DATA_14" parameterTypeRef="uint8">
|
|
382
|
+
<xtce:LongDescription>CODICE LO Data_14</xtce:LongDescription>
|
|
477
383
|
</xtce:Parameter>
|
|
478
|
-
<xtce:Parameter name="
|
|
479
|
-
<xtce:LongDescription>Spare</xtce:LongDescription>
|
|
384
|
+
<xtce:Parameter name="COD_LO_SPARE_0" parameterTypeRef="uint8">
|
|
385
|
+
<xtce:LongDescription>CODICE LO Spare 0</xtce:LongDescription>
|
|
480
386
|
</xtce:Parameter>
|
|
481
|
-
<!--
|
|
387
|
+
<!-- CoDICE LO -->
|
|
482
388
|
<!-- CoDICE HI -->
|
|
483
389
|
<xtce:Parameter name="COD_HI_ACQ" parameterTypeRef="uint32">
|
|
484
390
|
<xtce:LongDescription>CODICE HI Acquisition Time</xtce:LongDescription>
|
|
@@ -508,65 +414,48 @@
|
|
|
508
414
|
<xtce:LongDescription>CODICE HI Spare 0</xtce:LongDescription>
|
|
509
415
|
</xtce:Parameter>
|
|
510
416
|
<!-- CoDICE HI -->
|
|
511
|
-
<!--
|
|
512
|
-
<xtce:Parameter name="
|
|
513
|
-
<xtce:LongDescription>
|
|
514
|
-
</xtce:Parameter>
|
|
515
|
-
<xtce:Parameter name="COD_LO_STATUS" parameterTypeRef="uint8">
|
|
516
|
-
<xtce:LongDescription>CODICE LO Status</xtce:LongDescription>
|
|
517
|
-
</xtce:Parameter>
|
|
518
|
-
<xtce:Parameter name="COD_LO_COUNTER" parameterTypeRef="uint8">
|
|
519
|
-
<xtce:LongDescription>CODICE LO Counter</xtce:LongDescription>
|
|
520
|
-
</xtce:Parameter>
|
|
521
|
-
<xtce:Parameter name="COD_LO_DATA_00" parameterTypeRef="uint8">
|
|
522
|
-
<xtce:LongDescription>CODICE LO Data_00</xtce:LongDescription>
|
|
523
|
-
</xtce:Parameter>
|
|
524
|
-
<xtce:Parameter name="COD_LO_DATA_01" parameterTypeRef="uint8">
|
|
525
|
-
<xtce:LongDescription>CODICE LO Data_01</xtce:LongDescription>
|
|
526
|
-
</xtce:Parameter>
|
|
527
|
-
<xtce:Parameter name="COD_LO_DATA_02" parameterTypeRef="uint8">
|
|
528
|
-
<xtce:LongDescription>CODICE LO Data_02</xtce:LongDescription>
|
|
529
|
-
</xtce:Parameter>
|
|
530
|
-
<xtce:Parameter name="COD_LO_DATA_03" parameterTypeRef="uint8">
|
|
531
|
-
<xtce:LongDescription>CODICE LO Data_03</xtce:LongDescription>
|
|
532
|
-
</xtce:Parameter>
|
|
533
|
-
<xtce:Parameter name="COD_LO_DATA_04" parameterTypeRef="uint8">
|
|
534
|
-
<xtce:LongDescription>CODICE LO Data_04</xtce:LongDescription>
|
|
417
|
+
<!-- SWAPI -->
|
|
418
|
+
<xtce:Parameter name="SWAPI_ACQ" parameterTypeRef="uint32">
|
|
419
|
+
<xtce:LongDescription>SWAPI Acquisition Time</xtce:LongDescription>
|
|
535
420
|
</xtce:Parameter>
|
|
536
|
-
<xtce:Parameter name="
|
|
537
|
-
<xtce:LongDescription>
|
|
421
|
+
<xtce:Parameter name="SWAPI_FLAG" parameterTypeRef="swapi_validity_enum">
|
|
422
|
+
<xtce:LongDescription>
|
|
423
|
+
Valid bit:
|
|
424
|
+
'1' -- valid,
|
|
425
|
+
'0' -- invalid
|
|
426
|
+
</xtce:LongDescription>
|
|
538
427
|
</xtce:Parameter>
|
|
539
|
-
<xtce:Parameter name="
|
|
540
|
-
<xtce:LongDescription>
|
|
428
|
+
<xtce:Parameter name="SWAPI_RESERVED" parameterTypeRef="uint15">
|
|
429
|
+
<xtce:LongDescription>SWAPI Instrument Reserved</xtce:LongDescription>
|
|
541
430
|
</xtce:Parameter>
|
|
542
|
-
<xtce:Parameter name="
|
|
543
|
-
<xtce:LongDescription>
|
|
431
|
+
<xtce:Parameter name="SWAPI_SEQ_NUMBER" parameterTypeRef="uint4">
|
|
432
|
+
<xtce:LongDescription>Sequence Number in Table</xtce:LongDescription>
|
|
544
433
|
</xtce:Parameter>
|
|
545
|
-
<xtce:Parameter name="
|
|
546
|
-
<xtce:LongDescription>
|
|
434
|
+
<xtce:Parameter name="SWAPI_VERSION" parameterTypeRef="uint4">
|
|
435
|
+
<xtce:LongDescription>Sweep Table Version Number</xtce:LongDescription>
|
|
547
436
|
</xtce:Parameter>
|
|
548
|
-
<xtce:Parameter name="
|
|
549
|
-
<xtce:LongDescription>
|
|
437
|
+
<xtce:Parameter name="SWAPI_COIN_CNT0" parameterTypeRef="uint16">
|
|
438
|
+
<xtce:LongDescription>Coincidence Counts During the First 1/6 Sec</xtce:LongDescription>
|
|
550
439
|
</xtce:Parameter>
|
|
551
|
-
<xtce:Parameter name="
|
|
552
|
-
<xtce:LongDescription>
|
|
440
|
+
<xtce:Parameter name="SWAPI_COIN_CNT1" parameterTypeRef="uint16">
|
|
441
|
+
<xtce:LongDescription>Coincidence Counts During the Second 1/6 Sec</xtce:LongDescription>
|
|
553
442
|
</xtce:Parameter>
|
|
554
|
-
<xtce:Parameter name="
|
|
555
|
-
<xtce:LongDescription>
|
|
443
|
+
<xtce:Parameter name="SWAPI_COIN_CNT2" parameterTypeRef="uint16">
|
|
444
|
+
<xtce:LongDescription>Coincidence Counts During the Third 1/6 Sec</xtce:LongDescription>
|
|
556
445
|
</xtce:Parameter>
|
|
557
|
-
<xtce:Parameter name="
|
|
558
|
-
<xtce:LongDescription>
|
|
446
|
+
<xtce:Parameter name="SWAPI_COIN_CNT3" parameterTypeRef="uint16">
|
|
447
|
+
<xtce:LongDescription>Coincidence Counts During the Fourth 1/6 Sec</xtce:LongDescription>
|
|
559
448
|
</xtce:Parameter>
|
|
560
|
-
<xtce:Parameter name="
|
|
561
|
-
<xtce:LongDescription>
|
|
449
|
+
<xtce:Parameter name="SWAPI_COIN_CNT4" parameterTypeRef="uint16">
|
|
450
|
+
<xtce:LongDescription>Coincidence Counts During the Fifth 1/6 Sec</xtce:LongDescription>
|
|
562
451
|
</xtce:Parameter>
|
|
563
|
-
<xtce:Parameter name="
|
|
564
|
-
<xtce:LongDescription>
|
|
452
|
+
<xtce:Parameter name="SWAPI_COIN_CNT5" parameterTypeRef="uint16">
|
|
453
|
+
<xtce:LongDescription>Coincidence Counts During the Sixth 1/6 Sec</xtce:LongDescription>
|
|
565
454
|
</xtce:Parameter>
|
|
566
|
-
<xtce:Parameter name="
|
|
567
|
-
<xtce:LongDescription>
|
|
455
|
+
<xtce:Parameter name="SWAPI_SPARE" parameterTypeRef="uint8">
|
|
456
|
+
<xtce:LongDescription>Spare</xtce:LongDescription>
|
|
568
457
|
</xtce:Parameter>
|
|
569
|
-
<!--
|
|
458
|
+
<!-- SWAPI -->
|
|
570
459
|
<!-- HIT -->
|
|
571
460
|
<xtce:Parameter name="HIT_MET" parameterTypeRef="uint32">
|
|
572
461
|
<xtce:LongDescription>Mission elapsed time</xtce:LongDescription>
|
|
@@ -623,6 +512,121 @@
|
|
|
623
512
|
<xtce:LongDescription>event data 10</xtce:LongDescription>
|
|
624
513
|
</xtce:Parameter>
|
|
625
514
|
<!-- HIT -->
|
|
515
|
+
<!-- SWE -->
|
|
516
|
+
<xtce:Parameter name="SWE_ACQ_SEC" parameterTypeRef="uint32">
|
|
517
|
+
<xtce:LongDescription>SWE Acquisition Time (sec)</xtce:LongDescription>
|
|
518
|
+
</xtce:Parameter>
|
|
519
|
+
<xtce:Parameter name="SWE_ACQ_SUB" parameterTypeRef="uint24">
|
|
520
|
+
<xtce:LongDescription>SWE Acquisition Time (sub sec)</xtce:LongDescription>
|
|
521
|
+
</xtce:Parameter>
|
|
522
|
+
<xtce:Parameter name="SWE_NOM_FLAG" parameterTypeRef="instrument_status">
|
|
523
|
+
<xtce:LongDescription>1 = nominal, 0 = off-nominal</xtce:LongDescription>
|
|
524
|
+
</xtce:Parameter>
|
|
525
|
+
<xtce:Parameter name="SWE_OPS_FLAG" parameterTypeRef="swe_ops_flag">
|
|
526
|
+
<xtce:LongDescription>1 = HVSCI mode, 0 = not HVSCI mode</xtce:LongDescription>
|
|
527
|
+
</xtce:Parameter>
|
|
528
|
+
<xtce:Parameter name="SWE_SEQ" parameterTypeRef="uint6">
|
|
529
|
+
<xtce:LongDescription>Sequence Number corresponds to 15 2-spin sectors times 4 sets.</xtce:LongDescription>
|
|
530
|
+
</xtce:Parameter>
|
|
531
|
+
<xtce:Parameter name="SWE_CEM1_E1" parameterTypeRef="uint8">
|
|
532
|
+
<xtce:LongDescription>Electron counts for CEM1 energy 1.</xtce:LongDescription>
|
|
533
|
+
</xtce:Parameter>
|
|
534
|
+
<xtce:Parameter name="SWE_CEM1_E2" parameterTypeRef="uint8">
|
|
535
|
+
<xtce:LongDescription>Electron counts for CEM1 energy 2.</xtce:LongDescription>
|
|
536
|
+
</xtce:Parameter>
|
|
537
|
+
<xtce:Parameter name="SWE_CEM1_E3" parameterTypeRef="uint8">
|
|
538
|
+
<xtce:LongDescription>Electron counts for CEM1 energy 3.</xtce:LongDescription>
|
|
539
|
+
</xtce:Parameter>
|
|
540
|
+
<xtce:Parameter name="SWE_CEM1_E4" parameterTypeRef="uint8">
|
|
541
|
+
<xtce:LongDescription>Electron counts for CEM1 energy 4.</xtce:LongDescription>
|
|
542
|
+
</xtce:Parameter>
|
|
543
|
+
<xtce:Parameter name="SWE_CEM2_E1" parameterTypeRef="uint8">
|
|
544
|
+
<xtce:LongDescription>Electron counts for CEM2 energy 1.</xtce:LongDescription>
|
|
545
|
+
</xtce:Parameter>
|
|
546
|
+
<xtce:Parameter name="SWE_CEM2_E2" parameterTypeRef="uint8">
|
|
547
|
+
<xtce:LongDescription>Electron counts for CEM2 energy 2.</xtce:LongDescription>
|
|
548
|
+
</xtce:Parameter>
|
|
549
|
+
<xtce:Parameter name="SWE_CEM2_E3" parameterTypeRef="uint8">
|
|
550
|
+
<xtce:LongDescription>Electron counts for CEM2 energy 3.</xtce:LongDescription>
|
|
551
|
+
</xtce:Parameter>
|
|
552
|
+
<xtce:Parameter name="SWE_CEM2_E4" parameterTypeRef="uint8">
|
|
553
|
+
<xtce:LongDescription>Electron counts for CEM2 energy 4.</xtce:LongDescription>
|
|
554
|
+
</xtce:Parameter>
|
|
555
|
+
<xtce:Parameter name="SWE_CEM3_E1" parameterTypeRef="uint8">
|
|
556
|
+
<xtce:LongDescription>Electron counts for CEM3 energy 1.</xtce:LongDescription>
|
|
557
|
+
</xtce:Parameter>
|
|
558
|
+
<xtce:Parameter name="SWE_CEM3_E2" parameterTypeRef="uint8">
|
|
559
|
+
<xtce:LongDescription>Electron counts for CEM3 energy 2.</xtce:LongDescription>
|
|
560
|
+
</xtce:Parameter>
|
|
561
|
+
<xtce:Parameter name="SWE_CEM3_E3" parameterTypeRef="uint8">
|
|
562
|
+
<xtce:LongDescription>Electron counts for CEM3 energy 3.</xtce:LongDescription>
|
|
563
|
+
</xtce:Parameter>
|
|
564
|
+
<xtce:Parameter name="SWE_CEM3_E4" parameterTypeRef="uint8">
|
|
565
|
+
<xtce:LongDescription>Electron counts for CEM3 energy 4.</xtce:LongDescription>
|
|
566
|
+
</xtce:Parameter>
|
|
567
|
+
<xtce:Parameter name="SWE_CEM4_E1" parameterTypeRef="uint8">
|
|
568
|
+
<xtce:LongDescription>Electron counts for CEM4 energy 1.</xtce:LongDescription>
|
|
569
|
+
</xtce:Parameter>
|
|
570
|
+
<xtce:Parameter name="SWE_CEM4_E2" parameterTypeRef="uint8">
|
|
571
|
+
<xtce:LongDescription>Electron counts for CEM4 energy 2.</xtce:LongDescription>
|
|
572
|
+
</xtce:Parameter>
|
|
573
|
+
<xtce:Parameter name="SWE_CEM4_E3" parameterTypeRef="uint8">
|
|
574
|
+
<xtce:LongDescription>Electron counts for CEM4 energy 3.</xtce:LongDescription>
|
|
575
|
+
</xtce:Parameter>
|
|
576
|
+
<xtce:Parameter name="SWE_CEM4_E4" parameterTypeRef="uint8">
|
|
577
|
+
<xtce:LongDescription>Electron counts for CEM4 energy 4.</xtce:LongDescription>
|
|
578
|
+
</xtce:Parameter>
|
|
579
|
+
<xtce:Parameter name="SWE_CEM5_E1" parameterTypeRef="uint8">
|
|
580
|
+
<xtce:LongDescription>Electron counts for CEM5 energy 1.</xtce:LongDescription>
|
|
581
|
+
</xtce:Parameter>
|
|
582
|
+
<xtce:Parameter name="SWE_CEM5_E2" parameterTypeRef="uint8">
|
|
583
|
+
<xtce:LongDescription>Electron counts for CEM5 energy 2.</xtce:LongDescription>
|
|
584
|
+
</xtce:Parameter>
|
|
585
|
+
<xtce:Parameter name="SWE_CEM5_E3" parameterTypeRef="uint8">
|
|
586
|
+
<xtce:LongDescription>Electron counts for CEM5 energy 3.</xtce:LongDescription>
|
|
587
|
+
</xtce:Parameter>
|
|
588
|
+
<xtce:Parameter name="SWE_CEM5_E4" parameterTypeRef="uint8">
|
|
589
|
+
<xtce:LongDescription>Electron counts for CEM5 energy 4.</xtce:LongDescription>
|
|
590
|
+
</xtce:Parameter>
|
|
591
|
+
<xtce:Parameter name="SWE_CEM6_E1" parameterTypeRef="uint8">
|
|
592
|
+
<xtce:LongDescription>Electron counts for CEM6 energy 1.</xtce:LongDescription>
|
|
593
|
+
</xtce:Parameter>
|
|
594
|
+
<xtce:Parameter name="SWE_CEM6_E2" parameterTypeRef="uint8">
|
|
595
|
+
<xtce:LongDescription>Electron counts for CEM6 energy 2.</xtce:LongDescription>
|
|
596
|
+
</xtce:Parameter>
|
|
597
|
+
<xtce:Parameter name="SWE_CEM6_E3" parameterTypeRef="uint8">
|
|
598
|
+
<xtce:LongDescription>Electron counts for CEM6 energy 3.</xtce:LongDescription>
|
|
599
|
+
</xtce:Parameter>
|
|
600
|
+
<xtce:Parameter name="SWE_CEM6_E4" parameterTypeRef="uint8">
|
|
601
|
+
<xtce:LongDescription>Electron counts for CEM6 energy 4.</xtce:LongDescription>
|
|
602
|
+
</xtce:Parameter>
|
|
603
|
+
<xtce:Parameter name="SWE_CEM7_E1" parameterTypeRef="uint8">
|
|
604
|
+
<xtce:LongDescription>Electron counts for CEM7 energy 1.</xtce:LongDescription>
|
|
605
|
+
</xtce:Parameter>
|
|
606
|
+
<xtce:Parameter name="SWE_CEM7_E2" parameterTypeRef="uint8">
|
|
607
|
+
<xtce:LongDescription>Electron counts for CEM7 energy 2.</xtce:LongDescription>
|
|
608
|
+
</xtce:Parameter>
|
|
609
|
+
<xtce:Parameter name="SWE_CEM7_E3" parameterTypeRef="uint8">
|
|
610
|
+
<xtce:LongDescription>Electron counts for CEM7 energy 3.</xtce:LongDescription>
|
|
611
|
+
</xtce:Parameter>
|
|
612
|
+
<xtce:Parameter name="SWE_CEM7_E4" parameterTypeRef="uint8">
|
|
613
|
+
<xtce:LongDescription>Electron counts for CEM7 energy 4.</xtce:LongDescription>
|
|
614
|
+
</xtce:Parameter>
|
|
615
|
+
<!-- SWE -->
|
|
616
|
+
<!-- MAG -->
|
|
617
|
+
<xtce:Parameter name="MAG_ACQ_TM_COARSE" parameterTypeRef="uint32">
|
|
618
|
+
<xtce:LongDescription>MAG Coarse Acquisition Time</xtce:LongDescription>
|
|
619
|
+
</xtce:Parameter>
|
|
620
|
+
<xtce:Parameter name="MAG_ACQ_TM_FINE" parameterTypeRef="uint16">
|
|
621
|
+
<xtce:LongDescription>MAG Fine Acquisition Time</xtce:LongDescription>
|
|
622
|
+
</xtce:Parameter>
|
|
623
|
+
<xtce:Parameter name="MAG_STATUS" parameterTypeRef="uint24">
|
|
624
|
+
<xtce:LongDescription>MAG Status</xtce:LongDescription>
|
|
625
|
+
</xtce:Parameter>
|
|
626
|
+
<xtce:Parameter name="MAG_DATA" parameterTypeRef="uint24">
|
|
627
|
+
<xtce:LongDescription>MAG Data</xtce:LongDescription>
|
|
628
|
+
</xtce:Parameter>
|
|
629
|
+
<!-- MAG -->
|
|
626
630
|
</xtce:ParameterSet>
|
|
627
631
|
<!-- End metadata -->
|
|
628
632
|
<xtce:ContainerSet>
|
|
@@ -676,37 +680,6 @@
|
|
|
676
680
|
<xtce:ParameterRefEntry parameterRef="SC_AUTONOMY"/>
|
|
677
681
|
<xtce:ParameterRefEntry parameterRef="SC_SPARE_3"/>
|
|
678
682
|
<!-- Spacecraft -->
|
|
679
|
-
<!-- MAG -->
|
|
680
|
-
<xtce:ParameterRefEntry parameterRef="MAG_ACQ_TM_COARSE"/>
|
|
681
|
-
<xtce:ParameterRefEntry parameterRef="MAG_ACQ_TM_FINE"/>
|
|
682
|
-
<xtce:ParameterRefEntry parameterRef="MAG_STATUS"/>
|
|
683
|
-
<xtce:ParameterRefEntry parameterRef="MAG_DATA"/>
|
|
684
|
-
<!-- MAG -->
|
|
685
|
-
<!-- SWAPI -->
|
|
686
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_ACQ"/>
|
|
687
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_FLAG"/>
|
|
688
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_RESERVED"/>
|
|
689
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_SEQ"/>
|
|
690
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_VERSION"/>
|
|
691
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_1"/>
|
|
692
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_2"/>
|
|
693
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_3"/>
|
|
694
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_4"/>
|
|
695
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_5"/>
|
|
696
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_6"/>
|
|
697
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_SPARE"/>
|
|
698
|
-
<!-- SWAPI -->
|
|
699
|
-
<!-- CoDICE HI -->
|
|
700
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_ACQ"/>
|
|
701
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_STATUS"/>
|
|
702
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_COUNTER"/>
|
|
703
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_00"/>
|
|
704
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_01"/>
|
|
705
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_02"/>
|
|
706
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_03"/>
|
|
707
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_04"/>
|
|
708
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_SPARE_0"/>
|
|
709
|
-
<!-- CoDICE HI -->
|
|
710
683
|
<!-- CoDICE LO -->
|
|
711
684
|
<xtce:ParameterRefEntry parameterRef="COD_LO_ACQ"/>
|
|
712
685
|
<xtce:ParameterRefEntry parameterRef="COD_LO_STATUS"/>
|
|
@@ -728,6 +701,31 @@
|
|
|
728
701
|
<xtce:ParameterRefEntry parameterRef="COD_LO_DATA_14"/>
|
|
729
702
|
<xtce:ParameterRefEntry parameterRef="COD_LO_SPARE_0"/>
|
|
730
703
|
<!-- CoDICE LO -->
|
|
704
|
+
<!-- CoDICE HI -->
|
|
705
|
+
<xtce:ParameterRefEntry parameterRef="COD_HI_ACQ"/>
|
|
706
|
+
<xtce:ParameterRefEntry parameterRef="COD_HI_STATUS"/>
|
|
707
|
+
<xtce:ParameterRefEntry parameterRef="COD_HI_COUNTER"/>
|
|
708
|
+
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_00"/>
|
|
709
|
+
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_01"/>
|
|
710
|
+
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_02"/>
|
|
711
|
+
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_03"/>
|
|
712
|
+
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_04"/>
|
|
713
|
+
<xtce:ParameterRefEntry parameterRef="COD_HI_SPARE_0"/>
|
|
714
|
+
<!-- CoDICE HI -->
|
|
715
|
+
<!-- SWAPI -->
|
|
716
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_ACQ"/>
|
|
717
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_FLAG"/>
|
|
718
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_RESERVED"/>
|
|
719
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_SEQ_NUMBER"/>
|
|
720
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_VERSION"/>
|
|
721
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_CNT0"/>
|
|
722
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_CNT1"/>
|
|
723
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_CNT2"/>
|
|
724
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_CNT3"/>
|
|
725
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_CNT4"/>
|
|
726
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_CNT5"/>
|
|
727
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_SPARE"/>
|
|
728
|
+
<!-- SWAPI -->
|
|
731
729
|
<!-- HIT -->
|
|
732
730
|
<xtce:ParameterRefEntry parameterRef="HIT_MET"/>
|
|
733
731
|
<xtce:ParameterRefEntry parameterRef="HIT_STATUS"/>
|
|
@@ -783,6 +781,12 @@
|
|
|
783
781
|
<xtce:ParameterRefEntry parameterRef="SWE_CEM7_E3"/>
|
|
784
782
|
<xtce:ParameterRefEntry parameterRef="SWE_CEM7_E4"/>
|
|
785
783
|
<!-- SWE -->
|
|
784
|
+
<!-- MAG -->
|
|
785
|
+
<xtce:ParameterRefEntry parameterRef="MAG_ACQ_TM_COARSE"/>
|
|
786
|
+
<xtce:ParameterRefEntry parameterRef="MAG_ACQ_TM_FINE"/>
|
|
787
|
+
<xtce:ParameterRefEntry parameterRef="MAG_STATUS"/>
|
|
788
|
+
<xtce:ParameterRefEntry parameterRef="MAG_DATA"/>
|
|
789
|
+
<!-- MAG -->
|
|
786
790
|
</xtce:EntryList>
|
|
787
791
|
</xtce:SequenceContainer>
|
|
788
792
|
</xtce:ContainerSet>
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
<xtce:LongDescription>CODICE HI Status</xtce:LongDescription>
|
|
181
181
|
</xtce:Parameter>
|
|
182
182
|
<xtce:Parameter name="COD_HI_COUNTER" parameterTypeRef="uint8">
|
|
183
|
-
<xtce:LongDescription>CODICE HI
|
|
183
|
+
<xtce:LongDescription>CODICE HI Counter</xtce:LongDescription>
|
|
184
184
|
</xtce:Parameter>
|
|
185
185
|
<xtce:Parameter name="COD_HI_DATA_00" parameterTypeRef="uint8">
|
|
186
186
|
<xtce:LongDescription>CODICE HI Data_00</xtce:LongDescription>
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
<xtce:LongDescription>CODICE LO MET at End of Data Acquisition</xtce:LongDescription>
|
|
175
175
|
</xtce:Parameter>
|
|
176
176
|
<xtce:Parameter name="COD_LO_ACQ" parameterTypeRef="uint32">
|
|
177
|
-
<xtce:LongDescription>CODICE LO
|
|
177
|
+
<xtce:LongDescription>CODICE LO Acquisition Time</xtce:LongDescription>
|
|
178
178
|
</xtce:Parameter>
|
|
179
179
|
<xtce:Parameter name="COD_LO_STATUS" parameterTypeRef="uint8">
|
|
180
180
|
<xtce:LongDescription>CODICE LO Status</xtce:LongDescription>
|
|
@@ -99,28 +99,28 @@
|
|
|
99
99
|
<xtce:Parameter name="SWAPI_RESERVED" parameterTypeRef="uint15">
|
|
100
100
|
<xtce:LongDescription>SWAPI Instrument Reserved</xtce:LongDescription>
|
|
101
101
|
</xtce:Parameter>
|
|
102
|
-
<xtce:Parameter name="
|
|
102
|
+
<xtce:Parameter name="SWAPI_SEQ_NUMBER" parameterTypeRef="uint4">
|
|
103
103
|
<xtce:LongDescription>Sequence Number in Table</xtce:LongDescription>
|
|
104
104
|
</xtce:Parameter>
|
|
105
105
|
<xtce:Parameter name="SWAPI_VERSION" parameterTypeRef="uint4">
|
|
106
106
|
<xtce:LongDescription>Sweep Table Version Number</xtce:LongDescription>
|
|
107
107
|
</xtce:Parameter>
|
|
108
|
-
<xtce:Parameter name="
|
|
108
|
+
<xtce:Parameter name="SWAPI_COIN_CNT0" parameterTypeRef="uint16">
|
|
109
109
|
<xtce:LongDescription>Coincidence Counts During the First 1/6 Sec</xtce:LongDescription>
|
|
110
110
|
</xtce:Parameter>
|
|
111
|
-
<xtce:Parameter name="
|
|
111
|
+
<xtce:Parameter name="SWAPI_COIN_CNT1" parameterTypeRef="uint16">
|
|
112
112
|
<xtce:LongDescription>Coincidence Counts During the Second 1/6 Sec</xtce:LongDescription>
|
|
113
113
|
</xtce:Parameter>
|
|
114
|
-
<xtce:Parameter name="
|
|
114
|
+
<xtce:Parameter name="SWAPI_COIN_CNT2" parameterTypeRef="uint16">
|
|
115
115
|
<xtce:LongDescription>Coincidence Counts During the Third 1/6 Sec</xtce:LongDescription>
|
|
116
116
|
</xtce:Parameter>
|
|
117
|
-
<xtce:Parameter name="
|
|
117
|
+
<xtce:Parameter name="SWAPI_COIN_CNT3" parameterTypeRef="uint16">
|
|
118
118
|
<xtce:LongDescription>Coincidence Counts During the Fourth 1/6 Sec</xtce:LongDescription>
|
|
119
119
|
</xtce:Parameter>
|
|
120
|
-
<xtce:Parameter name="
|
|
120
|
+
<xtce:Parameter name="SWAPI_COIN_CNT4" parameterTypeRef="uint16">
|
|
121
121
|
<xtce:LongDescription>Coincidence Counts During the Fifth 1/6 Sec</xtce:LongDescription>
|
|
122
122
|
</xtce:Parameter>
|
|
123
|
-
<xtce:Parameter name="
|
|
123
|
+
<xtce:Parameter name="SWAPI_COIN_CNT5" parameterTypeRef="uint16">
|
|
124
124
|
<xtce:LongDescription>Coincidence Counts During the Sixth 1/6 Sec</xtce:LongDescription>
|
|
125
125
|
</xtce:Parameter>
|
|
126
126
|
<xtce:Parameter name="SWAPI_SPARE" parameterTypeRef="uint8">
|
|
@@ -153,14 +153,14 @@
|
|
|
153
153
|
<xtce:ParameterRefEntry parameterRef="SWAPI_ACQ"/>
|
|
154
154
|
<xtce:ParameterRefEntry parameterRef="SWAPI_FLAG"/>
|
|
155
155
|
<xtce:ParameterRefEntry parameterRef="SWAPI_RESERVED"/>
|
|
156
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
156
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_SEQ_NUMBER"/>
|
|
157
157
|
<xtce:ParameterRefEntry parameterRef="SWAPI_VERSION"/>
|
|
158
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
159
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
160
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
161
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
162
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
163
|
-
<xtce:ParameterRefEntry parameterRef="
|
|
158
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_CNT0"/>
|
|
159
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_CNT1"/>
|
|
160
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_CNT2"/>
|
|
161
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_CNT3"/>
|
|
162
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_CNT4"/>
|
|
163
|
+
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_CNT5"/>
|
|
164
164
|
<xtce:ParameterRefEntry parameterRef="SWAPI_SPARE"/>
|
|
165
165
|
<!-- SWAPI -->
|
|
166
166
|
</xtce:EntryList>
|
|
@@ -59,7 +59,7 @@ def find_groups(
|
|
|
59
59
|
accumulated_data : xr.Dataset
|
|
60
60
|
Packets dataset accumulated over 1 min.
|
|
61
61
|
sequence_range : tuple
|
|
62
|
-
Tuple of two integers defining the range of group values.
|
|
62
|
+
Tuple of two integers defining the range of group values (inclusive endpoints).
|
|
63
63
|
sequence_name : str
|
|
64
64
|
Name of the sequence variable.
|
|
65
65
|
time_name : str
|
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
"""Contains dataclasses to support IDEX processing."""
|
|
2
2
|
|
|
3
3
|
from dataclasses import dataclass
|
|
4
|
-
from enum import Enum
|
|
4
|
+
from enum import Enum, IntEnum
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class IDEXAPID(IntEnum):
|
|
8
|
+
"""Create ENUM for apid."""
|
|
9
|
+
|
|
10
|
+
IDEX_SCIENCE = 1424
|
|
11
|
+
IDEX_CATLST = 1419
|
|
12
|
+
IDEX_EVT = 1418
|
|
5
13
|
|
|
6
14
|
|
|
7
15
|
@dataclass
|