imap-processing 0.12.0__py3-none-any.whl → 0.13.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of imap-processing might be problematic. Click here for more details.
- imap_processing/__init__.py +1 -0
- imap_processing/_version.py +2 -2
- imap_processing/ccsds/ccsds_data.py +1 -2
- imap_processing/ccsds/excel_to_xtce.py +1 -2
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +18 -12
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +569 -0
- imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +1846 -128
- imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +5 -5
- imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +20 -1
- imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +6 -4
- imap_processing/cdf/config/imap_idex_l1b_variable_attrs.yaml +3 -3
- imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +15 -0
- imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +22 -0
- imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +16 -0
- imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +178 -5
- imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +5045 -41
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +33 -19
- imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +8 -48
- imap_processing/cdf/utils.py +41 -33
- imap_processing/cli.py +463 -234
- imap_processing/codice/codice_l1a.py +260 -47
- imap_processing/codice/codice_l1b.py +51 -152
- imap_processing/codice/constants.py +38 -1
- imap_processing/ena_maps/ena_maps.py +658 -65
- imap_processing/ena_maps/utils/coordinates.py +1 -1
- imap_processing/ena_maps/utils/spatial_utils.py +10 -5
- imap_processing/glows/l1a/glows_l1a.py +28 -99
- imap_processing/glows/l1a/glows_l1a_data.py +2 -2
- imap_processing/glows/l1b/glows_l1b.py +1 -4
- imap_processing/glows/l1b/glows_l1b_data.py +1 -3
- imap_processing/glows/l2/glows_l2.py +2 -5
- imap_processing/hi/l1a/hi_l1a.py +31 -12
- imap_processing/hi/l1b/hi_l1b.py +80 -43
- imap_processing/hi/l1c/hi_l1c.py +12 -16
- imap_processing/hit/ancillary/imap_hit_l1b-to-l2-sector-dt0-factors_20250219_v002.csv +81 -0
- imap_processing/hit/hit_utils.py +93 -35
- imap_processing/hit/l0/decom_hit.py +3 -1
- imap_processing/hit/l1a/hit_l1a.py +30 -25
- imap_processing/hit/l1b/constants.py +6 -2
- imap_processing/hit/l1b/hit_l1b.py +279 -318
- imap_processing/hit/l2/constants.py +37 -0
- imap_processing/hit/l2/hit_l2.py +373 -264
- imap_processing/ialirt/l0/parse_mag.py +138 -10
- imap_processing/ialirt/l0/process_swapi.py +69 -0
- imap_processing/ialirt/l0/process_swe.py +318 -22
- imap_processing/ialirt/packet_definitions/ialirt.xml +216 -212
- imap_processing/ialirt/packet_definitions/ialirt_codicehi.xml +1 -1
- imap_processing/ialirt/packet_definitions/ialirt_codicelo.xml +1 -1
- imap_processing/ialirt/packet_definitions/ialirt_swapi.xml +14 -14
- imap_processing/ialirt/utils/grouping.py +1 -1
- imap_processing/idex/idex_constants.py +9 -1
- imap_processing/idex/idex_l0.py +22 -8
- imap_processing/idex/idex_l1a.py +75 -44
- imap_processing/idex/idex_l1b.py +9 -8
- imap_processing/idex/idex_l2a.py +79 -45
- imap_processing/idex/idex_l2b.py +120 -0
- imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +33 -39
- imap_processing/idex/packet_definitions/idex_housekeeping_packet_definition.xml +9130 -0
- imap_processing/lo/l0/lo_science.py +1 -2
- imap_processing/lo/l1a/lo_l1a.py +1 -4
- imap_processing/lo/l1b/lo_l1b.py +527 -6
- imap_processing/lo/l1b/tof_conversions.py +11 -0
- imap_processing/lo/l1c/lo_l1c.py +1 -4
- imap_processing/mag/constants.py +43 -0
- imap_processing/mag/imap_mag_sdc_configuration_v001.py +8 -0
- imap_processing/mag/l1a/mag_l1a.py +2 -9
- imap_processing/mag/l1a/mag_l1a_data.py +10 -10
- imap_processing/mag/l1b/mag_l1b.py +84 -17
- imap_processing/mag/l1c/interpolation_methods.py +180 -3
- imap_processing/mag/l1c/mag_l1c.py +236 -70
- imap_processing/mag/l2/mag_l2.py +140 -0
- imap_processing/mag/l2/mag_l2_data.py +288 -0
- imap_processing/spacecraft/quaternions.py +1 -3
- imap_processing/spice/geometry.py +3 -3
- imap_processing/spice/kernels.py +0 -276
- imap_processing/spice/pointing_frame.py +257 -0
- imap_processing/spice/repoint.py +48 -19
- imap_processing/spice/spin.py +38 -33
- imap_processing/spice/time.py +24 -0
- imap_processing/swapi/l1/swapi_l1.py +16 -12
- imap_processing/swapi/l2/swapi_l2.py +116 -4
- imap_processing/swapi/swapi_utils.py +32 -0
- imap_processing/swe/l1a/swe_l1a.py +2 -9
- imap_processing/swe/l1a/swe_science.py +8 -11
- imap_processing/swe/l1b/swe_l1b.py +898 -23
- imap_processing/swe/l2/swe_l2.py +21 -77
- imap_processing/swe/utils/swe_constants.py +1 -0
- imap_processing/tests/ccsds/test_excel_to_xtce.py +1 -1
- imap_processing/tests/cdf/test_utils.py +14 -16
- imap_processing/tests/codice/conftest.py +44 -33
- imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-pha_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-pha_20241110193700_v0.0.0.cdf +0 -0
- imap_processing/tests/codice/test_codice_l1a.py +20 -11
- imap_processing/tests/codice/test_codice_l1b.py +6 -7
- imap_processing/tests/conftest.py +78 -22
- imap_processing/tests/ena_maps/test_ena_maps.py +462 -33
- imap_processing/tests/ena_maps/test_spatial_utils.py +1 -1
- imap_processing/tests/glows/conftest.py +10 -14
- imap_processing/tests/glows/test_glows_decom.py +4 -4
- imap_processing/tests/glows/test_glows_l1a_cdf.py +6 -27
- imap_processing/tests/glows/test_glows_l1a_data.py +6 -8
- imap_processing/tests/glows/test_glows_l1b.py +11 -11
- imap_processing/tests/glows/test_glows_l1b_data.py +5 -5
- imap_processing/tests/glows/test_glows_l2.py +2 -8
- imap_processing/tests/hi/conftest.py +1 -1
- imap_processing/tests/hi/test_hi_l1b.py +10 -12
- imap_processing/tests/hi/test_hi_l1c.py +27 -24
- imap_processing/tests/hi/test_l1a.py +7 -9
- imap_processing/tests/hi/test_science_direct_event.py +2 -2
- imap_processing/tests/hit/helpers/l1_validation.py +44 -43
- imap_processing/tests/hit/test_decom_hit.py +1 -1
- imap_processing/tests/hit/test_hit_l1a.py +9 -9
- imap_processing/tests/hit/test_hit_l1b.py +172 -217
- imap_processing/tests/hit/test_hit_l2.py +380 -118
- imap_processing/tests/hit/test_hit_utils.py +122 -55
- imap_processing/tests/hit/validation_data/hit_l1b_standard_sample2_nsrl_v4_3decimals.csv +62 -62
- imap_processing/tests/hit/validation_data/sci_sample_raw.csv +1 -1
- imap_processing/tests/ialirt/unit/test_decom_ialirt.py +16 -81
- imap_processing/tests/ialirt/unit/test_grouping.py +2 -2
- imap_processing/tests/ialirt/unit/test_parse_mag.py +71 -16
- imap_processing/tests/ialirt/unit/test_process_codicehi.py +3 -3
- imap_processing/tests/ialirt/unit/test_process_codicelo.py +3 -10
- imap_processing/tests/ialirt/unit/test_process_ephemeris.py +4 -4
- imap_processing/tests/ialirt/unit/test_process_hit.py +3 -3
- imap_processing/tests/ialirt/unit/test_process_swapi.py +24 -16
- imap_processing/tests/ialirt/unit/test_process_swe.py +115 -7
- imap_processing/tests/idex/conftest.py +72 -7
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20241206_v001.pkts +0 -0
- imap_processing/tests/idex/test_data/imap_idex_l0_raw_20250108_v001.pkts +0 -0
- imap_processing/tests/idex/test_idex_l0.py +33 -11
- imap_processing/tests/idex/test_idex_l1a.py +50 -23
- imap_processing/tests/idex/test_idex_l1b.py +104 -25
- imap_processing/tests/idex/test_idex_l2a.py +48 -32
- imap_processing/tests/idex/test_idex_l2b.py +93 -0
- imap_processing/tests/lo/test_lo_l1a.py +3 -3
- imap_processing/tests/lo/test_lo_l1b.py +371 -6
- imap_processing/tests/lo/test_lo_l1c.py +1 -1
- imap_processing/tests/lo/test_lo_science.py +6 -7
- imap_processing/tests/lo/test_star_sensor.py +1 -1
- imap_processing/tests/mag/conftest.py +58 -9
- imap_processing/tests/mag/test_mag_decom.py +4 -3
- imap_processing/tests/mag/test_mag_l1a.py +13 -7
- imap_processing/tests/mag/test_mag_l1b.py +9 -9
- imap_processing/tests/mag/test_mag_l1c.py +151 -47
- imap_processing/tests/mag/test_mag_l2.py +130 -0
- imap_processing/tests/mag/test_mag_validation.py +144 -7
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-magi-normal-out.csv +1857 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T013/mag-l1b-l1c-t013-mago-normal-out.csv +1857 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-magi-normal-out.csv +1793 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-in.csv +1217 -0
- imap_processing/tests/mag/validation/L1c/T014/mag-l1b-l1c-t014-mago-normal-out.csv +1793 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-burst-in.csv +2561 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-in.csv +961 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-magi-normal-out.csv +1539 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-in.csv +1921 -0
- imap_processing/tests/mag/validation/L1c/T015/mag-l1b-l1c-t015-mago-normal-out.csv +2499 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-in.csv +865 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-magi-normal-out.csv +1196 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-in.csv +1729 -0
- imap_processing/tests/mag/validation/L1c/T016/mag-l1b-l1c-t016-mago-normal-out.csv +3053 -0
- imap_processing/tests/mag/validation/L2/imap_mag_l1b_norm-mago_20251017_v002.cdf +0 -0
- imap_processing/tests/mag/validation/calibration/imap_mag_l2-calibration-matrices_20251017_v004.cdf +0 -0
- imap_processing/tests/mag/validation/calibration/imap_mag_l2-offsets-norm_20251017_20251017_v001.cdf +0 -0
- imap_processing/tests/spacecraft/test_quaternions.py +1 -1
- imap_processing/tests/spice/test_data/fake_repoint_data.csv +4 -4
- imap_processing/tests/spice/test_data/fake_spin_data.csv +11 -11
- imap_processing/tests/spice/test_geometry.py +3 -3
- imap_processing/tests/spice/test_kernels.py +1 -200
- imap_processing/tests/spice/test_pointing_frame.py +185 -0
- imap_processing/tests/spice/test_repoint.py +20 -10
- imap_processing/tests/spice/test_spin.py +50 -9
- imap_processing/tests/spice/test_time.py +14 -0
- imap_processing/tests/swapi/lut/imap_swapi_esa-unit-conversion_20250211_v000.csv +73 -0
- imap_processing/tests/swapi/lut/imap_swapi_lut-notes_20250211_v000.csv +1025 -0
- imap_processing/tests/swapi/test_swapi_l1.py +7 -9
- imap_processing/tests/swapi/test_swapi_l2.py +180 -8
- imap_processing/tests/swe/lut/checker-board-indices.csv +24 -0
- imap_processing/tests/swe/lut/imap_swe_esa-lut_20250301_v000.csv +385 -0
- imap_processing/tests/swe/lut/imap_swe_l1b-in-flight-cal_20240510_20260716_v000.csv +3 -0
- imap_processing/tests/swe/test_swe_l1a.py +6 -6
- imap_processing/tests/swe/test_swe_l1a_science.py +3 -3
- imap_processing/tests/swe/test_swe_l1b.py +162 -24
- imap_processing/tests/swe/test_swe_l2.py +82 -102
- imap_processing/tests/test_cli.py +171 -88
- imap_processing/tests/test_utils.py +2 -1
- imap_processing/tests/ultra/data/mock_data.py +49 -21
- imap_processing/tests/ultra/unit/conftest.py +53 -70
- imap_processing/tests/ultra/unit/test_badtimes.py +2 -4
- imap_processing/tests/ultra/unit/test_cullingmask.py +4 -6
- imap_processing/tests/ultra/unit/test_de.py +3 -10
- imap_processing/tests/ultra/unit/test_decom_apid_880.py +27 -76
- imap_processing/tests/ultra/unit/test_decom_apid_881.py +15 -16
- imap_processing/tests/ultra/unit/test_decom_apid_883.py +12 -10
- imap_processing/tests/ultra/unit/test_decom_apid_896.py +202 -55
- imap_processing/tests/ultra/unit/test_lookup_utils.py +23 -1
- imap_processing/tests/ultra/unit/test_spacecraft_pset.py +3 -4
- imap_processing/tests/ultra/unit/test_ultra_l1a.py +84 -307
- imap_processing/tests/ultra/unit/test_ultra_l1b.py +30 -12
- imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +2 -2
- imap_processing/tests/ultra/unit/test_ultra_l1b_culling.py +4 -1
- imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +163 -29
- imap_processing/tests/ultra/unit/test_ultra_l1c.py +5 -5
- imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +32 -43
- imap_processing/tests/ultra/unit/test_ultra_l2.py +230 -0
- imap_processing/ultra/constants.py +1 -1
- imap_processing/ultra/l0/decom_tools.py +21 -34
- imap_processing/ultra/l0/decom_ultra.py +168 -204
- imap_processing/ultra/l0/ultra_utils.py +152 -136
- imap_processing/ultra/l1a/ultra_l1a.py +55 -243
- imap_processing/ultra/l1b/badtimes.py +1 -4
- imap_processing/ultra/l1b/cullingmask.py +2 -6
- imap_processing/ultra/l1b/de.py +62 -47
- imap_processing/ultra/l1b/extendedspin.py +8 -4
- imap_processing/ultra/l1b/lookup_utils.py +72 -9
- imap_processing/ultra/l1b/ultra_l1b.py +3 -8
- imap_processing/ultra/l1b/ultra_l1b_culling.py +4 -4
- imap_processing/ultra/l1b/ultra_l1b_extended.py +236 -78
- imap_processing/ultra/l1c/histogram.py +2 -6
- imap_processing/ultra/l1c/spacecraft_pset.py +2 -4
- imap_processing/ultra/l1c/ultra_l1c.py +1 -5
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +107 -60
- imap_processing/ultra/l2/ultra_l2.py +299 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_LeftSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_RightSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_LeftSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_RightSlit.csv +526 -0
- imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -2
- imap_processing/ultra/lookup_tables/FM90_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -0
- imap_processing/ultra/packet_definitions/README.md +38 -0
- imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +15302 -482
- imap_processing/ultra/utils/ultra_l1_utils.py +13 -12
- imap_processing/utils.py +1 -1
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/METADATA +3 -2
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/RECORD +264 -225
- imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +0 -154
- imap_processing/mag/imap_mag_sdc-configuration_v001.yaml +0 -6
- imap_processing/mag/l1b/__init__.py +0 -0
- imap_processing/swe/l1b/swe_esa_lookup_table.csv +0 -1441
- imap_processing/swe/l1b/swe_l1b_science.py +0 -699
- imap_processing/tests/swe/test_swe_l1b_science.py +0 -103
- imap_processing/ultra/lookup_tables/dps_sensitivity45.cdf +0 -0
- imap_processing/ultra/lookup_tables/ultra_90_dps_exposure_compressed.cdf +0 -0
- /imap_processing/idex/packet_definitions/{idex_packet_definition.xml → idex_science_packet_definition.xml} +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/20240827095047_SWE_IALIRT_packet.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971383-404.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971384-405.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971385-406.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971386-407.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971387-408.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971388-409.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971389-410.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971390-411.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/461971391-412.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/BinLog CCSDS_FRAG_TLM_20240826_152323Z_IALIRT_data_for_SDC.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/IALiRT Raw Packet Telemetry.txt +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/apid01152.tlm +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/eu_SWP_IAL_20240826_152033.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hi_fsw_view_1_ccsds.bin +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.ccsds +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/hit_ialirt_sample.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/idle_export_eu.SWE_IALIRT_20240827_093852.csv +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_hi-ialirt_20240523200000_v0.0.0.cdf +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
- /imap_processing/tests/ialirt/{test_data → data}/l0/sample_decoded_i-alirt_data.csv +0 -0
- /imap_processing/tests/mag/validation/{imap_calibration_mag_20240229_v01.cdf → calibration/imap_mag_l1b-calibration_20240229_v001.cdf} +0 -0
- /imap_processing/{swe/l1b/engineering_unit_convert_table.csv → tests/swe/lut/imap_swe_eu-conversion_20240510_v000.csv} +0 -0
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/LICENSE +0 -0
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/WHEEL +0 -0
- {imap_processing-0.12.0.dist-info → imap_processing-0.13.0.dist-info}/entry_points.txt +0 -0
imap_processing/__init__.py
CHANGED
|
@@ -27,6 +27,7 @@ PROCESSING_LEVELS = {
|
|
|
27
27
|
"idex": ["l1a", "l1b", "l2a", "l2b"],
|
|
28
28
|
"lo": ["l1a", "l1b", "l1c", "l2"],
|
|
29
29
|
"mag": ["l1a", "l1b", "l1c", "l1d", "l2"],
|
|
30
|
+
"spacecraft": ["l1a"],
|
|
30
31
|
"swapi": ["l1", "l2", "l3a", "l3b"],
|
|
31
32
|
"swe": ["l1a", "l1b", "l2"],
|
|
32
33
|
"ultra": ["l1a", "l1b", "l1c", "l2"],
|
imap_processing/_version.py
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# These version placeholders will be replaced later during substitution.
|
|
2
|
-
__version__ = "0.
|
|
3
|
-
__version_tuple__ = (0,
|
|
2
|
+
__version__ = "0.13.0"
|
|
3
|
+
__version_tuple__ = (0, 13, 0)
|
|
@@ -44,8 +44,7 @@ _CCSDS_PARAMETERS = [
|
|
|
44
44
|
{
|
|
45
45
|
"name": "SRC_SEQ_CTR",
|
|
46
46
|
"lengthInBits": 14,
|
|
47
|
-
"description": "CCSDS Packet Sequence Count "
|
|
48
|
-
"(increments with each new packet)",
|
|
47
|
+
"description": "CCSDS Packet Sequence Count (increments with each new packet)",
|
|
49
48
|
},
|
|
50
49
|
{
|
|
51
50
|
"name": "PKT_LEN",
|
|
@@ -117,73 +117,79 @@ imap_codice_l1b_hskp:
|
|
|
117
117
|
Logical_source: imap_codice_l1b_hskp
|
|
118
118
|
Logical_source_description: IMAP Mission CoDICE Instrument Level-1B Housekeeping Data.
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
imap_codice_l1b_hi-counters-aggregated:
|
|
121
121
|
<<: *instrument_base
|
|
122
122
|
Data_type: L1B_hi-counters-aggregated->Level-1B Hi Aggregated Instrument Rates Data
|
|
123
123
|
Logical_source: imap_codice_l1b_hi-counters-aggregated
|
|
124
124
|
Logical_source_description: IMAP Mission CoDICE Hi Level-1B Aggregated Instrument Rates Data.
|
|
125
125
|
|
|
126
|
-
|
|
126
|
+
imap_codice_l1b_hi-counters-singles:
|
|
127
127
|
<<: *instrument_base
|
|
128
128
|
Data_type: L1B_hi-counters-singles->Level-1B Hi Single Instrument Rates Data
|
|
129
129
|
Logical_source: imap_codice_l1b_hi-counters-singles
|
|
130
130
|
Logical_source_description: IMAP Mission CoDICE Hi Level-1B Single Instrument Rates Data.
|
|
131
131
|
|
|
132
|
-
|
|
132
|
+
imap_codice_l1b_hi-omni:
|
|
133
133
|
<<: *instrument_base
|
|
134
134
|
Data_type: L1B_hi-omni->Level-1B Hi Omnidirectional Data
|
|
135
135
|
Logical_source: imap_codice_l1b_hi-omni
|
|
136
136
|
Logical_source_description: IMAP Mission CoDICE Hi Level-1B Omnidirectional Data.
|
|
137
137
|
|
|
138
|
-
|
|
138
|
+
imap_codice_l1b_hi-priority:
|
|
139
|
+
<<: *instrument_base
|
|
140
|
+
Data_type: L1B_hi-priority->Level-1B Hi Priority Data
|
|
141
|
+
Logical_source: imap_codice_l1b_hi-priority
|
|
142
|
+
Logical_source_description: IMAP Mission CoDICE Hi Level-1B Priority Data.
|
|
143
|
+
|
|
144
|
+
imap_codice_l1b_hi-sectored:
|
|
139
145
|
<<: *instrument_base
|
|
140
146
|
Data_type: L1B_hi-sectored->Level-1B Hi Sectored Data
|
|
141
147
|
Logical_source: imap_codice_l1b_hi-sectored
|
|
142
148
|
Logical_source_description: IMAP Mission CoDICE Hi Level-1B Sectored Data.
|
|
143
149
|
|
|
144
|
-
|
|
150
|
+
imap_codice_l1b_lo-counters-aggregated:
|
|
145
151
|
<<: *instrument_base
|
|
146
152
|
Data_type: L1B_lo-counters-aggregated->Level-1B Lo Aggregated Instrument Rates Data
|
|
147
153
|
Logical_source: imap_codice_l1b_lo-counters-aggregated
|
|
148
154
|
Logical_source_description: IMAP Mission CoDICE Lo Level-1B Aggregated Instrument Rates Data.
|
|
149
155
|
|
|
150
|
-
|
|
156
|
+
imap_codice_l1b_lo-counters-singles:
|
|
151
157
|
<<: *instrument_base
|
|
152
158
|
Data_type: L1B_lo-counters-aggregated->Level-1B Lo Single Instrument Rates Data
|
|
153
159
|
Logical_source: imap_codice_l1b_lo-counters-singles
|
|
154
160
|
Logical_source_description: IMAP Mission CoDICE Lo Level-1B Single Instrument Rates Data.
|
|
155
161
|
|
|
156
|
-
|
|
162
|
+
imap_codice_l1b_lo-sw-angular:
|
|
157
163
|
<<: *instrument_base
|
|
158
164
|
Data_type: L1B_lo-sw-angular->Level-1B Lo Sunward Angular Rates Data
|
|
159
165
|
Logical_source: imap_codice_l1b_lo-sw-angular
|
|
160
166
|
Logical_source_description: IMAP Mission CoDICE Lo Level-1B Sunward Angular Rates Data.
|
|
161
167
|
|
|
162
|
-
|
|
168
|
+
imap_codice_l1b_lo-nsw-angular:
|
|
163
169
|
<<: *instrument_base
|
|
164
170
|
Data_type: L1B_lo-nsw-angular->Level-1B Lo Non-Sunward Angular Rates Data
|
|
165
171
|
Logical_source: imap_codice_l1b_lo-nsw-angular
|
|
166
172
|
Logical_source_description: IMAP Mission CoDICE Lo Level-1B Non-Sunward Angular Rates Data.
|
|
167
173
|
|
|
168
|
-
|
|
174
|
+
imap_codice_l1b_lo-sw-priority:
|
|
169
175
|
<<: *instrument_base
|
|
170
176
|
Data_type: L1B_lo-sw-priority->Level-1B Lo Sunward Priority Rates Data
|
|
171
177
|
Logical_source: imap_codice_l1b_lo-sw-priority
|
|
172
178
|
Logical_source_description: IMAP Mission CoDICE Lo Level-1B Sunward Priority Rates Data.
|
|
173
179
|
|
|
174
|
-
|
|
180
|
+
imap_codice_l1b_lo-nsw-priority:
|
|
175
181
|
<<: *instrument_base
|
|
176
182
|
Data_type: L1B_lo-nsw-priority->Level-1B Lo Non-Sunward Priority Rates Data
|
|
177
183
|
Logical_source: imap_codice_l1b_lo-nsw-priority
|
|
178
184
|
Logical_source_description: IMAP Mission CoDICE Lo Level-1B Non-Sunward Priority Rates Data.
|
|
179
185
|
|
|
180
|
-
|
|
186
|
+
imap_codice_l1b_lo-sw-species:
|
|
181
187
|
<<: *instrument_base
|
|
182
188
|
Data_type: L1B_lo-sw-species->Level-1B Lo Sunward Species Rates Data
|
|
183
189
|
Logical_source: imap_codice_l1b_lo-sw-species
|
|
184
190
|
Logical_source_description: IMAP Mission CoDICE Lo Level-1B Sunward Species Rates Data.
|
|
185
191
|
|
|
186
|
-
|
|
192
|
+
imap_codice_l1b_lo-nsw-species:
|
|
187
193
|
<<: *instrument_base
|
|
188
194
|
Data_type: L1B_lo-nsw-species->Level-1B Lo Non-Sunward Species Rates Data
|
|
189
195
|
Logical_source: imap_codice_l1b_lo-nsw-species
|
|
@@ -53,6 +53,18 @@ esa_step:
|
|
|
53
53
|
VALIDMAX: 127
|
|
54
54
|
VAR_TYPE: support_data
|
|
55
55
|
|
|
56
|
+
event_num:
|
|
57
|
+
CATDESC: Event Number
|
|
58
|
+
FIELDNAM: Event Number
|
|
59
|
+
FILLVAL: 65535
|
|
60
|
+
FORMAT: I5
|
|
61
|
+
LABLAXIS: Event Number
|
|
62
|
+
SCALETYP: linear
|
|
63
|
+
UNITS: " "
|
|
64
|
+
VALIDMIN: 0
|
|
65
|
+
VALIDMAX: 10000
|
|
66
|
+
VAR_TYPE: support_data
|
|
67
|
+
|
|
56
68
|
inst_az:
|
|
57
69
|
CATDESC: Instrument Azimuth Index
|
|
58
70
|
FIELDNAM: Azimuth Index
|
|
@@ -174,6 +186,18 @@ data_quality:
|
|
|
174
186
|
VALIDMAX: 1
|
|
175
187
|
VAR_TYPE: data
|
|
176
188
|
|
|
189
|
+
direct_events_attrs: &direct_events
|
|
190
|
+
<<: *default
|
|
191
|
+
CATDESC: Fill in at creation
|
|
192
|
+
DISPLAY_TYPE: time_series
|
|
193
|
+
FIELDNAM: Fill in at creation
|
|
194
|
+
FILLVAL: 255
|
|
195
|
+
FORMAT: I5
|
|
196
|
+
LABLAXIS: unitless
|
|
197
|
+
UNITS: unitless
|
|
198
|
+
VALIDMIN: 0
|
|
199
|
+
VALIDMAX: 10000
|
|
200
|
+
|
|
177
201
|
energy_table:
|
|
178
202
|
CATDESC: ElectroStatic Analyzer Energy Values
|
|
179
203
|
FIELDNAM: Energy Table
|
|
@@ -1209,6 +1233,551 @@ lo-nsw-species-cnoplus:
|
|
|
1209
1233
|
LABL_PTR_1: spin_sector
|
|
1210
1234
|
LABL_PTR_2: esa_step
|
|
1211
1235
|
|
|
1236
|
+
# <=== Direct Events Attributes ===>
|
|
1237
|
+
P0_APD_ID:
|
|
1238
|
+
<<: *direct_events
|
|
1239
|
+
CATDESC: Priority 0 APD ID
|
|
1240
|
+
FIELDNAM: Priority 0 APD ID
|
|
1241
|
+
VALIDMAX: 32
|
|
1242
|
+
|
|
1243
|
+
P0_APDEnergy:
|
|
1244
|
+
<<: *direct_events
|
|
1245
|
+
CATDESC: Priority 0 APD Energy
|
|
1246
|
+
FIELDNAM: Priority 0 APD Energy
|
|
1247
|
+
FILLVAL: 65535
|
|
1248
|
+
VALIDMAX: 512
|
|
1249
|
+
|
|
1250
|
+
P0_APDGain:
|
|
1251
|
+
<<: *direct_events
|
|
1252
|
+
CATDESC: Priority 0 APD Gain
|
|
1253
|
+
FIELDNAM: Priority 0 APD Gain
|
|
1254
|
+
VALIDMAX: 1
|
|
1255
|
+
|
|
1256
|
+
P0_DataQuality:
|
|
1257
|
+
<<: *direct_events
|
|
1258
|
+
CATDESC: Priority 0 Data Quality
|
|
1259
|
+
FIELDNAM: Priority 0 Data Quality
|
|
1260
|
+
VALIDMAX: 1
|
|
1261
|
+
|
|
1262
|
+
P0_EnergyStep:
|
|
1263
|
+
<<: *direct_events
|
|
1264
|
+
CATDESC: Priority 0 Energy Step
|
|
1265
|
+
FIELDNAM: Priority 0 Energy Step
|
|
1266
|
+
VALIDMAX: 128
|
|
1267
|
+
|
|
1268
|
+
P0_MultiFlag:
|
|
1269
|
+
<<: *direct_events
|
|
1270
|
+
CATDESC: Priority 0 Multi Flag
|
|
1271
|
+
FIELDNAM: Priority 0 Multi Flag
|
|
1272
|
+
VALIDMAX: 1
|
|
1273
|
+
|
|
1274
|
+
P0_NumEvents:
|
|
1275
|
+
<<: *direct_events
|
|
1276
|
+
CATDESC: Priority 0 Number of Events
|
|
1277
|
+
FIELDNAM: Priority 0 Number of Events
|
|
1278
|
+
FILLVAL: 65535
|
|
1279
|
+
|
|
1280
|
+
P0_PHAType:
|
|
1281
|
+
<<: *direct_events
|
|
1282
|
+
CATDESC: Priority 0 PHA Type
|
|
1283
|
+
FIELDNAM: Priority 0 PHA Type
|
|
1284
|
+
VALIDMAX: 4
|
|
1285
|
+
|
|
1286
|
+
P0_Position:
|
|
1287
|
+
<<: *direct_events
|
|
1288
|
+
CATDESC: Priority 0 Position
|
|
1289
|
+
FIELDNAM: Priority 0 Position5
|
|
1290
|
+
VALIDMAX: 32
|
|
1291
|
+
|
|
1292
|
+
P0_SpinAngle:
|
|
1293
|
+
<<: *direct_events
|
|
1294
|
+
CATDESC: Priority 0 Spin Angle
|
|
1295
|
+
FIELDNAM: Priority 0 Spin Angle
|
|
1296
|
+
VALIDMAX: 128
|
|
1297
|
+
|
|
1298
|
+
P0_TOF:
|
|
1299
|
+
<<: *direct_events
|
|
1300
|
+
CATDESC: Priority 0 Time of Flight
|
|
1301
|
+
FIELDNAM: Priority 0 Time of Flight
|
|
1302
|
+
FILLVAL: 65535
|
|
1303
|
+
VALIDMAX: 1024
|
|
1304
|
+
|
|
1305
|
+
P1_APD_ID:
|
|
1306
|
+
<<: *direct_events
|
|
1307
|
+
CATDESC: Priority 1 APD ID
|
|
1308
|
+
FIELDNAM: Priority 1 APD ID
|
|
1309
|
+
VALIDMAX: 32
|
|
1310
|
+
|
|
1311
|
+
P1_APDEnergy:
|
|
1312
|
+
<<: *direct_events
|
|
1313
|
+
CATDESC: Priority 1 APD Energy
|
|
1314
|
+
FIELDNAM: Priority 1 APD Energy
|
|
1315
|
+
FILLVAL: 65535
|
|
1316
|
+
VALIDMAX: 512
|
|
1317
|
+
|
|
1318
|
+
P1_APDGain:
|
|
1319
|
+
<<: *direct_events
|
|
1320
|
+
CATDESC: Priority 1 APD Gain
|
|
1321
|
+
FIELDNAM: Priority 1 APD Gain
|
|
1322
|
+
VALIDMAX: 1
|
|
1323
|
+
|
|
1324
|
+
P1_DataQuality:
|
|
1325
|
+
<<: *direct_events
|
|
1326
|
+
CATDESC: Priority 1 Data Quality
|
|
1327
|
+
FIELDNAM: Priority 1 Data Quality
|
|
1328
|
+
VALIDMAX: 1
|
|
1329
|
+
|
|
1330
|
+
P1_EnergyStep:
|
|
1331
|
+
<<: *direct_events
|
|
1332
|
+
CATDESC: Priority 1 Energy Step
|
|
1333
|
+
FIELDNAM: Priority 1 Energy Step
|
|
1334
|
+
VALIDMAX: 128
|
|
1335
|
+
|
|
1336
|
+
P1_MultiFlag:
|
|
1337
|
+
<<: *direct_events
|
|
1338
|
+
CATDESC: Priority 1 Multi Flag
|
|
1339
|
+
FIELDNAM: Priority 1 Multi Flag
|
|
1340
|
+
VALIDMAX: 1
|
|
1341
|
+
|
|
1342
|
+
P1_NumEvents:
|
|
1343
|
+
<<: *direct_events
|
|
1344
|
+
CATDESC: Priority 1 Number of Events
|
|
1345
|
+
FIELDNAM: Priority 1 Number of Events
|
|
1346
|
+
FILLVAL: 65535
|
|
1347
|
+
|
|
1348
|
+
P1_PHAType:
|
|
1349
|
+
<<: *direct_events
|
|
1350
|
+
CATDESC: Priority 1 PHA Type
|
|
1351
|
+
FIELDNAM: Priority 1 PHA Type
|
|
1352
|
+
VALIDMAX: 4
|
|
1353
|
+
|
|
1354
|
+
P1_Position:
|
|
1355
|
+
<<: *direct_events
|
|
1356
|
+
CATDESC: Priority 1 Position
|
|
1357
|
+
FIELDNAM: Priority 1 Position5
|
|
1358
|
+
VALIDMAX: 32
|
|
1359
|
+
|
|
1360
|
+
P1_SpinAngle:
|
|
1361
|
+
<<: *direct_events
|
|
1362
|
+
CATDESC: Priority 1 Spin Angle
|
|
1363
|
+
FIELDNAM: Priority 1 Spin Angle
|
|
1364
|
+
VALIDMAX: 128
|
|
1365
|
+
|
|
1366
|
+
P1_TOF:
|
|
1367
|
+
<<: *direct_events
|
|
1368
|
+
CATDESC: Priority 1 Time of Flight
|
|
1369
|
+
FIELDNAM: Priority 1 Time of Flight
|
|
1370
|
+
FILLVAL: 65535
|
|
1371
|
+
VALIDMAX: 1024
|
|
1372
|
+
|
|
1373
|
+
P2_APD_ID:
|
|
1374
|
+
<<: *direct_events
|
|
1375
|
+
CATDESC: Priority 2 APD ID
|
|
1376
|
+
FIELDNAM: Priority 2 APD ID
|
|
1377
|
+
VALIDMAX: 32
|
|
1378
|
+
|
|
1379
|
+
P2_APDEnergy:
|
|
1380
|
+
<<: *direct_events
|
|
1381
|
+
CATDESC: Priority 2 APD Energy
|
|
1382
|
+
FIELDNAM: Priority 2 APD Energy
|
|
1383
|
+
FILLVAL: 65535
|
|
1384
|
+
VALIDMAX: 512
|
|
1385
|
+
|
|
1386
|
+
P2_APDGain:
|
|
1387
|
+
<<: *direct_events
|
|
1388
|
+
CATDESC: Priority 2 APD Gain
|
|
1389
|
+
FIELDNAM: Priority 2 APD Gain
|
|
1390
|
+
VALIDMAX: 1
|
|
1391
|
+
|
|
1392
|
+
P2_DataQuality:
|
|
1393
|
+
<<: *direct_events
|
|
1394
|
+
CATDESC: Priority 2 Data Quality
|
|
1395
|
+
FIELDNAM: Priority 2 Data Quality
|
|
1396
|
+
VALIDMAX: 1
|
|
1397
|
+
|
|
1398
|
+
P2_EnergyStep:
|
|
1399
|
+
<<: *direct_events
|
|
1400
|
+
CATDESC: Priority 2 Energy Step
|
|
1401
|
+
FIELDNAM: Priority 2 Energy Step
|
|
1402
|
+
VALIDMAX: 128
|
|
1403
|
+
|
|
1404
|
+
P2_MultiFlag:
|
|
1405
|
+
<<: *direct_events
|
|
1406
|
+
CATDESC: Priority 2 Multi Flag
|
|
1407
|
+
FIELDNAM: Priority 2 Multi Flag
|
|
1408
|
+
VALIDMAX: 1
|
|
1409
|
+
|
|
1410
|
+
P2_NumEvents:
|
|
1411
|
+
<<: *direct_events
|
|
1412
|
+
CATDESC: Priority 2 Number of Events
|
|
1413
|
+
FIELDNAM: Priority 2 Number of Events
|
|
1414
|
+
FILLVAL: 65535
|
|
1415
|
+
|
|
1416
|
+
P2_PHAType:
|
|
1417
|
+
<<: *direct_events
|
|
1418
|
+
CATDESC: Priority 2 PHA Type
|
|
1419
|
+
FIELDNAM: Priority 2 PHA Type
|
|
1420
|
+
VALIDMAX: 4
|
|
1421
|
+
|
|
1422
|
+
P2_Position:
|
|
1423
|
+
<<: *direct_events
|
|
1424
|
+
CATDESC: Priority 2 Position
|
|
1425
|
+
FIELDNAM: Priority 2 Position5
|
|
1426
|
+
VALIDMAX: 32
|
|
1427
|
+
|
|
1428
|
+
P2_SpinAngle:
|
|
1429
|
+
<<: *direct_events
|
|
1430
|
+
CATDESC: Priority 2 Spin Angle
|
|
1431
|
+
FIELDNAM: Priority 2 Spin Angle
|
|
1432
|
+
VALIDMAX: 128
|
|
1433
|
+
|
|
1434
|
+
P2_TOF:
|
|
1435
|
+
<<: *direct_events
|
|
1436
|
+
CATDESC: Priority 2 Time of Flight
|
|
1437
|
+
FIELDNAM: Priority 2 Time of Flight
|
|
1438
|
+
FILLVAL: 65535
|
|
1439
|
+
VALIDMAX: 1024
|
|
1440
|
+
|
|
1441
|
+
P3_APD_ID:
|
|
1442
|
+
<<: *direct_events
|
|
1443
|
+
CATDESC: Priority 3 APD ID
|
|
1444
|
+
FIELDNAM: Priority 3 APD ID
|
|
1445
|
+
VALIDMAX: 32
|
|
1446
|
+
|
|
1447
|
+
P3_APDEnergy:
|
|
1448
|
+
<<: *direct_events
|
|
1449
|
+
CATDESC: Priority 3 APD Energy
|
|
1450
|
+
FIELDNAM: Priority 3 APD Energy
|
|
1451
|
+
FILLVAL: 65535
|
|
1452
|
+
VALIDMAX: 512
|
|
1453
|
+
|
|
1454
|
+
P3_APDGain:
|
|
1455
|
+
<<: *direct_events
|
|
1456
|
+
CATDESC: Priority 3 APD Gain
|
|
1457
|
+
FIELDNAM: Priority 3 APD Gain
|
|
1458
|
+
VALIDMAX: 1
|
|
1459
|
+
|
|
1460
|
+
P3_DataQuality:
|
|
1461
|
+
<<: *direct_events
|
|
1462
|
+
CATDESC: Priority 3 Data Quality
|
|
1463
|
+
FIELDNAM: Priority 3 Data Quality
|
|
1464
|
+
VALIDMAX: 1
|
|
1465
|
+
|
|
1466
|
+
P3_EnergyStep:
|
|
1467
|
+
<<: *direct_events
|
|
1468
|
+
CATDESC: Priority 3 Energy Step
|
|
1469
|
+
FIELDNAM: Priority 3 Energy Step
|
|
1470
|
+
VALIDMAX: 128
|
|
1471
|
+
|
|
1472
|
+
P3_MultiFlag:
|
|
1473
|
+
<<: *direct_events
|
|
1474
|
+
CATDESC: Priority 3 Multi Flag
|
|
1475
|
+
FIELDNAM: Priority 3 Multi Flag
|
|
1476
|
+
VALIDMAX: 1
|
|
1477
|
+
|
|
1478
|
+
P3_NumEvents:
|
|
1479
|
+
<<: *direct_events
|
|
1480
|
+
CATDESC: Priority 3 Number of Events
|
|
1481
|
+
FIELDNAM: Priority 3 Number of Events
|
|
1482
|
+
FILLVAL: 65535
|
|
1483
|
+
|
|
1484
|
+
P3_PHAType:
|
|
1485
|
+
<<: *direct_events
|
|
1486
|
+
CATDESC: Priority 3 PHA Type
|
|
1487
|
+
FIELDNAM: Priority 3 PHA Type
|
|
1488
|
+
VALIDMAX: 4
|
|
1489
|
+
|
|
1490
|
+
P3_Position:
|
|
1491
|
+
<<: *direct_events
|
|
1492
|
+
CATDESC: Priority 3 Position
|
|
1493
|
+
FIELDNAM: Priority 3 Position5
|
|
1494
|
+
VALIDMAX: 32
|
|
1495
|
+
|
|
1496
|
+
P3_SpinAngle:
|
|
1497
|
+
<<: *direct_events
|
|
1498
|
+
CATDESC: Priority 3 Spin Angle
|
|
1499
|
+
FIELDNAM: Priority 3 Spin Angle
|
|
1500
|
+
VALIDMAX: 128
|
|
1501
|
+
|
|
1502
|
+
P3_TOF:
|
|
1503
|
+
<<: *direct_events
|
|
1504
|
+
CATDESC: Priority 3 Time of Flight
|
|
1505
|
+
FIELDNAM: Priority 3 Time of Flight
|
|
1506
|
+
FILLVAL: 65535
|
|
1507
|
+
VALIDMAX: 1024
|
|
1508
|
+
|
|
1509
|
+
P4_APD_ID:
|
|
1510
|
+
<<: *direct_events
|
|
1511
|
+
CATDESC: Priority 4 APD ID
|
|
1512
|
+
FIELDNAM: Priority 4 APD ID
|
|
1513
|
+
VALIDMAX: 32
|
|
1514
|
+
|
|
1515
|
+
P4_APDEnergy:
|
|
1516
|
+
<<: *direct_events
|
|
1517
|
+
CATDESC: Priority 4 APD Energy
|
|
1518
|
+
FIELDNAM: Priority 4 APD Energy
|
|
1519
|
+
FILLVAL: 65535
|
|
1520
|
+
VALIDMAX: 512
|
|
1521
|
+
|
|
1522
|
+
P4_APDGain:
|
|
1523
|
+
<<: *direct_events
|
|
1524
|
+
CATDESC: Priority 4 APD Gain
|
|
1525
|
+
FIELDNAM: Priority 4 APD Gain
|
|
1526
|
+
VALIDMAX: 1
|
|
1527
|
+
|
|
1528
|
+
P4_DataQuality:
|
|
1529
|
+
<<: *direct_events
|
|
1530
|
+
CATDESC: Priority 4 Data Quality
|
|
1531
|
+
FIELDNAM: Priority 4 Data Quality
|
|
1532
|
+
VALIDMAX: 1
|
|
1533
|
+
|
|
1534
|
+
P4_EnergyStep:
|
|
1535
|
+
<<: *direct_events
|
|
1536
|
+
CATDESC: Priority 4 Energy Step
|
|
1537
|
+
FIELDNAM: Priority 4 Energy Step
|
|
1538
|
+
VALIDMAX: 128
|
|
1539
|
+
|
|
1540
|
+
P4_MultiFlag:
|
|
1541
|
+
<<: *direct_events
|
|
1542
|
+
CATDESC: Priority 4 Multi Flag
|
|
1543
|
+
FIELDNAM: Priority 4 Multi Flag
|
|
1544
|
+
VALIDMAX: 1
|
|
1545
|
+
|
|
1546
|
+
P4_NumEvents:
|
|
1547
|
+
<<: *direct_events
|
|
1548
|
+
CATDESC: Priority 4 Number of Events
|
|
1549
|
+
FIELDNAM: Priority 4 Number of Events
|
|
1550
|
+
FILLVAL: 65535
|
|
1551
|
+
|
|
1552
|
+
P4_PHAType:
|
|
1553
|
+
<<: *direct_events
|
|
1554
|
+
CATDESC: Priority 4 PHA Type
|
|
1555
|
+
FIELDNAM: Priority 4 PHA Type
|
|
1556
|
+
VALIDMAX: 4
|
|
1557
|
+
|
|
1558
|
+
P4_Position:
|
|
1559
|
+
<<: *direct_events
|
|
1560
|
+
CATDESC: Priority 4 Position
|
|
1561
|
+
FIELDNAM: Priority 4 Position5
|
|
1562
|
+
VALIDMAX: 32
|
|
1563
|
+
|
|
1564
|
+
P4_SpinAngle:
|
|
1565
|
+
<<: *direct_events
|
|
1566
|
+
CATDESC: Priority 4 Spin Angle
|
|
1567
|
+
FIELDNAM: Priority 4 Spin Angle
|
|
1568
|
+
VALIDMAX: 128
|
|
1569
|
+
|
|
1570
|
+
P4_TOF:
|
|
1571
|
+
<<: *direct_events
|
|
1572
|
+
CATDESC: Priority 4 Time of Flight
|
|
1573
|
+
FIELDNAM: Priority 4 Time of Flight
|
|
1574
|
+
FILLVAL: 65535
|
|
1575
|
+
VALIDMAX: 1024
|
|
1576
|
+
|
|
1577
|
+
P5_APD_ID:
|
|
1578
|
+
<<: *direct_events
|
|
1579
|
+
CATDESC: Priority 5 APD ID
|
|
1580
|
+
FIELDNAM: Priority 5 APD ID
|
|
1581
|
+
VALIDMAX: 32
|
|
1582
|
+
|
|
1583
|
+
P5_APDEnergy:
|
|
1584
|
+
<<: *direct_events
|
|
1585
|
+
CATDESC: Priority 5 APD Energy
|
|
1586
|
+
FIELDNAM: Priority 5 APD Energy
|
|
1587
|
+
FILLVAL: 65535
|
|
1588
|
+
VALIDMAX: 512
|
|
1589
|
+
|
|
1590
|
+
P5_APDGain:
|
|
1591
|
+
<<: *direct_events
|
|
1592
|
+
CATDESC: Priority 5 APD Gain
|
|
1593
|
+
FIELDNAM: Priority 5 APD Gain
|
|
1594
|
+
VALIDMAX: 1
|
|
1595
|
+
|
|
1596
|
+
P5_DataQuality:
|
|
1597
|
+
<<: *direct_events
|
|
1598
|
+
CATDESC: Priority 5 Data Quality
|
|
1599
|
+
FIELDNAM: Priority 5 Data Quality
|
|
1600
|
+
VALIDMAX: 1
|
|
1601
|
+
|
|
1602
|
+
P5_EnergyStep:
|
|
1603
|
+
<<: *direct_events
|
|
1604
|
+
CATDESC: Priority 5 Energy Step
|
|
1605
|
+
FIELDNAM: Priority 5 Energy Step
|
|
1606
|
+
VALIDMAX: 128
|
|
1607
|
+
|
|
1608
|
+
P5_MultiFlag:
|
|
1609
|
+
<<: *direct_events
|
|
1610
|
+
CATDESC: Priority 5 Multi Flag
|
|
1611
|
+
FIELDNAM: Priority 5 Multi Flag
|
|
1612
|
+
VALIDMAX: 1
|
|
1613
|
+
|
|
1614
|
+
P5_NumEvents:
|
|
1615
|
+
<<: *direct_events
|
|
1616
|
+
CATDESC: Priority 5 Number of Events
|
|
1617
|
+
FIELDNAM: Priority 5 Number of Events
|
|
1618
|
+
FILLVAL: 65535
|
|
1619
|
+
|
|
1620
|
+
P5_PHAType:
|
|
1621
|
+
<<: *direct_events
|
|
1622
|
+
CATDESC: Priority 5 PHA Type
|
|
1623
|
+
FIELDNAM: Priority 5 PHA Type
|
|
1624
|
+
VALIDMAX: 4
|
|
1625
|
+
|
|
1626
|
+
P5_Position:
|
|
1627
|
+
<<: *direct_events
|
|
1628
|
+
CATDESC: Priority 5 Position
|
|
1629
|
+
FIELDNAM: Priority 5 Position5
|
|
1630
|
+
VALIDMAX: 32
|
|
1631
|
+
|
|
1632
|
+
P5_SpinAngle:
|
|
1633
|
+
<<: *direct_events
|
|
1634
|
+
CATDESC: Priority 5 Spin Angle
|
|
1635
|
+
FIELDNAM: Priority 5 Spin Angle
|
|
1636
|
+
VALIDMAX: 128
|
|
1637
|
+
|
|
1638
|
+
P5_TOF:
|
|
1639
|
+
<<: *direct_events
|
|
1640
|
+
CATDESC: Priority 5 Time of Flight
|
|
1641
|
+
FIELDNAM: Priority 5 Time of Flight
|
|
1642
|
+
FILLVAL: 65535
|
|
1643
|
+
VALIDMAX: 1024
|
|
1644
|
+
|
|
1645
|
+
P6_APD_ID:
|
|
1646
|
+
<<: *direct_events
|
|
1647
|
+
CATDESC: Priority 6 APD ID
|
|
1648
|
+
FIELDNAM: Priority 6 APD ID
|
|
1649
|
+
VALIDMAX: 32
|
|
1650
|
+
|
|
1651
|
+
P6_APDEnergy:
|
|
1652
|
+
<<: *direct_events
|
|
1653
|
+
CATDESC: Priority 6 APD Energy
|
|
1654
|
+
FIELDNAM: Priority 6 APD Energy
|
|
1655
|
+
FILLVAL: 65535
|
|
1656
|
+
VALIDMAX: 512
|
|
1657
|
+
|
|
1658
|
+
P6_APDGain:
|
|
1659
|
+
<<: *direct_events
|
|
1660
|
+
CATDESC: Priority 6 APD Gain
|
|
1661
|
+
FIELDNAM: Priority 6 APD Gain
|
|
1662
|
+
VALIDMAX: 1
|
|
1663
|
+
|
|
1664
|
+
P6_DataQuality:
|
|
1665
|
+
<<: *direct_events
|
|
1666
|
+
CATDESC: Priority 6 Data Quality
|
|
1667
|
+
FIELDNAM: Priority 6 Data Quality
|
|
1668
|
+
VALIDMAX: 1
|
|
1669
|
+
|
|
1670
|
+
P6_EnergyStep:
|
|
1671
|
+
<<: *direct_events
|
|
1672
|
+
CATDESC: Priority 6 Energy Step
|
|
1673
|
+
FIELDNAM: Priority 6 Energy Step
|
|
1674
|
+
VALIDMAX: 128
|
|
1675
|
+
|
|
1676
|
+
P6_MultiFlag:
|
|
1677
|
+
<<: *direct_events
|
|
1678
|
+
CATDESC: Priority 6 Multi Flag
|
|
1679
|
+
FIELDNAM: Priority 6 Multi Flag
|
|
1680
|
+
VALIDMAX: 1
|
|
1681
|
+
|
|
1682
|
+
P6_NumEvents:
|
|
1683
|
+
<<: *direct_events
|
|
1684
|
+
CATDESC: Priority 6 Number of Events
|
|
1685
|
+
FIELDNAM: Priority 6 Number of Events
|
|
1686
|
+
FILLVAL: 65535
|
|
1687
|
+
|
|
1688
|
+
P6_PHAType:
|
|
1689
|
+
<<: *direct_events
|
|
1690
|
+
CATDESC: Priority 6 PHA Type
|
|
1691
|
+
FIELDNAM: Priority 6 PHA Type
|
|
1692
|
+
VALIDMAX: 4
|
|
1693
|
+
|
|
1694
|
+
P6_Position:
|
|
1695
|
+
<<: *direct_events
|
|
1696
|
+
CATDESC: Priority 6 Position
|
|
1697
|
+
FIELDNAM: Priority 6 Position5
|
|
1698
|
+
VALIDMAX: 32
|
|
1699
|
+
|
|
1700
|
+
P6_SpinAngle:
|
|
1701
|
+
<<: *direct_events
|
|
1702
|
+
CATDESC: Priority 6 Spin Angle
|
|
1703
|
+
FIELDNAM: Priority 6 Spin Angle
|
|
1704
|
+
VALIDMAX: 128
|
|
1705
|
+
|
|
1706
|
+
P6_TOF:
|
|
1707
|
+
<<: *direct_events
|
|
1708
|
+
CATDESC: Priority 6 Time of Flight
|
|
1709
|
+
FIELDNAM: Priority 6 Time of Flight
|
|
1710
|
+
FILLVAL: 65535
|
|
1711
|
+
VALIDMAX: 1024
|
|
1712
|
+
|
|
1713
|
+
P7_APD_ID:
|
|
1714
|
+
<<: *direct_events
|
|
1715
|
+
CATDESC: Priority 7 APD ID
|
|
1716
|
+
FIELDNAM: Priority 7 APD ID
|
|
1717
|
+
VALIDMAX: 32
|
|
1718
|
+
|
|
1719
|
+
P7_APDEnergy:
|
|
1720
|
+
<<: *direct_events
|
|
1721
|
+
CATDESC: Priority 7 APD Energy
|
|
1722
|
+
FIELDNAM: Priority 7 APD Energy
|
|
1723
|
+
FILLVAL: 65535
|
|
1724
|
+
VALIDMAX: 512
|
|
1725
|
+
|
|
1726
|
+
P7_APDGain:
|
|
1727
|
+
<<: *direct_events
|
|
1728
|
+
CATDESC: Priority 7 APD Gain
|
|
1729
|
+
FIELDNAM: Priority 7 APD Gain
|
|
1730
|
+
VALIDMAX: 1
|
|
1731
|
+
|
|
1732
|
+
P7_DataQuality:
|
|
1733
|
+
<<: *direct_events
|
|
1734
|
+
CATDESC: Priority 7 Data Quality
|
|
1735
|
+
FIELDNAM: Priority 7 Data Quality
|
|
1736
|
+
VALIDMAX: 1
|
|
1737
|
+
|
|
1738
|
+
P7_EnergyStep:
|
|
1739
|
+
<<: *direct_events
|
|
1740
|
+
CATDESC: Priority 7 Energy Step
|
|
1741
|
+
FIELDNAM: Priority 7 Energy Step
|
|
1742
|
+
VALIDMAX: 128
|
|
1743
|
+
|
|
1744
|
+
P7_MultiFlag:
|
|
1745
|
+
<<: *direct_events
|
|
1746
|
+
CATDESC: Priority 7 Multi Flag
|
|
1747
|
+
FIELDNAM: Priority 7 Multi Flag
|
|
1748
|
+
VALIDMAX: 1
|
|
1749
|
+
|
|
1750
|
+
P7_NumEvents:
|
|
1751
|
+
<<: *direct_events
|
|
1752
|
+
CATDESC: Priority 7 Number of Events
|
|
1753
|
+
FIELDNAM: Priority 7 Number of Events
|
|
1754
|
+
FILLVAL: 65535
|
|
1755
|
+
|
|
1756
|
+
P7_PHAType:
|
|
1757
|
+
<<: *direct_events
|
|
1758
|
+
CATDESC: Priority 7 PHA Type
|
|
1759
|
+
FIELDNAM: Priority 7 PHA Type
|
|
1760
|
+
VALIDMAX: 4
|
|
1761
|
+
|
|
1762
|
+
P7_Position:
|
|
1763
|
+
<<: *direct_events
|
|
1764
|
+
CATDESC: Priority 7 Position
|
|
1765
|
+
FIELDNAM: Priority 7 Position5
|
|
1766
|
+
VALIDMAX: 32
|
|
1767
|
+
|
|
1768
|
+
P7_SpinAngle:
|
|
1769
|
+
<<: *direct_events
|
|
1770
|
+
CATDESC: Priority 7 Spin Angle
|
|
1771
|
+
FIELDNAM: Priority 7 Spin Angle
|
|
1772
|
+
VALIDMAX: 128
|
|
1773
|
+
|
|
1774
|
+
P7_TOF:
|
|
1775
|
+
<<: *direct_events
|
|
1776
|
+
CATDESC: Priority 7 Time of Flight
|
|
1777
|
+
FIELDNAM: Priority 7 Time of Flight
|
|
1778
|
+
FILLVAL: 65535
|
|
1779
|
+
VALIDMAX: 1024
|
|
1780
|
+
|
|
1212
1781
|
# <=== CCSDS Header Attributes ===>
|
|
1213
1782
|
version:
|
|
1214
1783
|
<<: *hskp_default
|