imap-processing 0.17.0__py3-none-any.whl → 0.19.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.

Files changed (141) hide show
  1. imap_processing/_version.py +2 -2
  2. imap_processing/ancillary/ancillary_dataset_combiner.py +161 -1
  3. imap_processing/ccsds/excel_to_xtce.py +12 -0
  4. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +6 -6
  5. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +312 -274
  6. imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +39 -28
  7. imap_processing/cdf/config/imap_codice_l2_variable_attrs.yaml +1048 -183
  8. imap_processing/cdf/config/imap_constant_attrs.yaml +4 -2
  9. imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +12 -0
  10. imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +5 -0
  11. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +10 -4
  12. imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +163 -100
  13. imap_processing/cdf/config/imap_hit_l2_variable_attrs.yaml +4 -4
  14. imap_processing/cdf/config/imap_ialirt_l1_variable_attrs.yaml +97 -54
  15. imap_processing/cdf/config/imap_idex_l2a_variable_attrs.yaml +33 -4
  16. imap_processing/cdf/config/imap_idex_l2b_variable_attrs.yaml +44 -44
  17. imap_processing/cdf/config/imap_idex_l2c_variable_attrs.yaml +77 -61
  18. imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +30 -0
  19. imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +4 -15
  20. imap_processing/cdf/config/imap_lo_l1c_variable_attrs.yaml +189 -98
  21. imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +99 -2
  22. imap_processing/cdf/config/imap_mag_l1c_variable_attrs.yaml +24 -1
  23. imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +60 -0
  24. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +99 -11
  25. imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +50 -7
  26. imap_processing/cli.py +121 -44
  27. imap_processing/codice/codice_l1a.py +165 -77
  28. imap_processing/codice/codice_l1b.py +1 -1
  29. imap_processing/codice/codice_l2.py +118 -19
  30. imap_processing/codice/constants.py +1217 -1089
  31. imap_processing/decom.py +1 -4
  32. imap_processing/ena_maps/ena_maps.py +32 -25
  33. imap_processing/ena_maps/utils/naming.py +8 -2
  34. imap_processing/glows/ancillary/imap_glows_exclusions-by-instr-team_20250923_v002.dat +10 -0
  35. imap_processing/glows/ancillary/imap_glows_map-of-excluded-regions_20250923_v002.dat +393 -0
  36. imap_processing/glows/ancillary/imap_glows_map-of-uv-sources_20250923_v002.dat +593 -0
  37. imap_processing/glows/ancillary/imap_glows_pipeline_settings_20250923_v002.json +54 -0
  38. imap_processing/glows/ancillary/imap_glows_suspected-transients_20250923_v002.dat +10 -0
  39. imap_processing/glows/l1b/glows_l1b.py +99 -9
  40. imap_processing/glows/l1b/glows_l1b_data.py +350 -38
  41. imap_processing/glows/l2/glows_l2.py +11 -0
  42. imap_processing/hi/hi_l1a.py +124 -3
  43. imap_processing/hi/hi_l1b.py +154 -71
  44. imap_processing/hi/hi_l2.py +84 -51
  45. imap_processing/hi/utils.py +153 -8
  46. imap_processing/hit/l0/constants.py +3 -0
  47. imap_processing/hit/l0/decom_hit.py +5 -8
  48. imap_processing/hit/l1a/hit_l1a.py +375 -45
  49. imap_processing/hit/l1b/constants.py +5 -0
  50. imap_processing/hit/l1b/hit_l1b.py +61 -131
  51. imap_processing/hit/l2/constants.py +1 -1
  52. imap_processing/hit/l2/hit_l2.py +10 -11
  53. imap_processing/ialirt/calculate_ingest.py +219 -0
  54. imap_processing/ialirt/constants.py +32 -1
  55. imap_processing/ialirt/generate_coverage.py +201 -0
  56. imap_processing/ialirt/l0/ialirt_spice.py +5 -2
  57. imap_processing/ialirt/l0/parse_mag.py +337 -29
  58. imap_processing/ialirt/l0/process_hit.py +5 -3
  59. imap_processing/ialirt/l0/process_swapi.py +41 -25
  60. imap_processing/ialirt/l0/process_swe.py +23 -7
  61. imap_processing/ialirt/process_ephemeris.py +70 -14
  62. imap_processing/ialirt/utils/constants.py +22 -16
  63. imap_processing/ialirt/utils/create_xarray.py +42 -19
  64. imap_processing/idex/idex_constants.py +1 -5
  65. imap_processing/idex/idex_l0.py +2 -2
  66. imap_processing/idex/idex_l1a.py +2 -3
  67. imap_processing/idex/idex_l1b.py +2 -3
  68. imap_processing/idex/idex_l2a.py +130 -4
  69. imap_processing/idex/idex_l2b.py +313 -119
  70. imap_processing/idex/idex_utils.py +1 -3
  71. imap_processing/lo/l0/lo_apid.py +1 -0
  72. imap_processing/lo/l0/lo_science.py +25 -24
  73. imap_processing/lo/l1a/lo_l1a.py +44 -0
  74. imap_processing/lo/l1b/lo_l1b.py +3 -3
  75. imap_processing/lo/l1c/lo_l1c.py +116 -50
  76. imap_processing/lo/l2/lo_l2.py +29 -29
  77. imap_processing/lo/lo_ancillary.py +55 -0
  78. imap_processing/lo/packet_definitions/lo_xtce.xml +5359 -106
  79. imap_processing/mag/constants.py +1 -0
  80. imap_processing/mag/l1a/mag_l1a.py +1 -0
  81. imap_processing/mag/l1a/mag_l1a_data.py +26 -0
  82. imap_processing/mag/l1b/mag_l1b.py +3 -2
  83. imap_processing/mag/l1c/interpolation_methods.py +14 -15
  84. imap_processing/mag/l1c/mag_l1c.py +23 -6
  85. imap_processing/mag/l1d/__init__.py +0 -0
  86. imap_processing/mag/l1d/mag_l1d.py +176 -0
  87. imap_processing/mag/l1d/mag_l1d_data.py +725 -0
  88. imap_processing/mag/l2/__init__.py +0 -0
  89. imap_processing/mag/l2/mag_l2.py +25 -20
  90. imap_processing/mag/l2/mag_l2_data.py +199 -130
  91. imap_processing/quality_flags.py +28 -2
  92. imap_processing/spice/geometry.py +101 -36
  93. imap_processing/spice/pointing_frame.py +1 -7
  94. imap_processing/spice/repoint.py +29 -2
  95. imap_processing/spice/spin.py +32 -8
  96. imap_processing/spice/time.py +60 -19
  97. imap_processing/swapi/l1/swapi_l1.py +10 -4
  98. imap_processing/swapi/l2/swapi_l2.py +66 -24
  99. imap_processing/swapi/swapi_utils.py +1 -1
  100. imap_processing/swe/l1b/swe_l1b.py +3 -6
  101. imap_processing/ultra/constants.py +28 -3
  102. imap_processing/ultra/l0/decom_tools.py +15 -8
  103. imap_processing/ultra/l0/decom_ultra.py +35 -11
  104. imap_processing/ultra/l0/ultra_utils.py +102 -12
  105. imap_processing/ultra/l1a/ultra_l1a.py +26 -6
  106. imap_processing/ultra/l1b/cullingmask.py +6 -3
  107. imap_processing/ultra/l1b/de.py +122 -26
  108. imap_processing/ultra/l1b/extendedspin.py +29 -2
  109. imap_processing/ultra/l1b/lookup_utils.py +424 -50
  110. imap_processing/ultra/l1b/quality_flag_filters.py +23 -0
  111. imap_processing/ultra/l1b/ultra_l1b_culling.py +356 -5
  112. imap_processing/ultra/l1b/ultra_l1b_extended.py +534 -90
  113. imap_processing/ultra/l1c/helio_pset.py +127 -7
  114. imap_processing/ultra/l1c/l1c_lookup_utils.py +256 -0
  115. imap_processing/ultra/l1c/spacecraft_pset.py +90 -15
  116. imap_processing/ultra/l1c/ultra_l1c.py +6 -0
  117. imap_processing/ultra/l1c/ultra_l1c_culling.py +85 -0
  118. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +446 -341
  119. imap_processing/ultra/l2/ultra_l2.py +0 -1
  120. imap_processing/ultra/utils/ultra_l1_utils.py +40 -3
  121. imap_processing/utils.py +3 -4
  122. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/METADATA +3 -3
  123. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/RECORD +126 -126
  124. imap_processing/idex/idex_l2c.py +0 -250
  125. imap_processing/spice/kernels.py +0 -187
  126. imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_LeftSlit.csv +0 -526
  127. imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_RightSlit.csv +0 -526
  128. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_LeftSlit.csv +0 -526
  129. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_RightSlit.csv +0 -524
  130. imap_processing/ultra/lookup_tables/EgyNorm.mem.csv +0 -32769
  131. imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +0 -2
  132. imap_processing/ultra/lookup_tables/FM90_Startup1_ULTRA_IMGPARAMS_20240719.csv +0 -2
  133. imap_processing/ultra/lookup_tables/dps_grid45_compressed.cdf +0 -0
  134. imap_processing/ultra/lookup_tables/ultra45_back-pos-luts.csv +0 -4097
  135. imap_processing/ultra/lookup_tables/ultra45_tdc_norm.csv +0 -2050
  136. imap_processing/ultra/lookup_tables/ultra90_back-pos-luts.csv +0 -4097
  137. imap_processing/ultra/lookup_tables/ultra90_tdc_norm.csv +0 -2050
  138. imap_processing/ultra/lookup_tables/yadjust.csv +0 -257
  139. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/LICENSE +0 -0
  140. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/WHEEL +0 -0
  141. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/entry_points.txt +0 -0
@@ -2,25 +2,52 @@ int_fillval: &int_fillval -9223372036854775808
2
2
  int_maxval: &int_maxval 9223372036854775807
3
3
  double_fillval: &double_fillval -1.0E31
4
4
 
5
- epoch_collection_set:
6
- CATDESC: Nanoseconds since J2000 with leap seconds. Start (left-edge) of reference time.
7
- FIELDNAM: epoch
8
- LABLAXIS: epoch
9
- FILLVAL: -9223372036854775808
10
- FORMAT: " " # Supposedly not required, fails in xarray_to_cdf
11
- VALIDMIN: -9223372036854775808
12
- VALIDMAX: 9223372036854775807
13
- UNITS: ns
14
- VAR_TYPE: support_data
15
- SCALETYP: linear
16
- MONOTON: INCREASE
17
- TIME_BASE: J2000
18
- TIME_SCALE: Terrestrial Time
19
- REFERENCE_POSITION: Rotating Earth Geoid
20
- RESOLUTION: ' '
21
- DISPLAY_TYPE: time_series
22
- DICT_KEY: SPASE>Support>SupportQantity:Temporal
5
+ # Base attributes for charge and mass variables
6
+ base_charge: &base_charge
7
+ CATDESC: " "
8
+ FIELDNAM: " "
9
+ DEPEND_0: epoch
10
+ DEPEND_1: impact_charge
11
+ DEPEND_2: spin_phase
12
+ LABL_PTR_1: charge_labels
13
+ LABL_PTR_2: spin_phase_labels
14
+ DISPLAY_TYPE: spectrogram
15
+ VAR_TYPE: data
16
+ FILLVAL: *int_fillval
17
+ FORMAT: E10.3
18
+ VALIDMIN: -1
19
+ VALIDMAX: *int_maxval
23
20
 
21
+ base_mass: &base_mass
22
+ CATDESC: " "
23
+ FIELDNAM: " "
24
+ DEPEND_0: epoch
25
+ DEPEND_1: mass
26
+ DEPEND_2: spin_phase
27
+ LABL_PTR_1: mass_labels
28
+ LABL_PTR_2: spin_phase_labels
29
+ DISPLAY_TYPE: spectrogram
30
+ VAR_TYPE: data
31
+ FILLVAL: *int_fillval
32
+ FORMAT: E10.3
33
+ VALIDMIN: 0.0
34
+ VALIDMAX: *int_maxval
35
+
36
+ base_charge_map: &base_charge_map
37
+ <<: *base_charge
38
+ DEPEND_2: rectangular_lon_pixel
39
+ DEPEND_3: rectangular_lat_pixel
40
+ LABL_PTR_2: rectangular_lon_pixel_label
41
+ LABL_PTR_3: rectangular_lat_pixel_label
42
+
43
+ base_mass_map: &base_mass_map
44
+ <<: *base_mass
45
+ DEPEND_2: rectangular_lon_pixel
46
+ DEPEND_3: rectangular_lat_pixel
47
+ LABL_PTR_2: rectangular_lon_pixel_label
48
+ LABL_PTR_3: rectangular_lat_pixel_label
49
+
50
+ # Label attributes
24
51
  rectangular_lon_pixel_label:
25
52
  CATDESC: Longitude pixel index label for IDEX SkyMap.
26
53
  FIELDNAM: Longitude pixel label
@@ -35,28 +62,10 @@ rectangular_lat_pixel_label:
35
62
  VAR_TYPE: metadata
36
63
  DICT_KEY: SPASE>Support>SupportQuantity:Other
37
64
 
38
- pixel_label:
39
- CATDESC: HEALPix pixel index label for IDEX SkyMap.
40
- FIELDNAM: Pixel label
41
- FORMAT: A5
42
- VAR_TYPE: metadata
43
- DICT_KEY: SPASE>Support>SupportQuantity:Other
44
-
45
- pixel_index:
46
- CATDESC: HEALPix pixel index for IDEX SkyMap
47
- FIELDNAM: HEALPix Index
48
- FORMAT: I4
49
- LABLAXIS: HEALPix Index
50
- VAR_TYPE: support_data
51
- UNITS: " "
52
- VALIDMIN: 0
53
- VALIDMAX: 768
54
- FILLVAL: *int_fillval
55
- DICT_KEY: SPASE>Support>SupportQuantity:Positional
56
-
65
+ # Vars
57
66
  rectangular_lon_pixel:
58
- CATDESC: Longitude pixel index for IDEX SkyMap
59
- FIELDNAM: Rectangular Longitude Index
67
+ CATDESC: Longitude pixel center for IDEX SkyMap
68
+ FIELDNAM: Rectangular Longitude Center
60
69
  FORMAT: F12.6
61
70
  LABLAXIS: Longitude Pixel
62
71
  VAR_TYPE: support_data
@@ -67,8 +76,8 @@ rectangular_lon_pixel:
67
76
  DICT_KEY: SPASE>Support>SupportQuantity:Positional
68
77
 
69
78
  rectangular_lat_pixel:
70
- CATDESC: Latitude pixel index for IDEX SkyMap
71
- FIELDNAM: Rectangular Latitude Index
79
+ CATDESC: Latitude pixel center for IDEX SkyMap
80
+ FIELDNAM: Rectangular Latitude Center
72
81
  FORMAT: F12.6
73
82
  LABLAXIS: Latitude Pixel
74
83
  VAR_TYPE: support_data
@@ -78,27 +87,34 @@ rectangular_lat_pixel:
78
87
  FILLVAL: *double_fillval
79
88
  DICT_KEY: SPASE>Support>SupportQuantity:Positional
80
89
 
81
- counts: &counts
82
- CATDESC: Number of raw dust events for each pixel
83
- FIELDNAM: Dust Counts
84
- FORMAT: I20
90
+ rate_by_charge_map:
91
+ <<: *base_charge_map
92
+ CATDESC: Count rate per day by impact charge, longitude, and latitude.
93
+ FIELDNAM: Rate (day^-1) by Charge Map
94
+ UNITS: day^-1
95
+ FILLVAL: *double_fillval
96
+ DICT_KEY: SPASE>SupportQuantity:CountRate,Qualifier:Array
97
+
98
+ counts_by_charge_map:
99
+ <<: *base_charge_map
100
+ CATDESC: Count by impact charge, longitude, and latitude.
101
+ FIELDNAM: Counts by Charge Map
102
+ FORMAT: I8
85
103
  UNITS: counts
86
- VAR_TYPE: data
87
- DISPLAY_TYPE: spectrogram
88
- DEPEND_0: epoch
89
- VALIDMIN: 0
90
- VALIDMAX: *int_maxval
91
- FILLVAL: *int_fillval
92
104
  DICT_KEY: SPASE>Particle>ParticleType:Dust,ParticleQuantity:Counts,Qualifier:Array
93
105
 
94
- healpix_counts:
95
- <<: *counts
96
- DEPEND_1: pixel_index
97
- LABLAXIS: Counts
106
+ counts_by_mass_map:
107
+ <<: *base_mass_map
108
+ CATDESC: Count by mass, longitude, and latitude.
109
+ FIELDNAM: Counts by Mass Map
110
+ FORMAT: I8
111
+ UNITS: counts
112
+ DICT_KEY: SPASE>Particle>ParticleType:Dust,ParticleQuantity:Counts,Qualifier:Array
98
113
 
99
- rectangular_counts:
100
- <<: *counts
101
- DEPEND_1: rectangular_lon_pixel
102
- DEPEND_2: rectangular_lat_pixel
103
- LABL_PTR_1: rectangular_lon_pixel_label
104
- LABL_PTR_2: rectangular_lat_pixel_label
114
+ rate_by_mass_map:
115
+ <<: *base_mass_map
116
+ CATDESC: Count rate per day by mass, longitude, and latitude.
117
+ FIELDNAM: Rate (day^-1) by Mass Map
118
+ UNITS: day^-1
119
+ FILLVAL: *double_fillval
120
+ DICT_KEY: SPASE>SupportQuantity:CountRate,Qualifier:Array
@@ -29,6 +29,24 @@ imap_lo_l1a_spin:
29
29
  Logical_source: imap_lo_l1a_spin
30
30
  Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1A Data
31
31
 
32
+ imap_lo_l1a_nhk:
33
+ <<: *instrument_base
34
+ Data_type: L1A_star>Level-1A Nominal Housekeeping
35
+ Logical_source: imap_lo_l1a_nhk
36
+ Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1A Data
37
+
38
+ imap_lo_l1a_shk:
39
+ <<: *instrument_base
40
+ Data_type: L1A_star>Level-1A Static Housekeeping
41
+ Logical_source: imap_lo_l1a_shk
42
+ Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1A Data
43
+
44
+ imap_lo_l1a_pcc:
45
+ <<: *instrument_base
46
+ Data_type: L1A_star>Level-1A Pivot Platform
47
+ Logical_source: imap_lo_l1a_pcc
48
+ Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1A Data
49
+
32
50
  imap_lo_l1b_badtimes:
33
51
  <<: *instrument_base
34
52
  Data_type: L1B_badtimes>Level-1B Badtimes
@@ -65,6 +83,18 @@ imap_lo_l1b_prostar:
65
83
  Logical_source: imap_lo_l1b_prostar
66
84
  Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
67
85
 
86
+ imap_lo_l1b_nhk:
87
+ <<: *instrument_base
88
+ Data_type: L1B_star>Level-1B Nominal Housekeeping
89
+ Logical_source: imap_lo_l1b_nhk
90
+ Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
91
+
92
+ imap_lo_l1b_shk:
93
+ <<: *instrument_base
94
+ Data_type: L1B_star>Level-1B Static Housekeeping
95
+ Logical_source: imap_lo_l1b_shk
96
+ Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1B Data
97
+
68
98
  imap_lo_l1c_goodtimes:
69
99
  <<: *instrument_base
70
100
  Data_type: L1C_goodtimes>Level-1C Goodtimes List
@@ -57,8 +57,8 @@ hist_az_60_default: &hist_az_60_default
57
57
  <<: *default_uint32
58
58
  VAR_TYPE: data
59
59
  DEPEND_0: epoch
60
- DEPEND_1: azimuth_60
61
- DEPEND_2: esa_step
60
+ DEPEND_1: esa_step
61
+ DEPEND_2: azimuth_60
62
62
  LABL_PTR_1: azimuth_60_label
63
63
  LABL_PTR_2: esa_step_label
64
64
 
@@ -66,8 +66,8 @@ hist_az_6_default: &hist_az_6_default
66
66
  <<: *default_uint32
67
67
  VAR_TYPE: data
68
68
  DEPEND_0: epoch
69
- DEPEND_1: azimuth_6
70
- DEPEND_2: esa_step
69
+ DEPEND_1: esa_step
70
+ DEPEND_2: azimuth_6
71
71
  LABL_PTR_1: azimuth_6_label
72
72
  LABL_PTR_2: esa_step_label
73
73
 
@@ -78,17 +78,6 @@ spin_default_attrs: &spin_default
78
78
  DEPEND_1: spin
79
79
  LABL_PTR_1: spin_label
80
80
 
81
-
82
- # Re-used Coordinate
83
- epoch:
84
- <<: *default_int64
85
- CATDESC: Epoch Time
86
- DEPEND_0: epoch
87
- FIELDNAM: Epoch time
88
- Units: 'ns'
89
- VAR_TYPE: support_data
90
- LABLAXIS: Epoch
91
-
92
81
  esa_step_label:
93
82
  CATDESC: ESA Steps
94
83
  FIELDNAM: ESA Steps
@@ -7,69 +7,86 @@ default_attrs: &default
7
7
  DEPEND_0: epoch
8
8
  VALIDMAX: 9223372036854775807
9
9
  VAR_TYPE: data
10
- UNITS: ' '
10
+ UNITS: " "
11
11
 
12
12
  # Non-epoch Coordinates
13
- esa_step_label:
13
+ esa_energy_step_label:
14
14
  CATDESC: ESA Steps
15
15
  FIELDNAM: ESA Steps
16
16
  FORMAT: A1
17
17
  VAR_TYPE: metadata
18
18
 
19
- esa_step:
19
+ esa_energy_step:
20
20
  VALIDMIN: 1
21
21
  VALIDMAX: 7
22
- FILLVAL: -9223372036854775808
23
22
  CATDESC: Energy Step
24
- DEPEND_1: esa_step
25
23
  FIELDNAM: Energy Step
26
- UNITS: ' '
24
+ UNITS: " "
27
25
  FORMAT: I1
28
26
  VAR_TYPE: support_data
29
27
  LABLAXIS: ESA
30
- LABL_PTR_1: esa_step_label
31
28
 
32
- pointing_bins_label:
33
- CATDESC: Pointing bins
34
- FIELDNAM: Pointing bins
29
+ spin_angle_label:
30
+ CATDESC: Spin angles
31
+ FIELDNAM: Spin angles
35
32
  FORMAT: A4
36
33
  VAR_TYPE: metadata
37
34
 
38
- pointing_bins:
35
+ spin_angle:
39
36
  VALIDMIN: 0
40
- VALIDMAX: 3599
41
- FILLVAL: -9223372036854775808
42
- CATDESC: Pointing bins
43
- DEPEND_1: pointing_bins
44
- FIELDNAM: Pointing Bins
45
- UNITS: ' '
37
+ VALIDMAX: 360
38
+ CATDESC: Spin angle bin center in despun pointing frame
39
+ FIELDNAM: Spin angle
40
+ UNITS: "degrees"
41
+ FORMAT: I4
42
+ VAR_TYPE: support_data
43
+ LABLAXIS: spin angle
44
+
45
+ off_angle_label:
46
+ CATDESC: Off axis angles
47
+ FIELDNAM: Off axis angles
48
+ FORMAT: A4
49
+ VAR_TYPE: metadata
50
+
51
+ off_angle:
52
+ VALIDMIN: -2
53
+ VALIDMAX: 2
54
+ CATDESC: Off axis angle bin center in despun pointing frame
55
+ FIELDNAM: Off axis angle
56
+ UNITS: "degrees"
46
57
  FORMAT: I4
47
58
  VAR_TYPE: support_data
48
- LABLAXIS: pointing bins
49
- LABL_PTR_1: pointing_bins_label
59
+ LABLAXIS: off angle
50
60
 
51
- pointing_start:
61
+ pointing_start_met:
52
62
  <<: *default
53
63
  CATDESC: MET of start of pointing
54
64
  FIELDNAM: Pointing start time
55
65
  FORMAT: I12
56
66
  UNITS: s
57
- LABLAXIS: pointing start time
67
+ LABLAXIS: pointing start
58
68
 
59
- pointing_end:
69
+ pointing_end_met:
60
70
  <<: *default
61
71
  CATDESC: MET of end of pointing
62
72
  FIELDNAM: Pointing end time
63
73
  FORMAT: I12
64
74
  UNITS: s
65
- LABLAXIS: pointing end time
75
+ LABLAXIS: pointing end
66
76
 
67
- mode:
77
+ start_spin_number:
68
78
  <<: *default
69
- CATDESC: Science Mode for Pointing
70
- FIELDNAM: Science Mode
79
+ CATDESC: The spin number at the start of the pointing
80
+ FIELDNAM: Spin number at start of pointing
81
+ FORMAT: I12
82
+ LABLAXIS: Start spin
83
+
84
+ end_spin_number:
85
+ <<: *default
86
+ CATDESC: The spin number at the start of the pointing
87
+ FIELDNAM: Spin number at the end of the pointing
71
88
  FORMAT: I12
72
- LABLAXIS: science mode
89
+ LABLAXIS: End spin
73
90
 
74
91
  pivot_angle:
75
92
  <<: *default
@@ -80,100 +97,174 @@ pivot_angle:
80
97
  UNITS: degrees
81
98
  LABLAXIS: pivot angle
82
99
 
100
+ esa_mode:
101
+ <<: *default
102
+ DEPEND_1: esa_energy_step
103
+ CATDESC: Science Mode for Pointing
104
+ FIELDNAM: Science Mode
105
+ FORMAT: I12
106
+ LABLAXIS: esa mode
107
+
108
+ hae_longitude:
109
+ <<: *default
110
+ VALIDMAX: 360
111
+ CATDESC: Bin longitudes in HAE coordinates
112
+ FIELDNAM: Bin longitudes
113
+ FORMAT: I12
114
+ UNITS: degrees
115
+ LABLAXIS: longitude
116
+ DEPEND_1: spin_angle
117
+ DEPEND_2: off_angle
118
+ LABL_PTR_1: spin_angle_label
119
+ LABL_PTR_2: off_angle_label
120
+
121
+ hae_latitude:
122
+ <<: *default
123
+ VALIDMIN: -90
124
+ VALIDMAX: 90
125
+ CATDESC: Bin latitudes in HAE coordinates
126
+ FIELDNAM: Bin latitudes
127
+ FORMAT: I12
128
+ UNITS: degrees
129
+ LABLAXIS: latitude
130
+ DEPEND_1: spin_angle
131
+ DEPEND_2: off_angle
132
+ LABL_PTR_1: spin_angle_label
133
+ LABL_PTR_2: off_angle_label
134
+
135
+ exposure_time:
136
+ <<: *default
137
+ CATDESC: Exposure times by ESA step
138
+ FIELDNAM: Exposure Times
139
+ DEPEND_1: esa_energy_step
140
+ DEPEND_2: spin_angle
141
+ DEPEND_3: off_angle
142
+ LABL_PTR_1: esa_energy_step_label
143
+ LABL_PTR_2: spin_angle_label
144
+ LABL_PTR_3: off_angle_label
145
+ UNITS: "s"
146
+
83
147
  triples_counts:
84
148
  <<: *default
85
149
  CATDESC: Counts for triple coincidence events
86
- DEPEND_1: pointing_bins
87
- DEPEND_2: esa_step
88
150
  FIELDNAM: triples coincidence counts
151
+ DEPEND_1: esa_energy_step
152
+ DEPEND_2: spin_angle
153
+ DEPEND_3: off_angle
154
+ LABL_PTR_1: esa_energy_step_label
155
+ LABL_PTR_2: spin_angle_label
156
+ LABL_PTR_3: off_angle_label
89
157
  FORMAT: I12
90
- LABLAXIS: triples coincidence counts
91
- LABL_PTR_1: pointing_bins_label
92
- LABL_PTR_2: esa_step_label
93
-
94
- triples_rates:
95
- <<: *default
96
- CATDESC: Count rates for triple coincidence events
97
- DEPEND_1: pointing_bins
98
- DEPEND_2: esa_step
99
- FILLVAL: -1.0000000E+31
100
- FIELDNAM: triple coincidence count rates
101
- LABLAXIS: triple coincidence count rates
102
- LABL_PTR_1: pointing_bins_label
103
- LABL_PTR_2: esa_step_label
104
158
 
105
159
  doubles_counts:
106
160
  <<: *default
107
- CATDESC: "Counts for double coincidence events"
108
- DEPEND_1: pointing_bins
109
- DEPEND_2: esa_step
161
+ CATDESC: Counts for double coincidence events
162
+ DEPEND_1: esa_energy_step
163
+ DEPEND_2: spin_angle
164
+ DEPEND_3: off_angle
110
165
  FIELDNAM: Double coincidence counts
111
166
  FORMAT: I12
112
- LABLAXIS: double coincidence counts
113
- LABL_PTR_1: pointing_bins_label
114
- LABL_PTR_2: esa_step_label
115
-
116
- doubles_rates:
117
- <<: *default
118
- CATDESC: Count rates for double coincidence events
119
- DEPEND_1: pointing_bins
120
- DEPEND_2: esa_step
121
- FILLVAL: -1.0000000E+31
122
- FIELDNAM: double coincidence count rates
123
- LABLAXIS: double coincidence count rates
124
- LABL_PTR_1: pointing_bins_label
125
- LABL_PTR_2: esa_step_label
167
+ LABLAXIS: doubles
168
+ LABL_PTR_1: esa_energy_step_label
169
+ LABL_PTR_2: spin_angle_label
170
+ LABL_PTR_3: off_angle_label
126
171
 
127
- hydrogen_counts:
172
+ h_counts:
128
173
  <<: *default
129
174
  CATDESC: Counts for Hydrogen events
130
- DEPEND_1: pointing_bins
131
- DEPEND_2: esa_step
132
175
  FIELDNAM: Hydrogen counts
176
+ DEPEND_1: esa_energy_step
177
+ DEPEND_2: spin_angle
178
+ DEPEND_3: off_angle
179
+ LABL_PTR_1: esa_energy_step_label
180
+ LABL_PTR_2: spin_angle_label
181
+ LABL_PTR_3: off_angle_label
182
+ FORMAT: I12
183
+
184
+ h_background_rates:
185
+ <<: *default
186
+ CATDESC: Background Hydrogen rates
187
+ FIELDNAM: Background Hydrogen rates
188
+ DEPEND_1: esa_energy_step
189
+ DEPEND_2: spin_angle
190
+ DEPEND_3: off_angle
191
+ LABL_PTR_1: esa_energy_step_label
192
+ LABL_PTR_2: spin_angle_label
193
+ LABL_PTR_3: off_angle_label
133
194
  FORMAT: I12
134
- LABLAXIS: H counts
135
- LABL_PTR_1: pointing_bins_label
136
- LABL_PTR_2: esa_step_label
195
+ DELTA_PLUS_VAR: h_background_rates_stat_uncert
196
+ DELTA_MINUS_VAR: h_background_rates_stat_uncert
137
197
 
138
- hydrogen_rates:
198
+ h_background_rates_stat_uncert:
139
199
  <<: *default
140
- CATDESC: Count rates for Hydrogen events
141
- DEPEND_1: pointing_bins
142
- DEPEND_2: esa_step
143
- FILLVAL: -1.0000000E+31
144
- FIELDNAM: Hydrogen count rates
145
- LABLAXIS: H coincidence count rates
146
- LABL_PTR_1: pointing_bins_label
147
- LABL_PTR_2: esa_step_label
200
+ CATDESC: Background Hydrogen rates statistical uncertainty
201
+ FIELDNAM: Background Hydrogen rates stat uncertainty
202
+ DEPEND_1: esa_energy_step
203
+ DEPEND_2: spin_angle
204
+ DEPEND_3: off_angle
205
+ LABL_PTR_1: esa_energy_step_label
206
+ LABL_PTR_2: spin_angle_label
207
+ LABL_PTR_3: off_angle_label
208
+ FORMAT: I12
148
209
 
149
- oxygen_counts:
210
+ h_background_rates_sys_err:
211
+ <<: *default
212
+ CATDESC: Background Hydrogen rates systematic error
213
+ FIELDNAM: Background Hydrogen rates systematic error
214
+ DEPEND_1: esa_energy_step
215
+ DEPEND_2: spin_angle
216
+ DEPEND_3: off_angle
217
+ LABL_PTR_1: esa_energy_step_label
218
+ LABL_PTR_2: spin_angle_label
219
+ LABL_PTR_3: off_angle_label
220
+ FORMAT: I12
221
+
222
+ o_counts:
150
223
  <<: *default
151
224
  CATDESC: Count rates for Oxygen events
152
- DEPEND_1: pointing_bins
153
- DEPEND_2: esa_step
225
+ DEPEND_1: esa_energy_step
226
+ DEPEND_2: spin_angle
227
+ DEPEND_3: off_angle
154
228
  FORMAT: I12
155
229
  FIELDNAM: Oxygen count rates
156
- LABLAXIS: O count rates
157
- LABL_PTR_1: pointing_bins_label
158
- LABL_PTR_2: esa_step_label
230
+ LABL_PTR_1: esa_energy_step_label
231
+ LABL_PTR_2: spin_angle_label
232
+ LABL_PTR_3: off_angle_label
159
233
 
160
- oxygen_rates:
234
+ o_background_rates:
161
235
  <<: *default
162
- CATDESC : Count rates for Oxygen events
163
- DEPEND_1 : pointing_bins
164
- DEPEND_2 : esa_step
165
- FILLVAL: -1.0000000E+31
166
- FIELDNAM : Oxygen count rates
167
- LABLAXIS : O count rates
168
- LABL_PTR_1: pointing_bins_label
169
- LABL_PTR_2: esa_step_label
236
+ CATDESC: Background Oxygen rates
237
+ FIELDNAM: Background Oxygen rates
238
+ DEPEND_1: esa_energy_step
239
+ DEPEND_2: spin_angle
240
+ DEPEND_3: off_angle
241
+ LABL_PTR_1: esa_energy_step_label
242
+ LABL_PTR_2: spin_angle_label
243
+ LABL_PTR_3: off_angle_label
244
+ FORMAT: I12
245
+ DELTA_PLUS_VAR: o_background_rates_stat_uncert
246
+ DELTA_MINUS_VAR: o_background_rates_stat_uncert
170
247
 
171
- exposure_time:
248
+ o_background_rates_stat_uncert:
172
249
  <<: *default
173
- CATDESC: Exposure times by ESA step
174
- DEPEND_1: esa_step
175
- FILLVAL: -1.0000000E+31
176
- FIELDNAM: Exposure Times
177
- UNITS: "s"
178
- LABLAXIS: exposure times
179
- LABL_PTR_1: esa_step_label
250
+ CATDESC: Background Oxygen rates statistical uncertainty
251
+ FIELDNAM: Background Oxygen rates stat uncertainty
252
+ DEPEND_1: esa_energy_step
253
+ DEPEND_2: spin_angle
254
+ DEPEND_3: off_angle
255
+ LABL_PTR_1: esa_energy_step_label
256
+ LABL_PTR_2: spin_angle_label
257
+ LABL_PTR_3: off_angle_label
258
+ FORMAT: I12
259
+
260
+ o_background_rates_sys_err:
261
+ <<: *default
262
+ CATDESC: Background Oxygen rates systematic error
263
+ FIELDNAM: Background Oxygen rates systematic error
264
+ DEPEND_1: esa_energy_step
265
+ DEPEND_2: spin_angle
266
+ DEPEND_3: off_angle
267
+ LABL_PTR_1: esa_energy_step_label
268
+ LABL_PTR_2: spin_angle_label
269
+ LABL_PTR_3: off_angle_label
270
+ FORMAT: I12