imap-processing 0.11.0__py3-none-any.whl → 0.12.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 +10 -11
- imap_processing/_version.py +2 -2
- imap_processing/ccsds/excel_to_xtce.py +65 -16
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +6 -28
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +365 -42
- 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 +26 -13
- 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 +6 -9
- imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +1 -1
- 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 +9 -21
- 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_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 +48 -52
- imap_processing/cdf/config/imap_swe_l2_variable_attrs.yaml +71 -47
- imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +2 -14
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +51 -2
- imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +29 -14
- imap_processing/cdf/utils.py +13 -7
- imap_processing/cli.py +23 -8
- imap_processing/codice/codice_l1a.py +207 -85
- imap_processing/codice/constants.py +1322 -568
- imap_processing/codice/decompress.py +2 -6
- imap_processing/ena_maps/ena_maps.py +480 -116
- 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 +45 -47
- imap_processing/hi/l1a/hi_l1a.py +24 -18
- 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 +31 -39
- imap_processing/hi/l1c/hi_l1c.py +405 -17
- imap_processing/hi/utils.py +58 -12
- 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 +173 -1
- imap_processing/hit/l0/constants.py +20 -11
- imap_processing/hit/l0/decom_hit.py +18 -4
- imap_processing/hit/l1a/hit_l1a.py +45 -54
- imap_processing/hit/l1b/constants.py +317 -0
- imap_processing/hit/l1b/hit_l1b.py +367 -18
- imap_processing/hit/l2/constants.py +281 -0
- imap_processing/hit/l2/hit_l2.py +614 -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 +246 -0
- imap_processing/ialirt/l0/process_swe.py +252 -0
- imap_processing/ialirt/packet_definitions/ialirt.xml +7 -3
- imap_processing/ialirt/packet_definitions/ialirt_mag.xml +115 -0
- 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 +25 -0
- imap_processing/idex/idex_l1a.py +6 -7
- imap_processing/idex/idex_l1b.py +4 -31
- imap_processing/idex/idex_l2a.py +789 -0
- imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +39 -33
- imap_processing/lo/l0/lo_science.py +6 -0
- imap_processing/lo/l1a/lo_l1a.py +0 -1
- imap_processing/lo/l1b/lo_l1b.py +177 -25
- imap_processing/mag/constants.py +8 -0
- imap_processing/mag/imap_mag_sdc-configuration_v001.yaml +6 -0
- imap_processing/mag/l0/decom_mag.py +10 -3
- imap_processing/mag/l1a/mag_l1a.py +22 -11
- imap_processing/mag/l1a/mag_l1a_data.py +28 -3
- imap_processing/mag/l1b/mag_l1b.py +190 -48
- imap_processing/mag/l1c/interpolation_methods.py +211 -0
- imap_processing/mag/l1c/mag_l1c.py +447 -9
- imap_processing/quality_flags.py +1 -0
- imap_processing/spacecraft/packet_definitions/scid_x252.xml +538 -0
- imap_processing/spacecraft/quaternions.py +123 -0
- imap_processing/spice/geometry.py +16 -19
- imap_processing/spice/repoint.py +120 -0
- imap_processing/swapi/l1/swapi_l1.py +4 -0
- imap_processing/swapi/l2/swapi_l2.py +0 -1
- imap_processing/swe/l1a/swe_l1a.py +47 -8
- imap_processing/swe/l1a/swe_science.py +5 -2
- imap_processing/swe/l1b/swe_l1b_science.py +103 -56
- imap_processing/swe/l2/swe_l2.py +60 -65
- imap_processing/swe/packet_definitions/swe_packet_definition.xml +1121 -1
- imap_processing/swe/utils/swe_constants.py +63 -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 +23 -20
- imap_processing/tests/cdf/test_data/imap_instrument2_global_cdf_attrs.yaml +0 -2
- imap_processing/tests/codice/conftest.py +1 -1
- 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 +110 -46
- imap_processing/tests/codice/test_decompress.py +4 -4
- imap_processing/tests/conftest.py +166 -10
- imap_processing/tests/ena_maps/conftest.py +51 -0
- imap_processing/tests/ena_maps/test_ena_maps.py +638 -109
- imap_processing/tests/ena_maps/test_map_utils.py +66 -43
- imap_processing/tests/ena_maps/test_spatial_utils.py +16 -20
- 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 +12 -15
- imap_processing/tests/hi/test_hi_l1c.py +234 -6
- imap_processing/tests/hi/test_l1a.py +30 -0
- imap_processing/tests/hi/test_science_direct_event.py +1 -1
- imap_processing/tests/hi/test_utils.py +24 -2
- imap_processing/tests/hit/helpers/l1_validation.py +39 -39
- 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 +4 -0
- imap_processing/tests/hit/test_hit_l1a.py +24 -28
- imap_processing/tests/hit/test_hit_l1b.py +304 -40
- imap_processing/tests/hit/test_hit_l2.py +454 -0
- imap_processing/tests/hit/test_hit_utils.py +112 -2
- 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/ialirt/test_data/l0/461971383-404.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971384-405.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971385-406.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971386-407.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971387-408.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971388-409.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971389-410.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971390-411.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/461971391-412.bin +0 -0
- imap_processing/tests/ialirt/test_data/l0/sample_decoded_i-alirt_data.csv +383 -0
- imap_processing/tests/ialirt/unit/test_grouping.py +81 -0
- imap_processing/tests/ialirt/unit/test_parse_mag.py +168 -0
- imap_processing/tests/ialirt/unit/test_process_swe.py +208 -3
- imap_processing/tests/ialirt/unit/test_time.py +16 -0
- imap_processing/tests/idex/conftest.py +62 -6
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20231218_v001.pkts +0 -0
- imap_processing/tests/idex/test_data/impact_14_tof_high_data.txt +4508 -4508
- imap_processing/tests/idex/test_idex_l1a.py +48 -4
- imap_processing/tests/idex/test_idex_l1b.py +3 -3
- imap_processing/tests/idex/test_idex_l2a.py +383 -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_l1b.py +148 -4
- imap_processing/tests/lo/test_lo_science.py +1 -0
- imap_processing/tests/mag/conftest.py +69 -0
- imap_processing/tests/mag/test_mag_decom.py +1 -1
- imap_processing/tests/mag/test_mag_l1a.py +38 -0
- imap_processing/tests/mag/test_mag_l1b.py +34 -53
- imap_processing/tests/mag/test_mag_l1c.py +251 -20
- imap_processing/tests/mag/test_mag_validation.py +109 -25
- 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/imap_calibration_mag_20240229_v01.cdf +0 -0
- imap_processing/tests/spacecraft/__init__.py +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_geometry.py +6 -9
- imap_processing/tests/spice/test_repoint.py +111 -0
- imap_processing/tests/swapi/test_swapi_l1.py +7 -3
- 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/test_swe_l1a.py +18 -0
- 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_l1b_science.py +23 -4
- imap_processing/tests/swe/test_swe_l2.py +112 -30
- imap_processing/tests/test_cli.py +2 -2
- imap_processing/tests/test_utils.py +138 -16
- 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 +341 -0
- imap_processing/tests/ultra/unit/conftest.py +69 -26
- imap_processing/tests/ultra/unit/test_badtimes.py +2 -0
- imap_processing/tests/ultra/unit/test_cullingmask.py +4 -0
- imap_processing/tests/ultra/unit/test_de.py +12 -4
- imap_processing/tests/ultra/unit/test_decom_apid_881.py +44 -0
- imap_processing/tests/ultra/unit/test_spacecraft_pset.py +78 -0
- imap_processing/tests/ultra/unit/test_ultra_l1a.py +28 -12
- imap_processing/tests/ultra/unit/test_ultra_l1b.py +34 -6
- imap_processing/tests/ultra/unit/test_ultra_l1b_culling.py +22 -26
- imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +86 -51
- imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +94 -52
- imap_processing/ultra/l0/decom_tools.py +6 -5
- imap_processing/ultra/l1a/ultra_l1a.py +28 -56
- imap_processing/ultra/l1b/de.py +72 -28
- imap_processing/ultra/l1b/extendedspin.py +12 -14
- imap_processing/ultra/l1b/ultra_l1b.py +34 -9
- imap_processing/ultra/l1b/ultra_l1b_culling.py +65 -29
- imap_processing/ultra/l1b/ultra_l1b_extended.py +64 -19
- imap_processing/ultra/l1c/spacecraft_pset.py +86 -0
- imap_processing/ultra/l1c/ultra_l1c.py +7 -4
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +112 -61
- imap_processing/ultra/lookup_tables/ultra_90_dps_exposure_compressed.cdf +0 -0
- imap_processing/ultra/utils/ultra_l1_utils.py +20 -2
- imap_processing/utils.py +68 -28
- {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/METADATA +8 -5
- {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/RECORD +250 -199
- imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +0 -237
- imap_processing/hi/l1a/housekeeping.py +0 -27
- 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/ultra/test_data/mock_data.py +0 -161
- imap_processing/ultra/l1c/pset.py +0 -40
- /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.12.0.dist-info}/LICENSE +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/WHEEL +0 -0
- {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/entry_points.txt +0 -0
|
@@ -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: support_data
|
|
60
|
+
VAR_TYPE: support_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
|
|
@@ -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,84 @@ 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
|
-
|
|
@@ -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
|