imap-processing 0.18.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 (104) hide show
  1. imap_processing/_version.py +2 -2
  2. imap_processing/ancillary/ancillary_dataset_combiner.py +161 -1
  3. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +301 -274
  4. imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +28 -28
  5. imap_processing/cdf/config/imap_codice_l2_variable_attrs.yaml +1044 -203
  6. imap_processing/cdf/config/imap_constant_attrs.yaml +4 -2
  7. imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +12 -0
  8. imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +5 -0
  9. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +10 -4
  10. imap_processing/cdf/config/imap_idex_l2a_variable_attrs.yaml +33 -4
  11. imap_processing/cdf/config/imap_idex_l2b_variable_attrs.yaml +8 -91
  12. imap_processing/cdf/config/imap_idex_l2c_variable_attrs.yaml +106 -16
  13. imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +4 -15
  14. imap_processing/cdf/config/imap_lo_l1c_variable_attrs.yaml +189 -98
  15. imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +85 -2
  16. imap_processing/cdf/config/imap_mag_l1c_variable_attrs.yaml +24 -1
  17. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +12 -4
  18. imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +50 -7
  19. imap_processing/cli.py +95 -41
  20. imap_processing/codice/codice_l1a.py +131 -31
  21. imap_processing/codice/codice_l2.py +118 -10
  22. imap_processing/codice/constants.py +740 -595
  23. imap_processing/decom.py +1 -4
  24. imap_processing/ena_maps/ena_maps.py +32 -25
  25. imap_processing/ena_maps/utils/naming.py +8 -2
  26. imap_processing/glows/ancillary/imap_glows_exclusions-by-instr-team_20250923_v002.dat +10 -0
  27. imap_processing/glows/ancillary/imap_glows_map-of-excluded-regions_20250923_v002.dat +393 -0
  28. imap_processing/glows/ancillary/imap_glows_map-of-uv-sources_20250923_v002.dat +593 -0
  29. imap_processing/glows/ancillary/imap_glows_pipeline_settings_20250923_v002.json +54 -0
  30. imap_processing/glows/ancillary/imap_glows_suspected-transients_20250923_v002.dat +10 -0
  31. imap_processing/glows/l1b/glows_l1b.py +99 -9
  32. imap_processing/glows/l1b/glows_l1b_data.py +350 -38
  33. imap_processing/glows/l2/glows_l2.py +11 -0
  34. imap_processing/hi/hi_l1a.py +124 -3
  35. imap_processing/hi/hi_l1b.py +154 -71
  36. imap_processing/hi/hi_l2.py +84 -51
  37. imap_processing/hi/utils.py +153 -8
  38. imap_processing/hit/l0/constants.py +3 -0
  39. imap_processing/hit/l0/decom_hit.py +3 -6
  40. imap_processing/hit/l1a/hit_l1a.py +311 -21
  41. imap_processing/hit/l1b/hit_l1b.py +54 -126
  42. imap_processing/hit/l2/hit_l2.py +6 -6
  43. imap_processing/ialirt/calculate_ingest.py +219 -0
  44. imap_processing/ialirt/constants.py +12 -2
  45. imap_processing/ialirt/generate_coverage.py +15 -2
  46. imap_processing/ialirt/l0/ialirt_spice.py +5 -2
  47. imap_processing/ialirt/l0/parse_mag.py +293 -42
  48. imap_processing/ialirt/l0/process_hit.py +5 -3
  49. imap_processing/ialirt/l0/process_swapi.py +41 -25
  50. imap_processing/ialirt/process_ephemeris.py +70 -14
  51. imap_processing/idex/idex_l0.py +2 -2
  52. imap_processing/idex/idex_l1a.py +2 -3
  53. imap_processing/idex/idex_l1b.py +2 -3
  54. imap_processing/idex/idex_l2a.py +130 -4
  55. imap_processing/idex/idex_l2b.py +158 -143
  56. imap_processing/idex/idex_utils.py +1 -3
  57. imap_processing/lo/l0/lo_science.py +25 -24
  58. imap_processing/lo/l1b/lo_l1b.py +3 -3
  59. imap_processing/lo/l1c/lo_l1c.py +116 -50
  60. imap_processing/lo/l2/lo_l2.py +29 -29
  61. imap_processing/lo/lo_ancillary.py +55 -0
  62. imap_processing/mag/l1a/mag_l1a.py +1 -0
  63. imap_processing/mag/l1a/mag_l1a_data.py +26 -0
  64. imap_processing/mag/l1b/mag_l1b.py +3 -2
  65. imap_processing/mag/l1c/interpolation_methods.py +14 -15
  66. imap_processing/mag/l1c/mag_l1c.py +23 -6
  67. imap_processing/mag/l1d/mag_l1d.py +57 -14
  68. imap_processing/mag/l1d/mag_l1d_data.py +167 -30
  69. imap_processing/mag/l2/mag_l2_data.py +10 -2
  70. imap_processing/quality_flags.py +9 -1
  71. imap_processing/spice/geometry.py +76 -33
  72. imap_processing/spice/pointing_frame.py +0 -6
  73. imap_processing/spice/repoint.py +29 -2
  74. imap_processing/spice/spin.py +28 -8
  75. imap_processing/spice/time.py +12 -22
  76. imap_processing/swapi/l1/swapi_l1.py +10 -4
  77. imap_processing/swapi/l2/swapi_l2.py +15 -17
  78. imap_processing/swe/l1b/swe_l1b.py +1 -2
  79. imap_processing/ultra/constants.py +1 -24
  80. imap_processing/ultra/l0/ultra_utils.py +9 -11
  81. imap_processing/ultra/l1a/ultra_l1a.py +1 -2
  82. imap_processing/ultra/l1b/cullingmask.py +6 -3
  83. imap_processing/ultra/l1b/de.py +81 -23
  84. imap_processing/ultra/l1b/extendedspin.py +13 -10
  85. imap_processing/ultra/l1b/lookup_utils.py +281 -28
  86. imap_processing/ultra/l1b/quality_flag_filters.py +10 -1
  87. imap_processing/ultra/l1b/ultra_l1b_culling.py +161 -3
  88. imap_processing/ultra/l1b/ultra_l1b_extended.py +253 -47
  89. imap_processing/ultra/l1c/helio_pset.py +97 -24
  90. imap_processing/ultra/l1c/l1c_lookup_utils.py +256 -0
  91. imap_processing/ultra/l1c/spacecraft_pset.py +83 -16
  92. imap_processing/ultra/l1c/ultra_l1c.py +6 -2
  93. imap_processing/ultra/l1c/ultra_l1c_culling.py +85 -0
  94. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +385 -277
  95. imap_processing/ultra/l2/ultra_l2.py +0 -1
  96. imap_processing/ultra/utils/ultra_l1_utils.py +28 -3
  97. imap_processing/utils.py +3 -4
  98. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/METADATA +2 -2
  99. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/RECORD +102 -95
  100. imap_processing/idex/idex_l2c.py +0 -84
  101. imap_processing/spice/kernels.py +0 -187
  102. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/LICENSE +0 -0
  103. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/WHEEL +0 -0
  104. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/entry_points.txt +0 -0
@@ -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
@@ -84,6 +84,62 @@ imap_mag_l1c_norm-magi:
84
84
  Logical_source: imap_mag_l1c_norm-magi
85
85
  Logical_source_description: IMAP Mission MAGi Normal Rate Instrument Level-1C Data.
86
86
 
87
+ imap_mag_l1d_norm-rtn:
88
+ <<: *default
89
+ Data_type: L1D_norm-rtn>Level 1D normal rate data in RTN
90
+ Logical_source: imap_mag_l1d_norm-rtn
91
+ Logical_source_description: IMAP Mission Normal Rate Instrument Level-1D Data in
92
+ Radial-Tangential-Normal Reference Frame.
93
+
94
+ imap_mag_l1d_burst-rtn:
95
+ <<: *default
96
+ Data_type: L1D_burst-rtn>Level 1D burst rate data in RTN
97
+ Logical_source: imap_mag_l1d_burst-rtn
98
+ Logical_source_description: IMAP Mission Burst Rate Instrument Level-1D Data in
99
+ Radial-Tangential-Normal Reference Frame.
100
+
101
+ imap_mag_l1d_norm-gse:
102
+ <<: *default
103
+ Data_type: L1D_norm-gse>Level 1D normal rate data in GSE
104
+ Logical_source: imap_mag_l1d_norm-gse
105
+ Logical_source_description: IMAP Mission Normal Rate Instrument Level-1D Data in
106
+ Geocentric Solar Ecliptic Reference Frame.
107
+
108
+ imap_mag_l1d_burst-gse:
109
+ <<: *default
110
+ Data_type: L1D_burst-gse>Level 1D burst rate data in GSE
111
+ Logical_source: imap_mag_l1d_burst-gse
112
+ Logical_source_description: IMAP Mission Burst Rate Instrument Level-1D Data in
113
+ Geocentric Solar Ecliptic Reference Frame.
114
+
115
+ imap_mag_l1d_norm-srf:
116
+ <<: *default
117
+ Data_type: L1D_norm-srf>Level 1D normal rate data in SRF
118
+ Logical_source: imap_mag_l1d_norm-srf
119
+ Logical_source_description: IMAP Mission Normal Rate Instrument Level-1D Data in
120
+ Spacecraft Reference Frame.
121
+
122
+ imap_mag_l1d_burst-srf:
123
+ <<: *default
124
+ Data_type: L1D_burst-srf>Level 1D burst rate data in SRF
125
+ Logical_source: imap_mag_l1d_burst-srf
126
+ Logical_source_description: IMAP Mission Burst Rate Instrument Level-1D Data in
127
+ Spacecraft Reference Frame.
128
+
129
+ imap_mag_l1d_norm-dsrf:
130
+ <<: *default
131
+ Data_type: L1D_norm-dsrf>Level 1D normal rate data in DSRF
132
+ Logical_source: imap_mag_l1d_norm-dsrf
133
+ Logical_source_description: IMAP Mission Normal Rate Instrument Level-1D Data in
134
+ Despun Spacecraft Reference Frame.
135
+
136
+ imap_mag_l1d_burst-dsrf:
137
+ <<: *default
138
+ Data_type: L1D_burst-dsrf>Level 1D burst rate data in DSRF
139
+ Logical_source: imap_mag_l1d_burst-dsrf
140
+ Logical_source_description: IMAP Mission Burst Rate Instrument Level-1D Data in
141
+ Despun Spacecraft Reference Frame.
142
+
87
143
  imap_mag_l2_norm-dsrf:
88
144
  <<: *default
89
145
  Data_type: L2_norm-dsrf>Level 2 normal rate data in DSRF
@@ -91,7 +147,6 @@ imap_mag_l2_norm-dsrf:
91
147
  Logical_source_description: IMAP Mission Normal Rate Instrument Level-2 Data in
92
148
  Despun Spacecraft Reference Frame.
93
149
 
94
-
95
150
  imap_mag_l2_burst-dsrf:
96
151
  <<: *default
97
152
  Data_type: L2_burst-dsrf>Level 2 burst rate data in DSRF
@@ -111,4 +166,32 @@ imap_mag_l2_burst-srf:
111
166
  Data_type: L2_burst-srf>Level 2 burst rate data in SRF
112
167
  Logical_source: imap_mag_l2_burst-srf
113
168
  Logical_source_description: IMAP Mission Burst Rate Instrument Level-2 Data in
114
- Spacecraft Reference Frame.
169
+ Spacecraft Reference Frame.
170
+
171
+ imap_mag_l2_norm-rtn:
172
+ <<: *default
173
+ Data_type: L2_norm-rtn>Level 2 normal rate data in RTN
174
+ Logical_source: imap_mag_l2_norm-rtn
175
+ Logical_source_description: IMAP Mission Normal Rate Instrument Level-2 Data in
176
+ Radial-Tangential-Normal Reference Frame.
177
+
178
+ imap_mag_l2_burst-rtn:
179
+ <<: *default
180
+ Data_type: L2_burst-rtn>Level 2 burst rate data in RTN
181
+ Logical_source: imap_mag_l2_burst-rtn
182
+ Logical_source_description: IMAP Mission Burst Rate Instrument Level-2 Data in
183
+ Radial-Tangential-Normal Reference Frame.
184
+
185
+ imap_mag_l2_norm-gse:
186
+ <<: *default
187
+ Data_type: L2_norm-gse>Level 2 normal rate data in GSE
188
+ Logical_source: imap_mag_l2_norm-gse
189
+ Logical_source_description: IMAP Mission Normal Rate Instrument Level-2 Data in
190
+ Geocentric Solar Ecliptic Reference Frame.
191
+
192
+ imap_mag_l2_burst-gse:
193
+ <<: *default
194
+ Data_type: L2_burst-gse>Level 2 burst rate data in GSE
195
+ Logical_source: imap_mag_l2_burst-gse
196
+ Logical_source_description: IMAP Mission Burst Rate Instrument Level-2 Data in
197
+ Geocentric Solar Ecliptic Reference Frame.
@@ -4,7 +4,7 @@ default_attrs: &default
4
4
  # Assumed values for all variable attrs unless overwritten
5
5
  DEPEND_0: epoch
6
6
  DISPLAY_TYPE: time_series
7
- FILLVAL: -9223372036854775808
7
+ FILLVAL: -1.0e+31
8
8
  FORMAT: I12
9
9
  VALIDMIN: -9223372036854775808
10
10
  VALIDMAX: 9223372036854775807
@@ -105,6 +105,29 @@ compression_flags_attrs:
105
105
  LABL_PTR_1: compression_label
106
106
  DISPLAY_TYPE: no_plot
107
107
 
108
+ generated_flag_attrs:
109
+ <<: *support_default
110
+ CATDESC: Flag indicating data has been downsampled and interpolated from higher frequency measurements
111
+ FIELDNAM: Generated Flag
112
+ LABLAXIS: Generated Flag
113
+ FILLVAL: 255
114
+ FORMAT: I1
115
+ UNITS: ' '
116
+ VALIDMAX: 1
117
+ VALIDMIN: 0
118
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
119
+
120
+ vector_magnitude_attrs:
121
+ <<: *support_default
122
+ CATDESC: Magnitude of the magnetic field vector
123
+ FIELDNAM: Magnetic Field Magnitude
124
+ LABLAXIS: "|B|"
125
+ FORMAT: F12.5
126
+ UNITS: nT
127
+ VALIDMIN: 0
128
+ VALIDMAX: 9223372036854775807
129
+ DICT_KEY: SPASE>Field>FieldQuantity:Magnetic,Qualifier:Scalar
130
+
108
131
  compression:
109
132
  <<: *support_default
110
133
  CATDESC: Data compression flag
@@ -509,10 +509,18 @@ quality_hk:
509
509
  DEPEND_1: spin_number
510
510
  DEPEND_2: energy_bin_geometric_mean
511
511
 
512
- quality_fov:
512
+ quality_outliers:
513
513
  <<: *default_uint16
514
- CATDESC: Quality flag for direct event for events outside of the FOV.
515
- FIELDNAM: quality_fov
516
- LABLAXIS: quality fov
514
+ CATDESC: Quality flag for direct event for events outliers.
515
+ FIELDNAM: quality_outliers
516
+ LABLAXIS: quality_outliers
517
+ # TODO: come back to format
518
+ UNITS: " "
519
+
520
+ quality_scattering:
521
+ <<: *default_uint16
522
+ CATDESC: Quality flag for direct event scattering.
523
+ FIELDNAM: quality_scattering
524
+ LABLAXIS: quality_scattering
517
525
  # TODO: come back to format
518
526
  UNITS: " "
@@ -17,9 +17,15 @@ default_float32_attrs: &default_float32
17
17
  VALIDMAX: 3.4028235e+38
18
18
  dtype: float32
19
19
 
20
+ energy_dependent_attrs: &energy_dependent
21
+ <<: *default_float32
22
+ DEPEND_1: energy_bin_geometric_mean
23
+ DEPEND_2: pixel_index
24
+
20
25
  latitude:
21
26
  <<: *default_float32
22
27
  CATDESC: Latitude bin center corresponding to healpix index with range [-90, 90].
28
+ DEPEND_1: pixel_index
23
29
  FIELDNAM: latitude
24
30
  LABLAXIS: latitude
25
31
  UNITS: degrees
@@ -27,6 +33,7 @@ latitude:
27
33
  longitude:
28
34
  <<: *default_float32
29
35
  CATDESC: Longitude bin center corresponding to healpix index with range [0, 360].
36
+ DEPEND_1: pixel_index
30
37
  FIELDNAM: longitude
31
38
  LABLAXIS: longitude
32
39
  UNITS: degrees
@@ -39,25 +46,61 @@ species_bin:
39
46
  # TODO: come back to format
40
47
  UNITS: " "
41
48
 
42
- exposure_factor:
49
+ dead_time_ratio:
43
50
  <<: *default_float32
44
- CATDESC: Exposure time for a pointing.
45
- FIELDNAM: exposure_factor
46
- LABLAXIS: exposure factor
47
- # TODO: come back to format
48
- UNITS: seconds
51
+ CATDESC: Dead time correction ratios for each spin phase step (1ms resolution).
52
+ DEPEND_1: spin_phase_step
53
+ FIELDNAM: dead_time_ratios
54
+ LABLAXIS: Dead Time Ratio
55
+ UNITS: " "
56
+ VALIDMIN: 0.0
49
57
 
50
58
  sensitivity:
51
- <<: *default_float32
59
+ <<: *energy_dependent
52
60
  CATDESC: Calibration/sensitivity factor.
53
61
  FIELDNAM: sensitivity
54
62
  LABLAXIS: sensitivity
55
63
  # TODO: come back to format
56
64
  UNITS: counts/second
57
65
 
66
+ geometric_function:
67
+ <<: *energy_dependent
68
+ CATDESC: The effective sensitive area as a function of theta and phi in instrument frame (energy independent).
69
+ FIELDNAM: geometric_function
70
+ LABLAXIS: Geometric Factor
71
+ UNITS: " "
72
+ VALIDMIN: 0.0
73
+
74
+ efficiency:
75
+ <<: *energy_dependent
76
+ CATDESC: Estimated event efficiency for particles path through the instrument.
77
+ FIELDNAM: efficiency
78
+ LABLAXIS: Efficiency
79
+ UNITS: " "
80
+ VALIDMIN: 0.0
81
+ VALIDMAX: 1.0
82
+
83
+ exposure_factor:
84
+ <<: *energy_dependent
85
+ CATDESC: Exposure time with the deadtime correction applied for a pointing.
86
+ FIELDNAM: exposure_factor
87
+ LABLAXIS: exposure factor
88
+ # TODO: come back to format
89
+ UNITS: seconds
90
+
91
+ helio_exposure_factor:
92
+ <<: *energy_dependent
93
+ CATDESC: Exposure time with the deadtime correction applied for a pointing.
94
+ FIELDNAM: exposure_factor
95
+ LABLAXIS: exposure factor
96
+ # TODO: come back to format
97
+ UNITS: seconds
98
+
58
99
  counts:
59
100
  <<: *default
60
101
  CATDESC: Counts for a spin.
102
+ DEPEND_1: energy_bin_geometric_mean
103
+ DEPEND_2: pixel_index
61
104
  FIELDNAM: counts
62
105
  LABLAXIS: counts
63
106
  # TODO: come back to format