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
|
@@ -11,21 +11,37 @@ instrument_base: &instrument_base
|
|
|
11
11
|
|
|
12
12
|
imap_idex_l1a_sci:
|
|
13
13
|
<<: *instrument_base
|
|
14
|
-
Data_level: 1A
|
|
15
14
|
Data_type: L1A_SCI>Level-1A Science Data
|
|
16
|
-
Logical_source: imap_idex_l1a_sci
|
|
15
|
+
Logical_source: imap_idex_l1a_sci-1week
|
|
17
16
|
Logical_source_description: IMAP Mission IDEX Instrument Level-1A Data.
|
|
18
17
|
|
|
18
|
+
imap_idex_l1a_evt:
|
|
19
|
+
<<: *instrument_base
|
|
20
|
+
Data_type: L1A_EVT>Level-1A Event Message Data
|
|
21
|
+
Logical_source: imap_idex_l1a_evt
|
|
22
|
+
Logical_source_description: IMAP Mission IDEX Instrument Level-1A Event Message Data.
|
|
23
|
+
|
|
24
|
+
imap_idex_l1a_catlst:
|
|
25
|
+
<<: *instrument_base
|
|
26
|
+
Data_type: L1A_CATLST>Level-1A Packet Catalog Summary Data
|
|
27
|
+
Logical_source: imap_idex_l1a_catlst
|
|
28
|
+
Logical_source_description: IMAP Mission IDEX Instrument Level-1A Packet Catalog Summary Data.
|
|
29
|
+
|
|
19
30
|
imap_idex_l1b_sci:
|
|
20
31
|
<<: *instrument_base
|
|
21
|
-
Data_level: 1B
|
|
22
32
|
Data_type: L1B_SCI>Level-1B Science Data
|
|
23
|
-
Logical_source: imap_idex_l1b_sci
|
|
33
|
+
Logical_source: imap_idex_l1b_sci-1week
|
|
24
34
|
Logical_source_description: IMAP Mission IDEX Instrument Level-1B Data.
|
|
25
35
|
|
|
26
|
-
|
|
36
|
+
imap_idex_l2a_sci:
|
|
37
|
+
<<: *instrument_base
|
|
38
|
+
Data_type: L2A_SCI>Level-2A Science Data
|
|
39
|
+
Logical_source: imap_idex_l2a_sci-1week
|
|
40
|
+
Logical_source_description: IMAP Mission IDEX Instrument Level-2A Data
|
|
41
|
+
|
|
42
|
+
imap_idex_l2b_sci:
|
|
27
43
|
<<: *instrument_base
|
|
28
|
-
Data_level:
|
|
29
|
-
Data_type:
|
|
30
|
-
Logical_source:
|
|
31
|
-
Logical_source_description: IMAP Mission IDEX Instrument Level-
|
|
44
|
+
Data_level: 2B
|
|
45
|
+
Data_type: L2B_SCI>Level-2B Science Data
|
|
46
|
+
Logical_source: imap_idex_l2b_sci # TODO how often?
|
|
47
|
+
Logical_source_description: IMAP Mission IDEX Instrument Level-2B Data
|
|
@@ -38,12 +38,12 @@ l1a_data_base: &l1a_data_base
|
|
|
38
38
|
|
|
39
39
|
l1a_tof_base: &l1a_tof_base
|
|
40
40
|
<<: *l1a_data_base
|
|
41
|
-
DEPEND_1:
|
|
41
|
+
DEPEND_1: time_high_sample_rate_index
|
|
42
42
|
LABL_PTR_1: time_high_sample_rate_label
|
|
43
43
|
|
|
44
44
|
l1a_target_base: &l1a_target_base
|
|
45
45
|
<<: *l1a_data_base
|
|
46
|
-
DEPEND_1:
|
|
46
|
+
DEPEND_1: time_low_sample_rate_index
|
|
47
47
|
LABL_PTR_1: time_low_sample_rate_label
|
|
48
48
|
|
|
49
49
|
sample_rate_base: &sample_rate_base
|
|
@@ -57,7 +57,7 @@ sample_rate_base: &sample_rate_base
|
|
|
57
57
|
FORMAT: F64.5
|
|
58
58
|
LABLAXIS: Time
|
|
59
59
|
UNITS: microseconds
|
|
60
|
-
VAR_TYPE:
|
|
60
|
+
VAR_TYPE: data
|
|
61
61
|
VAR_NOTES: The number of microseconds since the event.
|
|
62
62
|
0 is the start of data collection, negative
|
|
63
63
|
numbers represent data collected prior to a dust event
|
|
@@ -96,6 +96,7 @@ low_sample_rate_attrs:
|
|
|
96
96
|
VAR_NOTES: The low sample rate in microseconds. Steps are approximately 1/4.025
|
|
97
97
|
microseconds in duration. Used by the Ion_Grid, Target_Low, and
|
|
98
98
|
Target_High variables.
|
|
99
|
+
DEPEND_1: time_low_sample_rate_index
|
|
99
100
|
|
|
100
101
|
high_sample_rate_attrs:
|
|
101
102
|
<<: *sample_rate_base
|
|
@@ -104,6 +105,7 @@ high_sample_rate_attrs:
|
|
|
104
105
|
VAR_NOTES: The high sample rate in microseconds. Steps are approximately 1/260
|
|
105
106
|
microseconds in duration. Used by the TOF_High, TOF_Mid, and
|
|
106
107
|
TOF_Low variables.
|
|
108
|
+
DEPEND_1: time_high_sample_rate_index
|
|
107
109
|
|
|
108
110
|
time_low_sample_rate_index:
|
|
109
111
|
CATDESC: Low sampling rate time index
|
|
@@ -119,7 +121,7 @@ time_low_sample_rate_index:
|
|
|
119
121
|
|
|
120
122
|
time_high_sample_rate_index:
|
|
121
123
|
CATDESC: High sampling rate time index
|
|
122
|
-
FIELDNAM:
|
|
124
|
+
FIELDNAM: High sample rate
|
|
123
125
|
FILLVAL: *int_fillval
|
|
124
126
|
FORMAT: I3
|
|
125
127
|
LABLAXIS: Sample Rate
|
|
@@ -31,12 +31,12 @@ l1b_data_base: &l1b_data_base
|
|
|
31
31
|
|
|
32
32
|
l1b_tof_base: &l1b_tof_base
|
|
33
33
|
<<: *l1b_data_base
|
|
34
|
-
DEPEND_1:
|
|
34
|
+
DEPEND_1: time_high_sample_rate_index
|
|
35
35
|
LABL_PTR_1: time_high_sample_rate_label
|
|
36
36
|
|
|
37
37
|
l1b_target_base: &l1b_target_base
|
|
38
38
|
<<: *l1b_data_base
|
|
39
|
-
DEPEND_1:
|
|
39
|
+
DEPEND_1: time_low_sample_rate_index
|
|
40
40
|
LABL_PTR_1: time_low_sample_rate_label
|
|
41
41
|
|
|
42
42
|
trigger_base: &trigger_base
|
|
@@ -286,7 +286,7 @@ voltage_pos5v_bus:
|
|
|
286
286
|
LABLAXIS: Voltage
|
|
287
287
|
UNITS: V
|
|
288
288
|
|
|
289
|
-
|
|
289
|
+
current_3p3v_bus:
|
|
290
290
|
<<: *trigger_base
|
|
291
291
|
FIELDNAM: P3.3_IMON
|
|
292
292
|
CATDESC: Positive current reading on +3.3V bus on LVPS Board (ADC 1 channel 0)
|
|
@@ -7,84 +7,72 @@ instrument_base: &instrument_base
|
|
|
7
7
|
|
|
8
8
|
imap_lo_l1a_de:
|
|
9
9
|
<<: *instrument_base
|
|
10
|
-
Data_level: 1A
|
|
11
10
|
Data_type: L1A_de>Level-1A Science Direct Events
|
|
12
11
|
Logical_source: imap_lo_l1a_de
|
|
13
12
|
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1A Data
|
|
14
13
|
|
|
15
14
|
imap_lo_l1a_histogram:
|
|
16
15
|
<<: *instrument_base
|
|
17
|
-
Data_level: 1A
|
|
18
16
|
Data_type: L1A_histogram>Level-1A Science Counts
|
|
19
17
|
Logical_source: imap_lo_l1a_histogram
|
|
20
18
|
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1A Data
|
|
21
19
|
|
|
22
20
|
imap_lo_l1a_star:
|
|
23
21
|
<<: *instrument_base
|
|
24
|
-
Data_level: 1A
|
|
25
22
|
Data_type: L1A_star>Level-1A Star Sensor
|
|
26
23
|
Logical_source: imap_lo_l1a_star
|
|
27
24
|
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1A Data
|
|
28
25
|
|
|
29
26
|
imap_lo_l1a_spin:
|
|
30
27
|
<<: *instrument_base
|
|
31
|
-
Data_level: 1A
|
|
32
28
|
Data_type: L1A_star>Level-1A Spin
|
|
33
29
|
Logical_source: imap_lo_l1a_spin
|
|
34
30
|
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1A Data
|
|
35
31
|
|
|
36
32
|
imap_lo_l1b_badtimes:
|
|
37
33
|
<<: *instrument_base
|
|
38
|
-
Data_level: 1B
|
|
39
34
|
Data_type: L1B_badtimes>Level-1B Badtimes
|
|
40
35
|
Logical_source: imap_lo_l1b_badtimes
|
|
41
36
|
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
|
|
42
37
|
|
|
43
38
|
imap_lo_l1b_de:
|
|
44
39
|
<<: *instrument_base
|
|
45
|
-
Data_level: 1B
|
|
46
40
|
Data_type: L1B_de>Level-1B Annotated Direct Events
|
|
47
41
|
Logical_source: imap_lo_l1b_de
|
|
48
42
|
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
|
|
49
43
|
|
|
50
44
|
imap_lo_l1b_monitorrates:
|
|
51
45
|
<<: *instrument_base
|
|
52
|
-
Data_level: 1B
|
|
53
46
|
Data_type: L1B_monitorrates>Level-1B Monitor Rates
|
|
54
47
|
Logical_source: imap_lo_l1b_monitorrates
|
|
55
48
|
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
|
|
56
49
|
|
|
57
50
|
imap_lo_l1b_histogramrates:
|
|
58
51
|
<<: *instrument_base
|
|
59
|
-
Data_level: 1B
|
|
60
52
|
Data_type: L1B_histogramrates>Level-1B Histogram Rates
|
|
61
53
|
Logical_source: imap_lo_l1b_histogramrrates
|
|
62
54
|
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
|
|
63
55
|
|
|
64
56
|
imap_lo_l1b_derates:
|
|
65
57
|
<<: *instrument_base
|
|
66
|
-
Data_level: 1B
|
|
67
58
|
Data_type: L1B_derates>Level-1B Direct Event Rates
|
|
68
59
|
Logical_source: imap_lo_l1b_derates
|
|
69
60
|
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
|
|
70
61
|
|
|
71
62
|
imap_lo_l1b_prostar:
|
|
72
63
|
<<: *instrument_base
|
|
73
|
-
Data_level: 1B
|
|
74
64
|
Data_type: L1B_prostar>Level-1B Processed Star Sensor
|
|
75
65
|
Logical_source: imap_lo_l1b_prostar
|
|
76
66
|
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
|
|
77
67
|
|
|
78
68
|
imap_lo_l1c_goodtimes:
|
|
79
69
|
<<: *instrument_base
|
|
80
|
-
Data_level: 1C
|
|
81
70
|
Data_type: L1C_goodtimes>Level-1C Goodtimes List
|
|
82
71
|
Logical_source: imap_lo_l1c_goodtimes
|
|
83
72
|
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1C Data
|
|
84
73
|
|
|
85
74
|
imap_lo_l1c_pset:
|
|
86
75
|
<<: *instrument_base
|
|
87
|
-
Data_level: 1C
|
|
88
76
|
Data_type: L1C_pset>Level-1C Pointing Set
|
|
89
77
|
Logical_source: imap_lo_l1c_pset
|
|
90
78
|
Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1C Data
|
|
@@ -2,96 +2,99 @@ default: &default
|
|
|
2
2
|
Descriptor:
|
|
3
3
|
MAG>Magnetometer
|
|
4
4
|
TEXT: >
|
|
5
|
-
The IMAP magnetometer
|
|
6
|
-
which
|
|
7
|
-
the
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
MAG design and
|
|
11
|
-
|
|
12
|
-
|
|
5
|
+
The IMAP magnetometer MAG consists of two vector magnetic field sensors
|
|
6
|
+
which measure the magnetic field in the vicinity of the
|
|
7
|
+
spacecraft. MAG will contribute to our understanding of the acceleration and transport
|
|
8
|
+
of charged particles in the heliosphere, the dynamics of interplanetary shocks, and provide
|
|
9
|
+
real time space weather measurements via the I-AliRT service.
|
|
10
|
+
MAG design, assembly, operations, and calibration are led by Imperial
|
|
11
|
+
College London. See
|
|
12
|
+
https://imap.princeton.edu/spacecraft/instruments/magnetometer-mag for more details.
|
|
13
|
+
Instrument_type: Magnetic Fields (space)
|
|
13
14
|
|
|
14
15
|
imap_mag_l1a_norm-raw:
|
|
15
16
|
<<: *default
|
|
16
17
|
Data_type: L1A_norm-raw>Level-1A raw normal rate
|
|
17
18
|
Logical_source: imap_mag_l1a_norm-raw
|
|
18
19
|
Logical_source_description: IMAP Mission MAG Normal Rate Instrument Level-1A Data.
|
|
19
|
-
Data_level: L1A
|
|
20
20
|
|
|
21
21
|
imap_mag_l1a_burst-raw:
|
|
22
22
|
<<: *default
|
|
23
23
|
Data_type: L1A_burst-raw>Level-1A raw burst rate
|
|
24
24
|
Logical_source: imap_mag_l1a_burst-raw
|
|
25
25
|
Logical_source_description: IMAP Mission MAG Burst Rate Instrument Level-1A Data.
|
|
26
|
-
Data_level: L1A
|
|
27
26
|
|
|
28
27
|
imap_mag_l1a_norm-mago:
|
|
29
28
|
<<: *default
|
|
30
29
|
Data_type: L1A_norm-mago>Level 1A MAGo normal rate
|
|
31
30
|
Logical_source: imap_mag_l1a_norm-mago
|
|
32
31
|
Logical_source_description: IMAP Mission MAGo Normal Rate Instrument Level-1A Data.
|
|
33
|
-
Data_level: L1A
|
|
34
32
|
|
|
35
33
|
imap_mag_l1a_norm-magi:
|
|
36
34
|
<<: *default
|
|
37
35
|
Data_type: L1A_norm-magi>Level 1A MAGi normal rate
|
|
38
36
|
Logical_source: imap_mag_l1a_norm-magi
|
|
39
37
|
Logical_source_description: IMAP Mission MAGi Normal Rate Instrument Level-1A Data.
|
|
40
|
-
Data_level: L1A
|
|
41
38
|
|
|
42
39
|
imap_mag_l1a_burst-mago:
|
|
43
40
|
<<: *default
|
|
44
41
|
Data_type: L1A_burst-mago>Level 1A MAGo burst rate
|
|
45
42
|
Logical_source: imap_mag_l1a_burst-mago
|
|
46
43
|
Logical_source_description: IMAP Mission MAGo Burst Rate Instrument Level-1A Data.
|
|
47
|
-
Data_level: L1A
|
|
48
44
|
|
|
49
45
|
imap_mag_l1a_burst-magi:
|
|
50
46
|
<<: *default
|
|
51
47
|
Data_type: L1A_burst-magi>Level 1A MAGi burst rate
|
|
52
48
|
Logical_source: imap_mag_l1a_burst-magi
|
|
53
49
|
Logical_source_description: IMAP Mission MAGi Burst Rate Instrument Level-1A Data.
|
|
54
|
-
Data_level: L1A
|
|
55
50
|
|
|
56
51
|
imap_mag_l1b_norm-mago:
|
|
57
52
|
<<: *default
|
|
58
53
|
Data_type: L1B_norm-mago>Level 1B MAGo normal rate
|
|
59
54
|
Logical_source: imap_mag_l1b_norm-mago
|
|
60
55
|
Logical_source_description: IMAP Mission MAGo Normal Rate Instrument Level-1B Data.
|
|
61
|
-
Data_level: L1B
|
|
62
56
|
|
|
63
57
|
imap_mag_l1b_norm-magi:
|
|
64
58
|
<<: *default
|
|
65
59
|
Data_type: L1B_norm-magi>Level 1B MAGi normal rate
|
|
66
60
|
Logical_source: imap_mag_l1b_norm-magi
|
|
67
61
|
Logical_source_description: IMAP Mission MAGi Normal Rate Instrument Level-1B Data.
|
|
68
|
-
Data_level: L1B
|
|
69
62
|
|
|
70
63
|
imap_mag_l1b_burst-mago:
|
|
71
64
|
<<: *default
|
|
72
65
|
Data_type: L1B_burst-mago>Level 1B MAGo burst rate
|
|
73
66
|
Logical_source: imap_mag_l1b_burst-mago
|
|
74
67
|
Logical_source_description: IMAP Mission MAGo Burst Rate Instrument Level-1B Data.
|
|
75
|
-
Data_level: L1B
|
|
76
68
|
|
|
77
69
|
imap_mag_l1b_burst-magi:
|
|
78
70
|
<<: *default
|
|
79
71
|
Data_type: L1B_burst-magi>Level 1B MAGi burst rate
|
|
80
72
|
Logical_source: imap_mag_l1b_burst-magi
|
|
81
73
|
Logical_source_description: IMAP Mission MAGi Burst Rate Instrument Level-1B Data.
|
|
82
|
-
Data_level: L1B
|
|
83
74
|
|
|
84
75
|
imap_mag_l1c_norm-mago:
|
|
85
76
|
<<: *default
|
|
86
77
|
Data_type: L1C_norm-mago>Level 1C MAGo normal rate
|
|
87
78
|
Logical_source: imap_mag_l1c_norm-mago
|
|
88
79
|
Logical_source_description: IMAP Mission MAGo Normal Rate Instrument Level-1C Data.
|
|
89
|
-
Data_level: L1C
|
|
90
80
|
|
|
91
81
|
imap_mag_l1c_norm-magi:
|
|
92
82
|
<<: *default
|
|
93
83
|
Data_type: L1C_norm-magi>Level 1C MAGi normal rate
|
|
94
84
|
Logical_source: imap_mag_l1c_norm-magi
|
|
95
85
|
Logical_source_description: IMAP Mission MAGi Normal Rate Instrument Level-1C Data.
|
|
96
|
-
Data_level: L1C
|
|
97
86
|
|
|
87
|
+
imap_mag_l2_norm-dsrf:
|
|
88
|
+
<<: *default
|
|
89
|
+
Data_type: L2_norm-dsrf>Level 2 normal rate data in DSRF
|
|
90
|
+
Logical_source: imap_mag_l2_norm-dsrf
|
|
91
|
+
Logical_source_description: IMAP Mission Normal Rate Instrument Level-2 Data in
|
|
92
|
+
Despun Spacecraft Reference Frame.
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
imap_mag_l2_burst-dsrf:
|
|
96
|
+
<<: *default
|
|
97
|
+
Data_type: L2_burst-dsrf>Level 2 burst rate data in DSRF
|
|
98
|
+
Logical_source: imap_mag_l2_burst-dsrf
|
|
99
|
+
Logical_source_description: IMAP Mission Burst Rate Instrument Level-2 Data in
|
|
100
|
+
Despun Spacecraft Reference Frame.
|
|
@@ -0,0 +1,361 @@
|
|
|
1
|
+
# <=== Label Attributes ===>
|
|
2
|
+
# LABL_PTR_i expects VAR_TYPE of metadata with char data type.
|
|
3
|
+
default_attrs: &default
|
|
4
|
+
# Assumed values for all variable attrs unless overwritten
|
|
5
|
+
DEPEND_0: epoch
|
|
6
|
+
DISPLAY_TYPE: time_series
|
|
7
|
+
FILLVAL: -9223372036854775808
|
|
8
|
+
FORMAT: I12
|
|
9
|
+
VALIDMIN: -9223372036854775808
|
|
10
|
+
VALIDMAX: 9223372036854775807
|
|
11
|
+
VAR_TYPE: data
|
|
12
|
+
UNITS: ' '
|
|
13
|
+
|
|
14
|
+
default_coords: &default_coords
|
|
15
|
+
# Assumed values for all coordinate attrs unless overwritten
|
|
16
|
+
FORMAT: F2.4 # Float with 4 digits
|
|
17
|
+
VAR_TYPE: support_data
|
|
18
|
+
DISPLAY_TYPE: time_series
|
|
19
|
+
FILLVAL: -9223372036854775808
|
|
20
|
+
VALIDMIN: -9223372036854775808
|
|
21
|
+
VALIDMAX: 9223372036854775807
|
|
22
|
+
UNITS: counts
|
|
23
|
+
|
|
24
|
+
mag_support_attrs: &support_default
|
|
25
|
+
<<: *default
|
|
26
|
+
VAR_TYPE: support_data
|
|
27
|
+
DICT_KEY: SPASE>Support>SupportQuantity:Other
|
|
28
|
+
|
|
29
|
+
mag_metadata_attrs: &metadata_default
|
|
30
|
+
<<: *default
|
|
31
|
+
VAR_TYPE: metadata
|
|
32
|
+
|
|
33
|
+
direction_label:
|
|
34
|
+
CATDESC: magnetic field vector data
|
|
35
|
+
FIELDNAM: Magnetic Field Vector
|
|
36
|
+
FORMAT: A3
|
|
37
|
+
VAR_TYPE: metadata
|
|
38
|
+
|
|
39
|
+
compression_label:
|
|
40
|
+
CATDESC: Compression and width
|
|
41
|
+
FIELDNAM: Compression and width
|
|
42
|
+
FORMAT: A2
|
|
43
|
+
VAR_TYPE: metadata
|
|
44
|
+
|
|
45
|
+
raw_vector_attrs: &raw_vectors_default
|
|
46
|
+
<<: *default
|
|
47
|
+
CATDESC: Raw unprocessed magnetic field vector data in bytes
|
|
48
|
+
DEPEND_1: direction
|
|
49
|
+
LABL_PTR_1: direction_label
|
|
50
|
+
FIELDNAM: Magnetic Field Vector
|
|
51
|
+
FORMAT: I3
|
|
52
|
+
|
|
53
|
+
vector_attrs: &vectors_default
|
|
54
|
+
<<: *default
|
|
55
|
+
CATDESC: Magnetic field vector with x y z and sensor range varying by time
|
|
56
|
+
DEPEND_1: direction
|
|
57
|
+
FIELDNAM: Magnetic Field Vector
|
|
58
|
+
LABL_PTR_1: direction_label
|
|
59
|
+
FILLVAL: 9223372036854775807
|
|
60
|
+
FORMAT: F12.5
|
|
61
|
+
|
|
62
|
+
mag_flag_attrs:
|
|
63
|
+
<<: *default
|
|
64
|
+
VALIDMIN: 0
|
|
65
|
+
VALIDMAX: 1
|
|
66
|
+
DISPLAY_TYPE: time_series
|
|
67
|
+
FILLVAL: 255
|
|
68
|
+
FORMAT: I1
|
|
69
|
+
|
|
70
|
+
raw_direction_attrs:
|
|
71
|
+
<<: *default_coords
|
|
72
|
+
CATDESC: Raw magnetic field vector binary length
|
|
73
|
+
FIELDNAM: Raw magnetic field vector binary length
|
|
74
|
+
LABLAXIS: Magnetic field vector directions
|
|
75
|
+
|
|
76
|
+
direction_attrs:
|
|
77
|
+
<<: *default_coords
|
|
78
|
+
CATDESC: Magnetic field vector
|
|
79
|
+
FIELDNAM: \[xyz\] magnetic field vector
|
|
80
|
+
FORMAT: I3
|
|
81
|
+
VAR_TYPE: support_data
|
|
82
|
+
DISPLAY_TYPE: time_series
|
|
83
|
+
LABLAXIS: Magnetic field vector
|
|
84
|
+
|
|
85
|
+
compression_attrs:
|
|
86
|
+
<<: *default_coords
|
|
87
|
+
CATDESC: Data compression flag
|
|
88
|
+
FIELDNAM: Compression
|
|
89
|
+
LABLAXIS: Compressed
|
|
90
|
+
FORMAT: I2
|
|
91
|
+
VAR_TYPE: support_data
|
|
92
|
+
VALIDMAX: 21
|
|
93
|
+
VALIDMIN: 0
|
|
94
|
+
DISPLAY_TYPE: no_plot
|
|
95
|
+
|
|
96
|
+
compression_flags_attrs:
|
|
97
|
+
<<: *support_default
|
|
98
|
+
CATDESC: Compression information per time stamp, includes a flag and the compression width
|
|
99
|
+
FIELDNAM: Compression information per time stamp
|
|
100
|
+
DEPEND_0: epoch
|
|
101
|
+
DEPEND_1: compression
|
|
102
|
+
FORMAT: I2
|
|
103
|
+
VALIDMAX: 21
|
|
104
|
+
VALIDMIN: 0
|
|
105
|
+
LABL_PTR_1: compression_label
|
|
106
|
+
DISPLAY_TYPE: no_plot
|
|
107
|
+
|
|
108
|
+
pus_version:
|
|
109
|
+
<<: *support_default
|
|
110
|
+
CATDESC: PUS Version number
|
|
111
|
+
FIELDNAM: PUS Version number
|
|
112
|
+
LABLAXIS: PUS Version
|
|
113
|
+
FILLVAL: 8
|
|
114
|
+
FORMAT: I1
|
|
115
|
+
VALIDMAX: 7
|
|
116
|
+
VALIDMIN: 0
|
|
117
|
+
|
|
118
|
+
pus_stype:
|
|
119
|
+
<<: *support_default
|
|
120
|
+
CATDESC: PUS Service type
|
|
121
|
+
FIELDNAM: PUS Service type
|
|
122
|
+
LABLAXIS: PUS type
|
|
123
|
+
FILLVAL: 255
|
|
124
|
+
FORMAT: I3
|
|
125
|
+
VALIDMAX: 255
|
|
126
|
+
VALIDMIN: 0
|
|
127
|
+
|
|
128
|
+
pus_ssubtype:
|
|
129
|
+
<<: *support_default
|
|
130
|
+
CATDESC: PUS Service subtype. Equal to the number of seconds of data minus 1
|
|
131
|
+
FIELDNAM: Number of seconds of data minus 1
|
|
132
|
+
LABLAXIS: PUS Subtype
|
|
133
|
+
FILLVAL: 255
|
|
134
|
+
FORMAT: I3
|
|
135
|
+
UNITS: 's'
|
|
136
|
+
VALIDMAX: 255
|
|
137
|
+
VALIDMIN: 0
|
|
138
|
+
|
|
139
|
+
compression:
|
|
140
|
+
<<: *support_default
|
|
141
|
+
CATDESC: Data compression flag
|
|
142
|
+
FIELDNAM: Data is compressed
|
|
143
|
+
LABLAXIS: Compressed
|
|
144
|
+
FILLVAL: 255
|
|
145
|
+
FORMAT: I1
|
|
146
|
+
VALIDMAX: 1
|
|
147
|
+
VALIDMIN: 0
|
|
148
|
+
DICT_KEY: SPASE>Support>SupportQuantity:InstrumentMode
|
|
149
|
+
|
|
150
|
+
compression_width:
|
|
151
|
+
<<: *support_default
|
|
152
|
+
CATDESC: Compression bit width
|
|
153
|
+
DEPEND_0: epoch
|
|
154
|
+
DISPLAY_TYPE: time_series
|
|
155
|
+
FIELDNAM: Compressed data bit width
|
|
156
|
+
LABLAXIS: Bit width
|
|
157
|
+
FILLVAL: 255
|
|
158
|
+
FORMAT: I2
|
|
159
|
+
UNITS: 'bits'
|
|
160
|
+
VALIDMAX: 21
|
|
161
|
+
VALIDMIN: 0
|
|
162
|
+
|
|
163
|
+
mago_act:
|
|
164
|
+
<<: *support_default
|
|
165
|
+
CATDESC: MAGo Active status
|
|
166
|
+
FIELDNAM: MAGo Sensor Active
|
|
167
|
+
LABLAXIS: MAGo Active
|
|
168
|
+
FILLVAL: 255
|
|
169
|
+
FORMAT: I1
|
|
170
|
+
UNITS: ' '
|
|
171
|
+
VALIDMAX: 1
|
|
172
|
+
VALIDMIN: 0
|
|
173
|
+
DICT_KEY: SPASE>Support>SupportQuantity:Housekeeping
|
|
174
|
+
|
|
175
|
+
magi_act:
|
|
176
|
+
<<: *support_default
|
|
177
|
+
CATDESC: MAGi Active status
|
|
178
|
+
FIELDNAM: MAGi Sensor Active
|
|
179
|
+
LABLAXIS: MAGi Active
|
|
180
|
+
FILLVAL: 255
|
|
181
|
+
FORMAT: I1
|
|
182
|
+
UNITS: ' '
|
|
183
|
+
VALIDMAX: 1
|
|
184
|
+
VALIDMIN: 0
|
|
185
|
+
DICT_KEY: SPASE>Support>SupportQuantity:Housekeeping
|
|
186
|
+
|
|
187
|
+
pri_sens:
|
|
188
|
+
<<: *support_default
|
|
189
|
+
CATDESC: Indicates the primary sensor. 0 is MAGo, 1 is MAGi
|
|
190
|
+
FIELDNAM: Primary Sensor
|
|
191
|
+
LABLAXIS: Primary Sensor
|
|
192
|
+
FILLVAL: 255
|
|
193
|
+
FORMAT: I1
|
|
194
|
+
UNITS: ' '
|
|
195
|
+
VALIDMAX: 1
|
|
196
|
+
VALIDMIN: 0
|
|
197
|
+
DICT_KEY: SPASE>Support>SupportQuantity:InstrumentMode
|
|
198
|
+
|
|
199
|
+
pri_vecsec:
|
|
200
|
+
<<: *support_default
|
|
201
|
+
CATDESC: Primary vectors per second
|
|
202
|
+
FIELDNAM: Primary vectors per second
|
|
203
|
+
LABLAXIS: Primary Vectors
|
|
204
|
+
FILLVAL: 0
|
|
205
|
+
FORMAT: I3
|
|
206
|
+
UNITS: 'Hz'
|
|
207
|
+
VALIDMAX: 128
|
|
208
|
+
VALIDMIN: 1
|
|
209
|
+
DICT_KEY: SPASE>Support>SupportQuantity:Housekeeping
|
|
210
|
+
|
|
211
|
+
sec_vecsec:
|
|
212
|
+
<<: *support_default
|
|
213
|
+
CATDESC: Secondary vectors per second
|
|
214
|
+
FIELDNAM: Secondary vectors per second
|
|
215
|
+
LABLAXIS: Secondary Vectorss
|
|
216
|
+
FILLVAL: 0
|
|
217
|
+
FORMAT: I3
|
|
218
|
+
UNITS: 'Hz'
|
|
219
|
+
VALIDMAX: 128
|
|
220
|
+
VALIDMIN: 1
|
|
221
|
+
DICT_KEY: SPASE>Support>SupportQuantity:Housekeeping
|
|
222
|
+
|
|
223
|
+
pri_coarsetm:
|
|
224
|
+
<<: *support_default
|
|
225
|
+
CATDESC: Primary coarse time, mission SCLK in whole seconds
|
|
226
|
+
FIELDNAM: Primary coarse time
|
|
227
|
+
LABLAXIS: Primary coarse time
|
|
228
|
+
FILLVAL: 4294967295
|
|
229
|
+
FORMAT: I10
|
|
230
|
+
UNITS: 's'
|
|
231
|
+
VALIDMAX: 4294967295
|
|
232
|
+
VALIDMIN: 0
|
|
233
|
+
VAR_TYPE: support_data
|
|
234
|
+
DICT_KEY: SPASE>Support>SupportQuantity:Temporal
|
|
235
|
+
|
|
236
|
+
pri_fntm:
|
|
237
|
+
<<: *support_default
|
|
238
|
+
CATDESC: Primary fine time, mission SCLK in 16bit subseconds
|
|
239
|
+
FIELDNAM: Primary fine time (16 bit subsecond)
|
|
240
|
+
LABLAXIS: Primary fine time
|
|
241
|
+
FILLVAL: 65536
|
|
242
|
+
FORMAT: I5
|
|
243
|
+
UNITS: ' '
|
|
244
|
+
VALIDMAX: 65535
|
|
245
|
+
VALIDMIN: 0
|
|
246
|
+
DICT_KEY: SPASE>Support>SupportQuantity:Temporal
|
|
247
|
+
|
|
248
|
+
sec_coarsetm:
|
|
249
|
+
<<: *support_default
|
|
250
|
+
CATDESC: Secondary coarse time, mission SCLK in whole seconds
|
|
251
|
+
FIELDNAM: Secondary coarse time
|
|
252
|
+
LABLAXIS: Secondary coarse time
|
|
253
|
+
FILLVAL: 4294967295
|
|
254
|
+
FORMAT: I10
|
|
255
|
+
UNITS: 's'
|
|
256
|
+
VALIDMAX: 4294967295
|
|
257
|
+
VALIDMIN: 0
|
|
258
|
+
VAR_TYPE: support_data
|
|
259
|
+
DICT_KEY: SPASE>Support>SupportQuantity:Temporal
|
|
260
|
+
|
|
261
|
+
sec_fntm:
|
|
262
|
+
<<: *support_default
|
|
263
|
+
CATDESC: Secondary fine time, mission SCLK in 16bit subseconds
|
|
264
|
+
FIELDNAM: Secondary fine time (16 bit subsecond)
|
|
265
|
+
LABLAXIS: Secondary fine time
|
|
266
|
+
FILLVAL: 65536
|
|
267
|
+
FORMAT: I5
|
|
268
|
+
UNITS: ' '
|
|
269
|
+
VALIDMAX: 65535
|
|
270
|
+
VALIDMIN: 0
|
|
271
|
+
DICT_KEY: SPASE>Support>SupportQuantity:Temporal
|
|
272
|
+
|
|
273
|
+
vectors:
|
|
274
|
+
<<: *raw_vectors_default
|
|
275
|
+
CATDESC: Raw binary value of vectors
|
|
276
|
+
FIELDNAM: Raw binary vectors
|
|
277
|
+
LABLAXIS: Raw vectors
|
|
278
|
+
|
|
279
|
+
# CCSDS attributes for MAG L1A RAW
|
|
280
|
+
|
|
281
|
+
version:
|
|
282
|
+
<<: *metadata_default
|
|
283
|
+
CATDESC: CCSDS Packet version number
|
|
284
|
+
FIELDNAM: CCSDS Packet version number
|
|
285
|
+
LABLAXIS: CCSDS Packet version
|
|
286
|
+
FILLVAL: 8
|
|
287
|
+
FORMAT: I1
|
|
288
|
+
UNITS: ' '
|
|
289
|
+
VALIDMAX: 7
|
|
290
|
+
VALIDMIN: 0
|
|
291
|
+
DICT_KEY: SPASE>Support>SupportQuantity:HouseKeeping
|
|
292
|
+
|
|
293
|
+
type:
|
|
294
|
+
<<: *metadata_default
|
|
295
|
+
CATDESC: CCSDS Packet type
|
|
296
|
+
FIELDNAM: CCSDS Packet type
|
|
297
|
+
LABLAXIS: Packet Type
|
|
298
|
+
FILLVAL: 2
|
|
299
|
+
FORMAT: I1
|
|
300
|
+
UNITS: ' '
|
|
301
|
+
VALIDMAX: 1
|
|
302
|
+
VALIDMIN: 0
|
|
303
|
+
DICT_KEY: SPASE>Support>SupportQuantity:Housekeeping
|
|
304
|
+
|
|
305
|
+
sec_hdr_flg:
|
|
306
|
+
<<: *metadata_default
|
|
307
|
+
CATDESC: CCSDS Packet Secondary header flag
|
|
308
|
+
FIELDNAM: CCSDS Packet Secondary header flag
|
|
309
|
+
LABLAXIS: Sec header flag
|
|
310
|
+
FILLVAL: 2
|
|
311
|
+
FORMAT: I1
|
|
312
|
+
UNITS: ' '
|
|
313
|
+
VALIDMAX: 1
|
|
314
|
+
VALIDMIN: 0
|
|
315
|
+
DICT_KEY: SPASE>Support>SupportQuantity:Housekeeping
|
|
316
|
+
|
|
317
|
+
pkt_apid:
|
|
318
|
+
<<: *metadata_default
|
|
319
|
+
CATDESC: CCSDS Packet Application Process ID
|
|
320
|
+
FIELDNAM: CCSDS Packet Application Process ID
|
|
321
|
+
LABLAXIS: APID
|
|
322
|
+
FILLVAL: 2048
|
|
323
|
+
FORMAT: H3
|
|
324
|
+
UNITS: ' '
|
|
325
|
+
VALIDMAX: 2047
|
|
326
|
+
VALIDMIN: 0
|
|
327
|
+
DICT_KEY: SPASE>Support>SupportQuantity:Housekeeping
|
|
328
|
+
|
|
329
|
+
seq_flgs:
|
|
330
|
+
<<: *metadata_default
|
|
331
|
+
CATDESC: CCSDS Packet Grouping flags
|
|
332
|
+
FIELDNAM: CCSDS Packet Grouping flags
|
|
333
|
+
LABLAXIS: Packet Grouping
|
|
334
|
+
FILLVAL: 4
|
|
335
|
+
FORMAT: I1
|
|
336
|
+
UNITS: ' '
|
|
337
|
+
VALIDMAX: 3
|
|
338
|
+
VALIDMIN: 0
|
|
339
|
+
|
|
340
|
+
src_seq_ctr:
|
|
341
|
+
<<: *metadata_default
|
|
342
|
+
CATDESC: CCSDS Packet Source Sequence Counter
|
|
343
|
+
FIELDNAM: CCSDS Packet Source Sequence Counter
|
|
344
|
+
LABLAXIS: Seq Counter
|
|
345
|
+
FILLVAL: 16384
|
|
346
|
+
FORMAT: I5
|
|
347
|
+
UNITS: ' '
|
|
348
|
+
VALIDMAX: 16383
|
|
349
|
+
VALIDMIN: 0
|
|
350
|
+
DICT_KEY: SPASE>Support>SupportQuantity:Housekeeping
|
|
351
|
+
|
|
352
|
+
pkt_len:
|
|
353
|
+
<<: *metadata_default
|
|
354
|
+
CATDESC: CCSDS Packet Length
|
|
355
|
+
FIELDNAM: CCSDS Packet Length
|
|
356
|
+
LABLAXIS: Packet Length
|
|
357
|
+
FILLVAL: 65535
|
|
358
|
+
FORMAT: I5
|
|
359
|
+
UNITS: ' '
|
|
360
|
+
VALIDMAX: 65535
|
|
361
|
+
VALIDMIN: 0
|