imap-processing 0.11.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 +11 -11
- imap_processing/_version.py +2 -2
- imap_processing/ccsds/ccsds_data.py +1 -2
- imap_processing/ccsds/excel_to_xtce.py +66 -18
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +24 -40
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +934 -42
- imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +1846 -128
- imap_processing/cdf/config/imap_glows_global_cdf_attrs.yaml +0 -5
- imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +10 -11
- imap_processing/cdf/config/imap_hi_variable_attrs.yaml +17 -19
- imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +27 -14
- imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +106 -116
- imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +120 -145
- imap_processing/cdf/config/imap_hit_l2_variable_attrs.yaml +14 -0
- imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +25 -9
- 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_lo_global_cdf_attrs.yaml +0 -12
- imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +1 -1
- imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +23 -20
- imap_processing/cdf/config/imap_mag_l1a_variable_attrs.yaml +361 -0
- imap_processing/cdf/config/imap_mag_l1b_variable_attrs.yaml +160 -0
- imap_processing/cdf/config/imap_mag_l1c_variable_attrs.yaml +160 -0
- imap_processing/cdf/config/imap_spacecraft_global_cdf_attrs.yaml +18 -0
- imap_processing/cdf/config/imap_spacecraft_variable_attrs.yaml +40 -0
- imap_processing/cdf/config/imap_swapi_global_cdf_attrs.yaml +1 -5
- imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +22 -0
- imap_processing/cdf/config/imap_swe_global_cdf_attrs.yaml +12 -4
- imap_processing/cdf/config/imap_swe_l1a_variable_attrs.yaml +16 -2
- imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +64 -52
- imap_processing/cdf/config/imap_swe_l2_variable_attrs.yaml +71 -47
- imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +180 -19
- imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +5045 -41
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +80 -17
- imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +32 -57
- imap_processing/cdf/utils.py +52 -38
- imap_processing/cli.py +477 -233
- imap_processing/codice/codice_l1a.py +466 -131
- imap_processing/codice/codice_l1b.py +51 -152
- imap_processing/codice/constants.py +1360 -569
- imap_processing/codice/decompress.py +2 -6
- imap_processing/ena_maps/ena_maps.py +1103 -146
- imap_processing/ena_maps/utils/coordinates.py +19 -0
- imap_processing/ena_maps/utils/map_utils.py +14 -17
- imap_processing/ena_maps/utils/spatial_utils.py +55 -52
- 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 +54 -29
- imap_processing/hi/l1a/histogram.py +0 -1
- imap_processing/hi/l1a/science_direct_event.py +6 -8
- imap_processing/hi/l1b/hi_l1b.py +111 -82
- imap_processing/hi/l1c/hi_l1c.py +416 -32
- imap_processing/hi/utils.py +58 -12
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-sector-dt0-factors_20250219_v002.csv +81 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt0-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt1-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt2-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt3-factors_20250219_v002.csv +205 -0
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-summed-dt0-factors_20250219_v002.csv +68 -0
- imap_processing/hit/hit_utils.py +235 -5
- imap_processing/hit/l0/constants.py +20 -11
- imap_processing/hit/l0/decom_hit.py +21 -5
- imap_processing/hit/l1a/hit_l1a.py +71 -75
- imap_processing/hit/l1b/constants.py +321 -0
- imap_processing/hit/l1b/hit_l1b.py +377 -67
- imap_processing/hit/l2/constants.py +318 -0
- imap_processing/hit/l2/hit_l2.py +723 -0
- imap_processing/hit/packet_definitions/hit_packet_definitions.xml +1323 -71
- imap_processing/ialirt/l0/mag_l0_ialirt_data.py +155 -0
- imap_processing/ialirt/l0/parse_mag.py +374 -0
- imap_processing/ialirt/l0/process_swapi.py +69 -0
- imap_processing/ialirt/l0/process_swe.py +548 -0
- imap_processing/ialirt/packet_definitions/ialirt.xml +216 -208
- 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_mag.xml +115 -0
- imap_processing/ialirt/packet_definitions/ialirt_swapi.xml +14 -14
- imap_processing/ialirt/utils/grouping.py +114 -0
- imap_processing/ialirt/utils/time.py +29 -0
- imap_processing/idex/atomic_masses.csv +22 -0
- imap_processing/idex/decode.py +2 -2
- imap_processing/idex/idex_constants.py +33 -0
- imap_processing/idex/idex_l0.py +22 -8
- imap_processing/idex/idex_l1a.py +81 -51
- imap_processing/idex/idex_l1b.py +13 -39
- imap_processing/idex/idex_l2a.py +823 -0
- imap_processing/idex/idex_l2b.py +120 -0
- imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +11 -11
- imap_processing/idex/packet_definitions/idex_housekeeping_packet_definition.xml +9130 -0
- imap_processing/lo/l0/lo_science.py +7 -2
- imap_processing/lo/l1a/lo_l1a.py +1 -5
- imap_processing/lo/l1b/lo_l1b.py +702 -29
- imap_processing/lo/l1b/tof_conversions.py +11 -0
- imap_processing/lo/l1c/lo_l1c.py +1 -4
- imap_processing/mag/constants.py +51 -0
- imap_processing/mag/imap_mag_sdc_configuration_v001.py +8 -0
- imap_processing/mag/l0/decom_mag.py +10 -3
- imap_processing/mag/l1a/mag_l1a.py +23 -19
- imap_processing/mag/l1a/mag_l1a_data.py +35 -10
- imap_processing/mag/l1b/mag_l1b.py +259 -50
- imap_processing/mag/l1c/interpolation_methods.py +388 -0
- imap_processing/mag/l1c/mag_l1c.py +621 -17
- imap_processing/mag/l2/mag_l2.py +140 -0
- imap_processing/mag/l2/mag_l2_data.py +288 -0
- imap_processing/quality_flags.py +1 -0
- imap_processing/spacecraft/packet_definitions/scid_x252.xml +538 -0
- imap_processing/spacecraft/quaternions.py +121 -0
- imap_processing/spice/geometry.py +19 -22
- imap_processing/spice/kernels.py +0 -276
- imap_processing/spice/pointing_frame.py +257 -0
- imap_processing/spice/repoint.py +149 -0
- imap_processing/spice/spin.py +38 -33
- imap_processing/spice/time.py +24 -0
- imap_processing/swapi/l1/swapi_l1.py +20 -12
- imap_processing/swapi/l2/swapi_l2.py +116 -5
- imap_processing/swapi/swapi_utils.py +32 -0
- imap_processing/swe/l1a/swe_l1a.py +44 -12
- imap_processing/swe/l1a/swe_science.py +13 -13
- imap_processing/swe/l1b/swe_l1b.py +898 -23
- imap_processing/swe/l2/swe_l2.py +75 -136
- imap_processing/swe/packet_definitions/swe_packet_definition.xml +1121 -1
- imap_processing/swe/utils/swe_constants.py +64 -0
- imap_processing/swe/utils/swe_utils.py +85 -28
- imap_processing/tests/ccsds/test_data/expected_output.xml +40 -1
- imap_processing/tests/ccsds/test_excel_to_xtce.py +24 -21
- imap_processing/tests/cdf/test_data/imap_instrument2_global_cdf_attrs.yaml +0 -2
- 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-counters-aggregated_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-counters-singles_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-ialirt_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-omni_20241110193700_v0.0.0.cdf +0 -0
- 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_hi-priorities_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-sectored_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-counters-aggregated_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-counters-singles_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-angular_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-priority_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-species_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/data/validation/imap_codice_l1a_lo-sw-angular_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-priority_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-species_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/test_codice_l1a.py +126 -53
- imap_processing/tests/codice/test_codice_l1b.py +6 -7
- imap_processing/tests/codice/test_decompress.py +4 -4
- imap_processing/tests/conftest.py +239 -27
- imap_processing/tests/ena_maps/conftest.py +51 -0
- imap_processing/tests/ena_maps/test_ena_maps.py +1068 -110
- imap_processing/tests/ena_maps/test_map_utils.py +66 -43
- imap_processing/tests/ena_maps/test_spatial_utils.py +17 -21
- 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/data/l0/H45_diag_fee_20250208.bin +0 -0
- imap_processing/tests/hi/data/l0/H45_diag_fee_20250208_verify.csv +205 -0
- imap_processing/tests/hi/test_hi_l1b.py +22 -27
- imap_processing/tests/hi/test_hi_l1c.py +249 -18
- imap_processing/tests/hi/test_l1a.py +35 -7
- imap_processing/tests/hi/test_science_direct_event.py +3 -3
- imap_processing/tests/hi/test_utils.py +24 -2
- imap_processing/tests/hit/helpers/l1_validation.py +74 -73
- imap_processing/tests/hit/test_data/hskp_sample.ccsds +0 -0
- imap_processing/tests/hit/test_data/imap_hit_l0_raw_20100105_v001.pkts +0 -0
- imap_processing/tests/hit/test_decom_hit.py +5 -1
- imap_processing/tests/hit/test_hit_l1a.py +32 -36
- imap_processing/tests/hit/test_hit_l1b.py +300 -81
- imap_processing/tests/hit/test_hit_l2.py +716 -0
- imap_processing/tests/hit/test_hit_utils.py +184 -7
- imap_processing/tests/hit/validation_data/hit_l1b_standard_sample2_nsrl_v4_3decimals.csv +62 -62
- imap_processing/tests/hit/validation_data/hskp_sample_eu_3_6_2025.csv +89 -0
- imap_processing/tests/hit/validation_data/hskp_sample_raw.csv +89 -88
- imap_processing/tests/hit/validation_data/sci_sample_raw.csv +1 -1
- imap_processing/tests/ialirt/data/l0/461971383-404.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971384-405.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971385-406.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971386-407.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971387-408.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971388-409.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971389-410.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971390-411.bin +0 -0
- imap_processing/tests/ialirt/data/l0/461971391-412.bin +0 -0
- imap_processing/tests/ialirt/data/l0/sample_decoded_i-alirt_data.csv +383 -0
- imap_processing/tests/ialirt/unit/test_decom_ialirt.py +16 -81
- imap_processing/tests/ialirt/unit/test_grouping.py +81 -0
- imap_processing/tests/ialirt/unit/test_parse_mag.py +223 -0
- 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 +319 -6
- imap_processing/tests/ialirt/unit/test_time.py +16 -0
- imap_processing/tests/idex/conftest.py +127 -6
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20231218_v001.pkts +0 -0
- 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_data/impact_14_tof_high_data.txt +4508 -4508
- imap_processing/tests/idex/test_idex_l0.py +33 -11
- imap_processing/tests/idex/test_idex_l1a.py +92 -21
- imap_processing/tests/idex/test_idex_l1b.py +106 -27
- imap_processing/tests/idex/test_idex_l2a.py +399 -0
- imap_processing/tests/idex/test_idex_l2b.py +93 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20241022_v002.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20241022_v002.cdf +0 -0
- imap_processing/tests/lo/test_lo_l1a.py +3 -3
- imap_processing/tests/lo/test_lo_l1b.py +515 -6
- imap_processing/tests/lo/test_lo_l1c.py +1 -1
- imap_processing/tests/lo/test_lo_science.py +7 -7
- imap_processing/tests/lo/test_star_sensor.py +1 -1
- imap_processing/tests/mag/conftest.py +120 -2
- imap_processing/tests/mag/test_mag_decom.py +5 -4
- imap_processing/tests/mag/test_mag_l1a.py +51 -7
- imap_processing/tests/mag/test_mag_l1b.py +40 -59
- imap_processing/tests/mag/test_mag_l1c.py +354 -19
- imap_processing/tests/mag/test_mag_l2.py +130 -0
- imap_processing/tests/mag/test_mag_validation.py +247 -26
- imap_processing/tests/mag/validation/L1b/T009/MAGScience-normal-(2,2)-8s-20250204-16h39.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T009/mag-l1a-l1b-t009-magi-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T009/mag-l1a-l1b-t009-mago-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T010/MAGScience-normal-(2,2)-8s-20250206-12h05.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T011/MAGScience-normal-(2,2)-8s-20250204-16h08.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T011/mag-l1a-l1b-t011-magi-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T011/mag-l1a-l1b-t011-mago-out.csv +16 -16
- imap_processing/tests/mag/validation/L1b/T012/MAGScience-normal-(2,2)-8s-20250204-16h08.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T012/data.bin +0 -0
- imap_processing/tests/mag/validation/L1b/T012/field_like_all_ranges.txt +19200 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-cal.cdf +0 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-in.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-magi-out.csv +17 -0
- imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-mago-out.csv +17 -0
- 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_l1b-calibration_20240229_v001.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/data/SSR_2024_190_20_08_12_0483851794_2_DA_apid0594_1packet.pkts +0 -0
- imap_processing/tests/spacecraft/test_quaternions.py +71 -0
- imap_processing/tests/spice/test_data/fake_repoint_data.csv +5 -0
- imap_processing/tests/spice/test_data/fake_spin_data.csv +11 -11
- imap_processing/tests/spice/test_geometry.py +9 -12
- 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 +121 -0
- 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 +13 -11
- imap_processing/tests/swapi/test_swapi_l2.py +180 -8
- imap_processing/tests/swe/l0_data/2024051010_SWE_HK_packet.bin +0 -0
- imap_processing/tests/swe/l0_data/2024051011_SWE_CEM_RAW_packet.bin +0 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_APP_HK_20240510_092742.csv +49 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_CEM_RAW_20240510_092742.csv +593 -0
- 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 +20 -2
- imap_processing/tests/swe/test_swe_l1a_cem_raw.py +52 -0
- imap_processing/tests/swe/test_swe_l1a_hk.py +68 -0
- 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 +153 -91
- imap_processing/tests/test_cli.py +171 -88
- imap_processing/tests/test_utils.py +140 -17
- imap_processing/tests/ultra/data/l0/FM45_UltraFM45_Functional_2024-01-22T0105_20240122T010548.CCSDS +0 -0
- imap_processing/tests/ultra/data/l0/ultra45_raw_sc_ultraimgrates_20220530_00.csv +164 -0
- imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3243 -3243
- imap_processing/tests/ultra/data/mock_data.py +369 -0
- imap_processing/tests/ultra/unit/conftest.py +115 -89
- imap_processing/tests/ultra/unit/test_badtimes.py +4 -4
- imap_processing/tests/ultra/unit/test_cullingmask.py +8 -6
- imap_processing/tests/ultra/unit/test_de.py +14 -13
- imap_processing/tests/ultra/unit/test_decom_apid_880.py +27 -76
- imap_processing/tests/ultra/unit/test_decom_apid_881.py +54 -11
- 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 +77 -0
- imap_processing/tests/ultra/unit/test_ultra_l1a.py +98 -305
- imap_processing/tests/ultra/unit/test_ultra_l1b.py +60 -14
- imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +2 -2
- imap_processing/tests/ultra/unit/test_ultra_l1b_culling.py +26 -27
- imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +239 -70
- imap_processing/tests/ultra/unit/test_ultra_l1c.py +5 -5
- imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +114 -83
- 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 +27 -39
- 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 -271
- imap_processing/ultra/l1b/badtimes.py +1 -4
- imap_processing/ultra/l1b/cullingmask.py +2 -6
- imap_processing/ultra/l1b/de.py +116 -57
- imap_processing/ultra/l1b/extendedspin.py +20 -18
- imap_processing/ultra/l1b/lookup_utils.py +72 -9
- imap_processing/ultra/l1b/ultra_l1b.py +36 -16
- imap_processing/ultra/l1b/ultra_l1b_culling.py +66 -30
- imap_processing/ultra/l1b/ultra_l1b_extended.py +297 -94
- imap_processing/ultra/l1c/histogram.py +2 -6
- imap_processing/ultra/l1c/spacecraft_pset.py +84 -0
- imap_processing/ultra/l1c/ultra_l1c.py +8 -9
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +206 -108
- 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 +31 -12
- imap_processing/utils.py +69 -29
- {imap_processing-0.11.0.dist-info → imap_processing-0.13.0.dist-info}/METADATA +10 -6
- imap_processing-0.13.0.dist-info/RECORD +578 -0
- imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +0 -237
- imap_processing/hi/l1a/housekeeping.py +0 -27
- imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +0 -154
- imap_processing/swe/l1b/swe_esa_lookup_table.csv +0 -1441
- imap_processing/swe/l1b/swe_l1b_science.py +0 -652
- 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/hi/data/l1/imap_hi_l1b_45sensor-de_20250415_v999.cdf +0 -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/validation_data/hskp_sample_eu.csv +0 -89
- imap_processing/tests/hit/validation_data/sci_sample_raw1.csv +0 -29
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20231214_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/swe/test_swe_l1b_science.py +0 -84
- imap_processing/tests/ultra/test_data/mock_data.py +0 -161
- imap_processing/ultra/l1c/pset.py +0 -40
- imap_processing/ultra/lookup_tables/dps_sensitivity45.cdf +0 -0
- imap_processing-0.11.0.dist-info/RECORD +0 -488
- /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/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/{mag/l1b → tests/spacecraft}/__init__.py +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/tests/ultra/{test_data → data}/l0/FM45_40P_Phi28p5_BeamCal_LinearScan_phi28.50_theta-0.00_20240207T102740.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/FM45_7P_Phi0.0_BeamCal_LinearScan_phi0.04_theta-0.01_20230821T121304.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.CCSDS +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_auxdata_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_enaphxtofhangimg_FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultraimgrates_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultrarawimgevent_FM45_7P_Phi00_BeamCal_LinearScan_phi004_theta-001_20230821T121304.csv +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E1.cdf +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E12.cdf +0 -0
- /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E24.cdf +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.13.0.dist-info}/LICENSE +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.13.0.dist-info}/WHEEL +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.13.0.dist-info}/entry_points.txt +0 -0
|
@@ -326,156 +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>
|
|
329
|
+
<!-- CoDICE LO -->
|
|
330
|
+
<xtce:Parameter name="COD_LO_ACQ" parameterTypeRef="uint32">
|
|
331
|
+
<xtce:LongDescription>CODICE LO Acquisition Time</xtce:LongDescription>
|
|
419
332
|
</xtce:Parameter>
|
|
420
|
-
<xtce:Parameter name="
|
|
421
|
-
<xtce:LongDescription>
|
|
333
|
+
<xtce:Parameter name="COD_LO_STATUS" parameterTypeRef="uint8">
|
|
334
|
+
<xtce:LongDescription>CODICE LO Status</xtce:LongDescription>
|
|
422
335
|
</xtce:Parameter>
|
|
423
|
-
<xtce:Parameter name="
|
|
424
|
-
<xtce:LongDescription>
|
|
336
|
+
<xtce:Parameter name="COD_LO_COUNTER" parameterTypeRef="uint8">
|
|
337
|
+
<xtce:LongDescription>CODICE LO Counter</xtce:LongDescription>
|
|
425
338
|
</xtce:Parameter>
|
|
426
|
-
<xtce:Parameter name="
|
|
427
|
-
<xtce:LongDescription>
|
|
339
|
+
<xtce:Parameter name="COD_LO_DATA_00" parameterTypeRef="uint8">
|
|
340
|
+
<xtce:LongDescription>CODICE LO Data_00</xtce:LongDescription>
|
|
428
341
|
</xtce:Parameter>
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
<xtce:Parameter name="MAG_ACQ" parameterTypeRef="uint48">
|
|
432
|
-
<xtce:LongDescription>MAG Acquisition Time</xtce:LongDescription>
|
|
342
|
+
<xtce:Parameter name="COD_LO_DATA_01" parameterTypeRef="uint8">
|
|
343
|
+
<xtce:LongDescription>CODICE LO Data_01</xtce:LongDescription>
|
|
433
344
|
</xtce:Parameter>
|
|
434
|
-
<xtce:Parameter name="
|
|
435
|
-
<xtce:LongDescription>
|
|
345
|
+
<xtce:Parameter name="COD_LO_DATA_02" parameterTypeRef="uint8">
|
|
346
|
+
<xtce:LongDescription>CODICE LO Data_02</xtce:LongDescription>
|
|
436
347
|
</xtce:Parameter>
|
|
437
|
-
<xtce:Parameter name="
|
|
438
|
-
<xtce:LongDescription>
|
|
348
|
+
<xtce:Parameter name="COD_LO_DATA_03" parameterTypeRef="uint8">
|
|
349
|
+
<xtce:LongDescription>CODICE LO Data_03</xtce:LongDescription>
|
|
439
350
|
</xtce:Parameter>
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
<xtce:Parameter name="SWAPI_ACQ" parameterTypeRef="uint32">
|
|
443
|
-
<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>
|
|
444
353
|
</xtce:Parameter>
|
|
445
|
-
<xtce:Parameter name="
|
|
446
|
-
<xtce:LongDescription>
|
|
354
|
+
<xtce:Parameter name="COD_LO_DATA_05" parameterTypeRef="uint8">
|
|
355
|
+
<xtce:LongDescription>CODICE LO Data_05</xtce:LongDescription>
|
|
447
356
|
</xtce:Parameter>
|
|
448
|
-
<xtce:Parameter name="
|
|
449
|
-
<xtce:LongDescription>
|
|
357
|
+
<xtce:Parameter name="COD_LO_DATA_06" parameterTypeRef="uint8">
|
|
358
|
+
<xtce:LongDescription>CODICE LO Data_06</xtce:LongDescription>
|
|
450
359
|
</xtce:Parameter>
|
|
451
|
-
<xtce:Parameter name="
|
|
452
|
-
<xtce:LongDescription>
|
|
360
|
+
<xtce:Parameter name="COD_LO_DATA_07" parameterTypeRef="uint8">
|
|
361
|
+
<xtce:LongDescription>CODICE LO Data_07</xtce:LongDescription>
|
|
453
362
|
</xtce:Parameter>
|
|
454
|
-
<xtce:Parameter name="
|
|
455
|
-
<xtce:LongDescription>
|
|
363
|
+
<xtce:Parameter name="COD_LO_DATA_08" parameterTypeRef="uint8">
|
|
364
|
+
<xtce:LongDescription>CODICE LO Data_08</xtce:LongDescription>
|
|
456
365
|
</xtce:Parameter>
|
|
457
|
-
<xtce:Parameter name="
|
|
458
|
-
<xtce:LongDescription>
|
|
366
|
+
<xtce:Parameter name="COD_LO_DATA_09" parameterTypeRef="uint8">
|
|
367
|
+
<xtce:LongDescription>CODICE LO Data_09</xtce:LongDescription>
|
|
459
368
|
</xtce:Parameter>
|
|
460
|
-
<xtce:Parameter name="
|
|
461
|
-
<xtce:LongDescription>
|
|
369
|
+
<xtce:Parameter name="COD_LO_DATA_10" parameterTypeRef="uint8">
|
|
370
|
+
<xtce:LongDescription>CODICE LO Data_10</xtce:LongDescription>
|
|
462
371
|
</xtce:Parameter>
|
|
463
|
-
<xtce:Parameter name="
|
|
464
|
-
<xtce:LongDescription>
|
|
372
|
+
<xtce:Parameter name="COD_LO_DATA_11" parameterTypeRef="uint8">
|
|
373
|
+
<xtce:LongDescription>CODICE LO Data_11</xtce:LongDescription>
|
|
465
374
|
</xtce:Parameter>
|
|
466
|
-
<xtce:Parameter name="
|
|
467
|
-
<xtce:LongDescription>
|
|
375
|
+
<xtce:Parameter name="COD_LO_DATA_12" parameterTypeRef="uint8">
|
|
376
|
+
<xtce:LongDescription>CODICE LO Data_12</xtce:LongDescription>
|
|
468
377
|
</xtce:Parameter>
|
|
469
|
-
<xtce:Parameter name="
|
|
470
|
-
<xtce:LongDescription>
|
|
378
|
+
<xtce:Parameter name="COD_LO_DATA_13" parameterTypeRef="uint8">
|
|
379
|
+
<xtce:LongDescription>CODICE LO Data_13</xtce:LongDescription>
|
|
471
380
|
</xtce:Parameter>
|
|
472
|
-
<xtce:Parameter name="
|
|
473
|
-
<xtce:LongDescription>
|
|
381
|
+
<xtce:Parameter name="COD_LO_DATA_14" parameterTypeRef="uint8">
|
|
382
|
+
<xtce:LongDescription>CODICE LO Data_14</xtce:LongDescription>
|
|
474
383
|
</xtce:Parameter>
|
|
475
|
-
<xtce:Parameter name="
|
|
476
|
-
<xtce:LongDescription>Spare</xtce:LongDescription>
|
|
384
|
+
<xtce:Parameter name="COD_LO_SPARE_0" parameterTypeRef="uint8">
|
|
385
|
+
<xtce:LongDescription>CODICE LO Spare 0</xtce:LongDescription>
|
|
477
386
|
</xtce:Parameter>
|
|
478
|
-
<!--
|
|
387
|
+
<!-- CoDICE LO -->
|
|
479
388
|
<!-- CoDICE HI -->
|
|
480
389
|
<xtce:Parameter name="COD_HI_ACQ" parameterTypeRef="uint32">
|
|
481
390
|
<xtce:LongDescription>CODICE HI Acquisition Time</xtce:LongDescription>
|
|
@@ -505,65 +414,48 @@
|
|
|
505
414
|
<xtce:LongDescription>CODICE HI Spare 0</xtce:LongDescription>
|
|
506
415
|
</xtce:Parameter>
|
|
507
416
|
<!-- CoDICE HI -->
|
|
508
|
-
<!--
|
|
509
|
-
<xtce:Parameter name="
|
|
510
|
-
<xtce:LongDescription>
|
|
511
|
-
</xtce:Parameter>
|
|
512
|
-
<xtce:Parameter name="COD_LO_STATUS" parameterTypeRef="uint8">
|
|
513
|
-
<xtce:LongDescription>CODICE LO Status</xtce:LongDescription>
|
|
514
|
-
</xtce:Parameter>
|
|
515
|
-
<xtce:Parameter name="COD_LO_COUNTER" parameterTypeRef="uint8">
|
|
516
|
-
<xtce:LongDescription>CODICE LO Counter</xtce:LongDescription>
|
|
517
|
-
</xtce:Parameter>
|
|
518
|
-
<xtce:Parameter name="COD_LO_DATA_00" parameterTypeRef="uint8">
|
|
519
|
-
<xtce:LongDescription>CODICE LO Data_00</xtce:LongDescription>
|
|
520
|
-
</xtce:Parameter>
|
|
521
|
-
<xtce:Parameter name="COD_LO_DATA_01" parameterTypeRef="uint8">
|
|
522
|
-
<xtce:LongDescription>CODICE LO Data_01</xtce:LongDescription>
|
|
523
|
-
</xtce:Parameter>
|
|
524
|
-
<xtce:Parameter name="COD_LO_DATA_02" parameterTypeRef="uint8">
|
|
525
|
-
<xtce:LongDescription>CODICE LO Data_02</xtce:LongDescription>
|
|
526
|
-
</xtce:Parameter>
|
|
527
|
-
<xtce:Parameter name="COD_LO_DATA_03" parameterTypeRef="uint8">
|
|
528
|
-
<xtce:LongDescription>CODICE LO Data_03</xtce:LongDescription>
|
|
529
|
-
</xtce:Parameter>
|
|
530
|
-
<xtce:Parameter name="COD_LO_DATA_04" parameterTypeRef="uint8">
|
|
531
|
-
<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>
|
|
532
420
|
</xtce:Parameter>
|
|
533
|
-
<xtce:Parameter name="
|
|
534
|
-
<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>
|
|
535
427
|
</xtce:Parameter>
|
|
536
|
-
<xtce:Parameter name="
|
|
537
|
-
<xtce:LongDescription>
|
|
428
|
+
<xtce:Parameter name="SWAPI_RESERVED" parameterTypeRef="uint15">
|
|
429
|
+
<xtce:LongDescription>SWAPI Instrument Reserved</xtce:LongDescription>
|
|
538
430
|
</xtce:Parameter>
|
|
539
|
-
<xtce:Parameter name="
|
|
540
|
-
<xtce:LongDescription>
|
|
431
|
+
<xtce:Parameter name="SWAPI_SEQ_NUMBER" parameterTypeRef="uint4">
|
|
432
|
+
<xtce:LongDescription>Sequence Number in Table</xtce:LongDescription>
|
|
541
433
|
</xtce:Parameter>
|
|
542
|
-
<xtce:Parameter name="
|
|
543
|
-
<xtce:LongDescription>
|
|
434
|
+
<xtce:Parameter name="SWAPI_VERSION" parameterTypeRef="uint4">
|
|
435
|
+
<xtce:LongDescription>Sweep Table Version Number</xtce:LongDescription>
|
|
544
436
|
</xtce:Parameter>
|
|
545
|
-
<xtce:Parameter name="
|
|
546
|
-
<xtce:LongDescription>
|
|
437
|
+
<xtce:Parameter name="SWAPI_COIN_CNT0" parameterTypeRef="uint16">
|
|
438
|
+
<xtce:LongDescription>Coincidence Counts During the First 1/6 Sec</xtce:LongDescription>
|
|
547
439
|
</xtce:Parameter>
|
|
548
|
-
<xtce:Parameter name="
|
|
549
|
-
<xtce:LongDescription>
|
|
440
|
+
<xtce:Parameter name="SWAPI_COIN_CNT1" parameterTypeRef="uint16">
|
|
441
|
+
<xtce:LongDescription>Coincidence Counts During the Second 1/6 Sec</xtce:LongDescription>
|
|
550
442
|
</xtce:Parameter>
|
|
551
|
-
<xtce:Parameter name="
|
|
552
|
-
<xtce:LongDescription>
|
|
443
|
+
<xtce:Parameter name="SWAPI_COIN_CNT2" parameterTypeRef="uint16">
|
|
444
|
+
<xtce:LongDescription>Coincidence Counts During the Third 1/6 Sec</xtce:LongDescription>
|
|
553
445
|
</xtce:Parameter>
|
|
554
|
-
<xtce:Parameter name="
|
|
555
|
-
<xtce:LongDescription>
|
|
446
|
+
<xtce:Parameter name="SWAPI_COIN_CNT3" parameterTypeRef="uint16">
|
|
447
|
+
<xtce:LongDescription>Coincidence Counts During the Fourth 1/6 Sec</xtce:LongDescription>
|
|
556
448
|
</xtce:Parameter>
|
|
557
|
-
<xtce:Parameter name="
|
|
558
|
-
<xtce:LongDescription>
|
|
449
|
+
<xtce:Parameter name="SWAPI_COIN_CNT4" parameterTypeRef="uint16">
|
|
450
|
+
<xtce:LongDescription>Coincidence Counts During the Fifth 1/6 Sec</xtce:LongDescription>
|
|
559
451
|
</xtce:Parameter>
|
|
560
|
-
<xtce:Parameter name="
|
|
561
|
-
<xtce:LongDescription>
|
|
452
|
+
<xtce:Parameter name="SWAPI_COIN_CNT5" parameterTypeRef="uint16">
|
|
453
|
+
<xtce:LongDescription>Coincidence Counts During the Sixth 1/6 Sec</xtce:LongDescription>
|
|
562
454
|
</xtce:Parameter>
|
|
563
|
-
<xtce:Parameter name="
|
|
564
|
-
<xtce:LongDescription>
|
|
455
|
+
<xtce:Parameter name="SWAPI_SPARE" parameterTypeRef="uint8">
|
|
456
|
+
<xtce:LongDescription>Spare</xtce:LongDescription>
|
|
565
457
|
</xtce:Parameter>
|
|
566
|
-
<!--
|
|
458
|
+
<!-- SWAPI -->
|
|
567
459
|
<!-- HIT -->
|
|
568
460
|
<xtce:Parameter name="HIT_MET" parameterTypeRef="uint32">
|
|
569
461
|
<xtce:LongDescription>Mission elapsed time</xtce:LongDescription>
|
|
@@ -620,6 +512,121 @@
|
|
|
620
512
|
<xtce:LongDescription>event data 10</xtce:LongDescription>
|
|
621
513
|
</xtce:Parameter>
|
|
622
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 -->
|
|
623
630
|
</xtce:ParameterSet>
|
|
624
631
|
<!-- End metadata -->
|
|
625
632
|
<xtce:ContainerSet>
|
|
@@ -673,36 +680,6 @@
|
|
|
673
680
|
<xtce:ParameterRefEntry parameterRef="SC_AUTONOMY"/>
|
|
674
681
|
<xtce:ParameterRefEntry parameterRef="SC_SPARE_3"/>
|
|
675
682
|
<!-- Spacecraft -->
|
|
676
|
-
<!-- MAG -->
|
|
677
|
-
<xtce:ParameterRefEntry parameterRef="MAG_ACQ"/>
|
|
678
|
-
<xtce:ParameterRefEntry parameterRef="MAG_STATUS"/>
|
|
679
|
-
<xtce:ParameterRefEntry parameterRef="MAG_DATA"/>
|
|
680
|
-
<!-- MAG -->
|
|
681
|
-
<!-- SWAPI -->
|
|
682
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_ACQ"/>
|
|
683
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_FLAG"/>
|
|
684
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_RESERVED"/>
|
|
685
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_SEQ"/>
|
|
686
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_VERSION"/>
|
|
687
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_1"/>
|
|
688
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_2"/>
|
|
689
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_3"/>
|
|
690
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_4"/>
|
|
691
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_5"/>
|
|
692
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_COIN_6"/>
|
|
693
|
-
<xtce:ParameterRefEntry parameterRef="SWAPI_SPARE"/>
|
|
694
|
-
<!-- SWAPI -->
|
|
695
|
-
<!-- CoDICE HI -->
|
|
696
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_ACQ"/>
|
|
697
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_STATUS"/>
|
|
698
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_COUNTER"/>
|
|
699
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_00"/>
|
|
700
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_01"/>
|
|
701
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_02"/>
|
|
702
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_03"/>
|
|
703
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_DATA_04"/>
|
|
704
|
-
<xtce:ParameterRefEntry parameterRef="COD_HI_SPARE_0"/>
|
|
705
|
-
<!-- CoDICE HI -->
|
|
706
683
|
<!-- CoDICE LO -->
|
|
707
684
|
<xtce:ParameterRefEntry parameterRef="COD_LO_ACQ"/>
|
|
708
685
|
<xtce:ParameterRefEntry parameterRef="COD_LO_STATUS"/>
|
|
@@ -724,6 +701,31 @@
|
|
|
724
701
|
<xtce:ParameterRefEntry parameterRef="COD_LO_DATA_14"/>
|
|
725
702
|
<xtce:ParameterRefEntry parameterRef="COD_LO_SPARE_0"/>
|
|
726
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 -->
|
|
727
729
|
<!-- HIT -->
|
|
728
730
|
<xtce:ParameterRefEntry parameterRef="HIT_MET"/>
|
|
729
731
|
<xtce:ParameterRefEntry parameterRef="HIT_STATUS"/>
|
|
@@ -779,6 +781,12 @@
|
|
|
779
781
|
<xtce:ParameterRefEntry parameterRef="SWE_CEM7_E3"/>
|
|
780
782
|
<xtce:ParameterRefEntry parameterRef="SWE_CEM7_E4"/>
|
|
781
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 -->
|
|
782
790
|
</xtce:EntryList>
|
|
783
791
|
</xtce:SequenceContainer>
|
|
784
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>
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
|
2
|
+
<xtce:SpaceSystem xmlns:xtce="http://www.omg.org/space/xtce" name="ialirt">
|
|
3
|
+
<xtce:Header date="2023-08-24T07:53:00MST" version="1.0" author="IMAP SDC" />
|
|
4
|
+
<xtce:TelemetryMetaData>
|
|
5
|
+
<xtce:ParameterTypeSet>
|
|
6
|
+
<!-- This file was manually created using content from:
|
|
7
|
+
I-ALiRT Packet Definitions: https://lasp.colorado.edu/galaxy/x/44nKCQ
|
|
8
|
+
-->
|
|
9
|
+
<xtce:IntegerParameterType name="uint1" signed="false">
|
|
10
|
+
<xtce:IntegerDataEncoding sizeInBits="1" encoding="unsigned" />
|
|
11
|
+
<xtce:UnitSet />
|
|
12
|
+
</xtce:IntegerParameterType>
|
|
13
|
+
<xtce:IntegerParameterType name="uint2" signed="false">
|
|
14
|
+
<xtce:IntegerDataEncoding sizeInBits="2" encoding="unsigned" />
|
|
15
|
+
<xtce:UnitSet />
|
|
16
|
+
</xtce:IntegerParameterType>
|
|
17
|
+
<xtce:IntegerParameterType name="uint3" signed="false">
|
|
18
|
+
<xtce:IntegerDataEncoding sizeInBits="3" encoding="unsigned" />
|
|
19
|
+
<xtce:UnitSet />
|
|
20
|
+
</xtce:IntegerParameterType>
|
|
21
|
+
<xtce:IntegerParameterType name="uint11" signed="false">
|
|
22
|
+
<xtce:IntegerDataEncoding sizeInBits="11" encoding="unsigned" />
|
|
23
|
+
<xtce:UnitSet />
|
|
24
|
+
</xtce:IntegerParameterType>
|
|
25
|
+
<xtce:IntegerParameterType name="uint14" signed="false">
|
|
26
|
+
<xtce:IntegerDataEncoding sizeInBits="14" encoding="unsigned" />
|
|
27
|
+
<xtce:UnitSet />
|
|
28
|
+
</xtce:IntegerParameterType>
|
|
29
|
+
<xtce:IntegerParameterType name="uint16" signed="false">
|
|
30
|
+
<xtce:IntegerDataEncoding sizeInBits="16" encoding="unsigned" />
|
|
31
|
+
<xtce:UnitSet />
|
|
32
|
+
</xtce:IntegerParameterType>
|
|
33
|
+
<xtce:IntegerParameterType name="uint24" signed="false">
|
|
34
|
+
<xtce:IntegerDataEncoding sizeInBits="24" encoding="unsigned" />
|
|
35
|
+
<xtce:UnitSet />
|
|
36
|
+
</xtce:IntegerParameterType>
|
|
37
|
+
<xtce:IntegerParameterType name="uint32" signed="false">
|
|
38
|
+
<xtce:IntegerDataEncoding sizeInBits="32" encoding="unsigned" />
|
|
39
|
+
<xtce:UnitSet />
|
|
40
|
+
</xtce:IntegerParameterType>
|
|
41
|
+
</xtce:ParameterTypeSet>
|
|
42
|
+
<xtce:ParameterSet>
|
|
43
|
+
|
|
44
|
+
<!--CCSDS Header Elements-->
|
|
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
|
+
<!-- MAG -->
|
|
67
|
+
<xtce:Parameter name="MAG_SHCOARSE" parameterTypeRef="uint32">
|
|
68
|
+
<xtce:LongDescription>MAG MET at End of Data Acquisition</xtce:LongDescription>
|
|
69
|
+
</xtce:Parameter>
|
|
70
|
+
<xtce:Parameter name="MAG_ACQ_TM_COARSE" parameterTypeRef="uint32">
|
|
71
|
+
<xtce:LongDescription>MAG Coarse Acquisition Time</xtce:LongDescription>
|
|
72
|
+
</xtce:Parameter>
|
|
73
|
+
<xtce:Parameter name="MAG_ACQ_TM_FINE" parameterTypeRef="uint16">
|
|
74
|
+
<xtce:LongDescription>MAG Fine Acquisition Time</xtce:LongDescription>
|
|
75
|
+
</xtce:Parameter>
|
|
76
|
+
<xtce:Parameter name="MAG_STATUS" parameterTypeRef="uint24">
|
|
77
|
+
<xtce:LongDescription>MAG Status</xtce:LongDescription>
|
|
78
|
+
</xtce:Parameter>
|
|
79
|
+
<xtce:Parameter name="MAG_DATA" parameterTypeRef="uint24">
|
|
80
|
+
<xtce:LongDescription>MAG Data</xtce:LongDescription>
|
|
81
|
+
</xtce:Parameter>
|
|
82
|
+
<!-- MAG -->
|
|
83
|
+
</xtce:ParameterSet>
|
|
84
|
+
<!-- End metadata -->
|
|
85
|
+
<xtce:ContainerSet>
|
|
86
|
+
<xtce:SequenceContainer name="CCSDSPacket" >
|
|
87
|
+
<xtce:EntryList>
|
|
88
|
+
<xtce:ParameterRefEntry parameterRef="VERSION" />
|
|
89
|
+
<xtce:ParameterRefEntry parameterRef="TYPE" />
|
|
90
|
+
<xtce:ParameterRefEntry parameterRef="SEC_HDR_FLG" />
|
|
91
|
+
<xtce:ParameterRefEntry parameterRef="PKT_APID" />
|
|
92
|
+
<xtce:ParameterRefEntry parameterRef="SEQ_FLGS" />
|
|
93
|
+
<xtce:ParameterRefEntry parameterRef="SRC_SEQ_CTR" />
|
|
94
|
+
<xtce:ParameterRefEntry parameterRef="PKT_LEN" />
|
|
95
|
+
</xtce:EntryList>
|
|
96
|
+
</xtce:SequenceContainer>
|
|
97
|
+
<xtce:SequenceContainer name="IALiRTPacket">
|
|
98
|
+
<xtce:BaseContainer containerRef="CCSDSPacket">
|
|
99
|
+
<xtce:RestrictionCriteria>
|
|
100
|
+
<xtce:Comparison parameterRef="PKT_APID" value="1001" useCalibratedValue="false" />
|
|
101
|
+
</xtce:RestrictionCriteria>
|
|
102
|
+
</xtce:BaseContainer>
|
|
103
|
+
<xtce:EntryList>
|
|
104
|
+
<!-- MAG -->
|
|
105
|
+
<xtce:ParameterRefEntry parameterRef="MAG_SHCOARSE"/>
|
|
106
|
+
<xtce:ParameterRefEntry parameterRef="MAG_ACQ_TM_COARSE"/>
|
|
107
|
+
<xtce:ParameterRefEntry parameterRef="MAG_ACQ_TM_FINE"/>
|
|
108
|
+
<xtce:ParameterRefEntry parameterRef="MAG_STATUS"/>
|
|
109
|
+
<xtce:ParameterRefEntry parameterRef="MAG_DATA"/>
|
|
110
|
+
<!-- MAG -->
|
|
111
|
+
</xtce:EntryList>
|
|
112
|
+
</xtce:SequenceContainer>
|
|
113
|
+
</xtce:ContainerSet>
|
|
114
|
+
</xtce:TelemetryMetaData>
|
|
115
|
+
</xtce:SpaceSystem>
|