imap-processing 0.14.0__py3-none-any.whl → 0.15.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 (61) hide show
  1. imap_processing/_version.py +2 -2
  2. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +60 -35
  3. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +765 -287
  4. imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +1577 -288
  5. imap_processing/cdf/config/imap_codice_l2_variable_attrs.yaml +1004 -0
  6. imap_processing/cdf/config/imap_enamaps_l2-common_variable_attrs.yaml +28 -0
  7. imap_processing/cdf/config/imap_enamaps_l2-healpix_variable_attrs.yaml +1 -1
  8. imap_processing/cdf/config/imap_enamaps_l2-rectangular_variable_attrs.yaml +18 -0
  9. imap_processing/cdf/config/imap_glows_l2_variable_attrs.yaml +39 -3
  10. imap_processing/cdf/config/imap_ialirt_global_cdf_attrs.yaml +18 -0
  11. imap_processing/cdf/config/imap_ialirt_l1_variable_attrs.yaml +370 -0
  12. imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +7 -0
  13. imap_processing/cdf/config/imap_idex_l1b_variable_attrs.yaml +11 -0
  14. imap_processing/cdf/config/imap_idex_l2a_variable_attrs.yaml +4 -0
  15. imap_processing/cdf/config/imap_idex_l2c_variable_attrs.yaml +7 -3
  16. imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +6 -0
  17. imap_processing/cdf/config/imap_mag_l2_variable_attrs.yaml +114 -0
  18. imap_processing/cdf/config/imap_swe_global_cdf_attrs.yaml +11 -5
  19. imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +23 -1
  20. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +4 -0
  21. imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +2 -2
  22. imap_processing/cli.py +144 -76
  23. imap_processing/codice/codice_l1a.py +53 -22
  24. imap_processing/codice/codice_l1b.py +91 -18
  25. imap_processing/codice/codice_l2.py +89 -0
  26. imap_processing/codice/constants.py +62 -5
  27. imap_processing/ena_maps/ena_maps.py +43 -1
  28. imap_processing/glows/l2/glows_l2_data.py +3 -6
  29. imap_processing/ialirt/l0/process_swe.py +2 -2
  30. imap_processing/ialirt/utils/constants.py +48 -0
  31. imap_processing/ialirt/utils/create_xarray.py +87 -0
  32. imap_processing/idex/idex_l2c.py +9 -9
  33. imap_processing/lo/l1b/lo_l1b.py +6 -1
  34. imap_processing/lo/l1c/lo_l1c.py +22 -13
  35. imap_processing/lo/l2/lo_l2.py +213 -0
  36. imap_processing/mag/l1c/mag_l1c.py +8 -1
  37. imap_processing/mag/l2/mag_l2.py +6 -2
  38. imap_processing/mag/l2/mag_l2_data.py +7 -5
  39. imap_processing/swe/l1a/swe_l1a.py +6 -6
  40. imap_processing/swe/l1b/swe_l1b.py +70 -11
  41. imap_processing/ultra/l0/decom_ultra.py +1 -1
  42. imap_processing/ultra/l0/ultra_utils.py +0 -4
  43. imap_processing/ultra/l1b/badtimes.py +7 -3
  44. imap_processing/ultra/l1b/cullingmask.py +7 -2
  45. imap_processing/ultra/l1b/de.py +26 -12
  46. imap_processing/ultra/l1b/lookup_utils.py +8 -7
  47. imap_processing/ultra/l1b/ultra_l1b.py +59 -48
  48. imap_processing/ultra/l1b/ultra_l1b_culling.py +50 -18
  49. imap_processing/ultra/l1b/ultra_l1b_extended.py +4 -4
  50. imap_processing/ultra/l1c/helio_pset.py +53 -0
  51. imap_processing/ultra/l1c/spacecraft_pset.py +20 -12
  52. imap_processing/ultra/l1c/ultra_l1c.py +49 -26
  53. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +40 -2
  54. imap_processing/ultra/l2/ultra_l2.py +47 -2
  55. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_RightSlit.csv +524 -526
  56. imap_processing/ultra/utils/ultra_l1_utils.py +47 -8
  57. {imap_processing-0.14.0.dist-info → imap_processing-0.15.0.dist-info}/METADATA +2 -2
  58. {imap_processing-0.14.0.dist-info → imap_processing-0.15.0.dist-info}/RECORD +61 -52
  59. {imap_processing-0.14.0.dist-info → imap_processing-0.15.0.dist-info}/LICENSE +0 -0
  60. {imap_processing-0.14.0.dist-info → imap_processing-0.15.0.dist-info}/WHEEL +0 -0
  61. {imap_processing-0.14.0.dist-info → imap_processing-0.15.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,370 @@
1
+ default_attrs: &default
2
+ # Assumed values for all variable attrs unless overwritten
3
+ DEPEND_0: epoch
4
+ DISPLAY_TYPE: time_series
5
+ FILLVAL: -9223372036854775808
6
+ FORMAT: I12
7
+ VALIDMIN: -9223372036854775808
8
+ VALIDMAX: 9223372036854775807
9
+ VAR_TYPE: data
10
+ UNITS: " "
11
+
12
+ component:
13
+ CATDESC: Component direction (x, y, z)
14
+ FIELDNAM: component
15
+ LABLAXIS: component
16
+ FORMAT: A3
17
+ VAR_TYPE: metadata
18
+
19
+ default_uint8_attrs: &default_uint8
20
+ <<: *default
21
+ FILLVAL: 255
22
+ FORMAT: I3
23
+ VALIDMIN: 0
24
+ VALIDMAX: 255
25
+ dtype: uint8
26
+
27
+ default_uint16_attrs: &default_uint16
28
+ <<: *default
29
+ FILLVAL: 65535
30
+ FORMAT: I5
31
+ VALIDMIN: 0
32
+ VALIDMAX: 65535
33
+ dtype: uint16
34
+
35
+ default_uint32_attrs: &default_uint32
36
+ <<: *default
37
+ FILLVAL: 4294967295
38
+ FORMAT: I10
39
+ VALIDMIN: 0
40
+ VALIDMAX: 4294967295
41
+ dtype: uint32
42
+
43
+ default_int64_attrs: &default_int64
44
+ <<: *default
45
+ FILLVAL: -9223372036854775808
46
+ FORMAT: I20
47
+ VALIDMIN: -9223372036854775808
48
+ VALIDMAX: 9223372036854775807
49
+ dtype: int64
50
+
51
+ default_int32_attrs: &default_int32
52
+ <<: *default
53
+ FILLVAL: -2147483648
54
+ FORMAT: I10
55
+ VALIDMIN: -2147483648
56
+ VALIDMAX: 2147483647
57
+ dtype: int32
58
+
59
+ default_float32_attrs: &default_float32
60
+ <<: *default
61
+ FILLVAL: -1.0e31
62
+ FORMAT: F12.6
63
+ VALIDMIN: -3.4028235e+38
64
+ VALIDMAX: 3.4028235e+38
65
+ dtype: float32
66
+
67
+ default_float64_attrs: &default_float64
68
+ <<: *default
69
+ FILLVAL: -1.0e31
70
+ FORMAT: F10.2
71
+ VALIDMIN: -1.7976931348623157e+308
72
+ VALIDMAX: 1.7976931348623157e+308
73
+ dtype: float64
74
+
75
+ hit_e_a_side_low_en:
76
+ <<: *default_uint32
77
+ CATDESC: Low energy (~300 keV) electrons (A-side)
78
+ FIELDNAM: Low energy (~300 keV) electrons (A-side)
79
+ LABLAXIS: hit_e_a_side_low_en
80
+ UNITS: counts
81
+
82
+ hit_e_a_side_med_en:
83
+ <<: *default_uint32
84
+ CATDESC: Medium energy (~3 MeV) electrons (A-side)
85
+ FIELDNAM: Medium energy (~3 MeV) electrons (A-side)
86
+ LABLAXIS: hit_e_a_side_med_en
87
+ UNITS: counts
88
+
89
+ hit_e_a_side_high_en:
90
+ <<: *default_uint32
91
+ CATDESC: High energy (>3 MeV) electrons (A-side)
92
+ FIELDNAM: High energy (>3 MeV) electrons (A-side)
93
+ LABLAXIS: hit_e_a_side_high_en
94
+ UNITS: counts
95
+
96
+ hit_e_b_side_low_en:
97
+ <<: *default_uint32
98
+ CATDESC: Low energy (~300 keV) electrons (B-side)
99
+ FIELDNAM: Low energy (~300 keV) electrons (B-side)
100
+ LABLAXIS: hit_e_b_side_low_en
101
+ UNITS: counts
102
+
103
+ hit_e_b_side_med_en:
104
+ <<: *default_uint32
105
+ CATDESC: Medium energy (~3 MeV) electrons (B-side)
106
+ FIELDNAM: Medium energy (~3 MeV) electrons (B-side)
107
+ LABLAXIS: hit_e_b_side_med_en
108
+ UNITS: counts
109
+
110
+ hit_e_b_side_high_en:
111
+ <<: *default_uint32
112
+ CATDESC: High energy (>3 MeV) electrons (B-side)
113
+ FIELDNAM: High energy (>3 MeV) electrons (B-side)
114
+ LABLAXIS: hit_e_b_side_high_en
115
+ UNITS: counts
116
+
117
+ hit_h_omni_med_en:
118
+ <<: *default_uint32
119
+ CATDESC: Medium energy (12–70 MeV) protons (Omnidirectional)
120
+ FIELDNAM: Medium energy (12–70 MeV) protons (Omnidirectional)
121
+ LABLAXIS: hit_h_omni_med_en
122
+ UNITS: counts
123
+
124
+ hit_h_a_side_high_en:
125
+ <<: *default_uint32
126
+ CATDESC: High energy (>70 MeV) protons (A-side)
127
+ FIELDNAM: High energy (>70 MeV) protons (A-side)
128
+ LABLAXIS: hit_h_a_side_high_en
129
+ UNITS: counts
130
+
131
+ hit_h_b_side_high_en:
132
+ <<: *default_uint32
133
+ CATDESC: High energy (>70 MeV) protons (B-side)
134
+ FIELDNAM: High energy (>70 MeV) protons (B-side)
135
+ LABLAXIS: hit_h_b_side_high_en
136
+ UNITS: counts
137
+
138
+ hit_he_omni_low_en:
139
+ <<: *default_uint32
140
+ CATDESC: Low energy (6–8 MeV/nuc) He (Omnidirectional)
141
+ FIELDNAM: Low energy (6–8 MeV/nuc) He (Omnidirectional)
142
+ LABLAXIS: hit_he_omni_low_en
143
+ UNITS: counts
144
+
145
+ hit_he_omni_high_en:
146
+ <<: *default_uint32
147
+ CATDESC: High energy (15–70 MeV/nuc) He (Omnidirectional)
148
+ FIELDNAM: High energy (15–70 MeV/nuc) He (Omnidirectional)
149
+ LABLAXIS: hit_he_omni_high_en
150
+ UNITS: counts
151
+
152
+ mag_4s_b_gse:
153
+ <<: *default_float32
154
+ CATDESC: Magnetic field vector in GSE coordinates
155
+ FIELDNAM: mag_4s_b_gse
156
+ LABLAXIS: mag_4s_b_gse
157
+ UNITS: nT
158
+ DEPEND_1: component
159
+
160
+ mag_4s_b_gsm:
161
+ <<: *default_float32
162
+ CATDESC: Magnetic field vector in GSM coordinates
163
+ FIELDNAM: mag_4s_b_gsm
164
+ LABLAXIS: mag_4s_b_gsm
165
+ UNITS: nT
166
+ DEPEND_1: component
167
+
168
+ mag_4s_b_rtn:
169
+ <<: *default_float32
170
+ CATDESC: Magnetic field vector in RTN coordinates
171
+ FIELDNAM: mag_4s_b_rtn
172
+ LABLAXIS: mag_4s_b_rtn
173
+ UNITS: nT
174
+ DEPEND_1: component
175
+
176
+ mag_phi_4s_b_gsm:
177
+ <<: *default_float32
178
+ CATDESC: Azimuth angle (φ) of the magnetic field in GSM coordinates
179
+ FIELDNAM: mag_phi_4s_b_gsm
180
+ LABLAXIS: mag_phi_4s_b_gsm
181
+ UNITS: degrees
182
+
183
+ mag_theta_4s_b_gsm:
184
+ <<: *default_float32
185
+ CATDESC: Elevation angle (θ) of the magnetic field in GSM coordinates
186
+ FIELDNAM: mag_theta_4s_b_gsm
187
+ LABLAXIS: mag_theta_4s_b_gsm
188
+ UNITS: degrees
189
+
190
+ swapi_pseudo_proton_density:
191
+ <<: *default_float32
192
+ CATDESC: Pseudo density of solar wind protons
193
+ FIELDNAM: swapi_pseudo_proton_density
194
+ LABLAXIS: swapi_pseudo_proton_density
195
+ UNITS: 1/cm^3
196
+ VALIDMIN: 0.0
197
+ VALIDMAX: 1000.0
198
+
199
+ swapi_pseudo_proton_speed:
200
+ <<: *default_float32
201
+ CATDESC: Pseudo speed of solar wind protons in solar inertial frame
202
+ FIELDNAM: swapi_pseudo_proton_speed
203
+ LABLAXIS: swapi_pseudo_proton_speed
204
+ UNITS: km/sec
205
+ VALIDMIN: 0.0
206
+ VALIDMAX: 10000.0
207
+
208
+ swapi_pseudo_proton_temperature:
209
+ <<: *default_float32
210
+ CATDESC: Pseudo temperature of solar wind protons in plasma frame
211
+ FIELDNAM: swapi_pseudo_proton_temperature
212
+ LABLAXIS: swapi_pseudo_proton_temperature
213
+ UNITS: Kelvin
214
+ VALIDMIN: 0.0
215
+ VALIDMAX: 50000000.0
216
+
217
+ # SWE Normalized Counts, First Half Cycle
218
+ swe_normalized_counts_half_1_esa_0:
219
+ <<: *default_uint32
220
+ CATDESC: Normalized electron counts (Half Cycle 1, ESA step 0)
221
+ FIELDNAM: swe_normalized_counts_half_1_esa_0
222
+ LABLAXIS: swe_norm_cts_q1_esa0
223
+ UNITS: Normalized counts
224
+ VALIDMIN: 0
225
+ VALIDMAX: 500000
226
+
227
+ swe_normalized_counts_half_1_esa_1:
228
+ <<: *default_uint32
229
+ CATDESC: Normalized electron counts (Half Cycle 1, ESA step 1)
230
+ FIELDNAM: swe_normalized_counts_half_1_esa_1
231
+ LABLAXIS: swe_norm_cts_q1_esa1
232
+ UNITS: Normalized counts
233
+ VALIDMIN: 0
234
+ VALIDMAX: 500000
235
+
236
+ swe_normalized_counts_half_1_esa_2:
237
+ <<: *default_uint32
238
+ CATDESC: Normalized electron counts (Half Cycle 1, ESA step 2)
239
+ FIELDNAM: swe_normalized_counts_half_1_esa_2
240
+ LABLAXIS: swe_norm_cts_q1_esa2
241
+ UNITS: Normalized counts
242
+ VALIDMIN: 0
243
+ VALIDMAX: 500000
244
+
245
+ swe_normalized_counts_half_1_esa_3:
246
+ <<: *default_uint32
247
+ CATDESC: Normalized electron counts (Half Cycle 1, ESA step 3)
248
+ FIELDNAM: swe_normalized_counts_half_1_esa_3
249
+ LABLAXIS: swe_norm_cts_q1_esa3
250
+ UNITS: Normalized counts
251
+ VALIDMIN: 0
252
+ VALIDMAX: 500000
253
+
254
+ swe_normalized_counts_half_1_esa_4:
255
+ <<: *default_uint32
256
+ CATDESC: Normalized electron counts (Half Cycle 1, ESA step 4)
257
+ FIELDNAM: swe_normalized_counts_half_1_esa_4
258
+ LABLAXIS: swe_norm_cts_q1_esa4
259
+ UNITS: Normalized counts
260
+ VALIDMIN: 0
261
+ VALIDMAX: 500000
262
+
263
+ swe_normalized_counts_half_1_esa_5:
264
+ <<: *default_uint32
265
+ CATDESC: Normalized electron counts (Half Cycle 1, ESA step 5)
266
+ FIELDNAM: swe_normalized_counts_half_1_esa_5
267
+ LABLAXIS: swe_norm_cts_q1_esa5
268
+ UNITS: Normalized counts
269
+ VALIDMIN: 0
270
+ VALIDMAX: 500000
271
+
272
+ swe_normalized_counts_half_1_esa_6:
273
+ <<: *default_uint32
274
+ CATDESC: Normalized electron counts (Half Cycle 1, ESA step 6)
275
+ FIELDNAM: swe_normalized_counts_half_1_esa_6
276
+ LABLAXIS: swe_norm_cts_q1_esa6
277
+ UNITS: Normalized counts
278
+ VALIDMIN: 0
279
+ VALIDMAX: 500000
280
+
281
+ swe_normalized_counts_half_1_esa_7:
282
+ <<: *default_uint32
283
+ CATDESC: Normalized electron counts (Half Cycle 1, ESA step 7)
284
+ FIELDNAM: swe_normalized_counts_half_1_esa_7
285
+ LABLAXIS: swe_norm_cts_q1_esa7
286
+ UNITS: Normalized counts
287
+ VALIDMIN: 0
288
+ VALIDMAX: 500000
289
+
290
+ # SWE Normalized Counts, Second Half Cycle
291
+ swe_normalized_counts_half_2_esa_0:
292
+ <<: *default_uint32
293
+ CATDESC: Normalized electron counts (Half Cycle 2, ESA step 0)
294
+ FIELDNAM: swe_normalized_counts_half_2_esa_0
295
+ LABLAXIS: swe_norm_cts_q2_esa0
296
+ UNITS: Normalized counts
297
+ VALIDMIN: 0
298
+ VALIDMAX: 500000
299
+
300
+ swe_normalized_counts_half_2_esa_1:
301
+ <<: *default_uint32
302
+ CATDESC: Normalized electron counts (Half Cycle 2, ESA step 1)
303
+ FIELDNAM: swe_normalized_counts_half_2_esa_1
304
+ LABLAXIS: swe_norm_cts_q2_esa1
305
+ UNITS: Normalized counts
306
+ VALIDMIN: 0
307
+ VALIDMAX: 500000
308
+
309
+ swe_normalized_counts_half_2_esa_2:
310
+ <<: *default_uint32
311
+ CATDESC: Normalized electron counts (Half Cycle 2, ESA step 2)
312
+ FIELDNAM: swe_normalized_counts_half_2_esa_2
313
+ LABLAXIS: swe_norm_cts_q2_esa2
314
+ UNITS: Normalized counts
315
+ VALIDMIN: 0
316
+ VALIDMAX: 500000
317
+
318
+ swe_normalized_counts_half_2_esa_3:
319
+ <<: *default_uint32
320
+ CATDESC: Normalized electron counts (Half Cycle 2, ESA step 3)
321
+ FIELDNAM: swe_normalized_counts_half_2_esa_3
322
+ LABLAXIS: swe_norm_cts_q2_esa3
323
+ UNITS: Normalized counts
324
+ VALIDMIN: 0
325
+ VALIDMAX: 500000
326
+
327
+ swe_normalized_counts_half_2_esa_4:
328
+ <<: *default_uint32
329
+ CATDESC: Normalized electron counts (Half Cycle 2, ESA step 4)
330
+ FIELDNAM: swe_normalized_counts_half_2_esa_4
331
+ LABLAXIS: swe_norm_cts_q2_esa4
332
+ UNITS: Normalized counts
333
+ VALIDMIN: 0
334
+ VALIDMAX: 500000
335
+
336
+ swe_normalized_counts_half_2_esa_5:
337
+ <<: *default_uint32
338
+ CATDESC: Normalized electron counts (Half Cycle 2, ESA step 5)
339
+ FIELDNAM: swe_normalized_counts_half_2_esa_5
340
+ LABLAXIS: swe_norm_cts_q2_esa5
341
+ UNITS: Normalized counts
342
+ VALIDMIN: 0
343
+ VALIDMAX: 500000
344
+
345
+ swe_normalized_counts_half_2_esa_6:
346
+ <<: *default_uint32
347
+ CATDESC: Normalized electron counts (Half Cycle 2, ESA step 6)
348
+ FIELDNAM: swe_normalized_counts_half_2_esa_6
349
+ LABLAXIS: swe_norm_cts_q2_esa6
350
+ UNITS: Normalized counts
351
+ VALIDMIN: 0
352
+ VALIDMAX: 500000
353
+
354
+ swe_normalized_counts_half_2_esa_7:
355
+ <<: *default_uint32
356
+ CATDESC: Normalized electron counts (Half Cycle 2, ESA step 7)
357
+ FIELDNAM: swe_normalized_counts_half_2_esa_7
358
+ LABLAXIS: swe_norm_cts_q2_esa7
359
+ UNITS: Normalized counts
360
+ VALIDMIN: 0
361
+ VALIDMAX: 500000
362
+
363
+ swe_counterstreaming_electrons:
364
+ <<: *default_uint8
365
+ CATDESC: Counterstreaming electrons
366
+ FIELDNAM: swe_counterstreaming_electrons
367
+ LABLAXIS: swe_counterstreaming_electrons
368
+ UNITS: ""
369
+ VALIDMIN: 0
370
+ VALIDMAX: 1
@@ -52,6 +52,7 @@ sample_rate_base: &sample_rate_base
52
52
  VALIDMAX: *sample_rate_max
53
53
  DEPEND_0: epoch
54
54
  FORMAT: F64.5
55
+ SCALETYP: linear
55
56
  LABLAXIS: Time
56
57
  UNITS: microseconds
57
58
  VAR_TYPE: data
@@ -79,6 +80,7 @@ time_high_sample_rate_label:
79
80
  FORMAT: A5
80
81
  VAR_TYPE: metadata
81
82
  DEPEND_1: time_high_sample_rate_index
83
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
82
84
 
83
85
  time_low_sample_rate_label:
84
86
  CATDESC: Low sample rate time steps for a dust event.
@@ -86,6 +88,7 @@ time_low_sample_rate_label:
86
88
  FORMAT: A5
87
89
  VAR_TYPE: metadata
88
90
  DEPEND_1: time_low_sample_rate_index
91
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
89
92
 
90
93
  # <=== Instrument Setting Attributes ===>
91
94
  low_sample_rate_attrs:
@@ -96,6 +99,7 @@ low_sample_rate_attrs:
96
99
  microseconds in duration. Used by the Ion_Grid, Target_Low, and
97
100
  Target_High variables.
98
101
  DEPEND_1: time_low_sample_rate_index
102
+ DICT_KEY: SPASE>Support>SupportQuantity:Temporal
99
103
 
100
104
  high_sample_rate_attrs:
101
105
  <<: *sample_rate_base
@@ -105,6 +109,7 @@ high_sample_rate_attrs:
105
109
  microseconds in duration. Used by the TOF_High, TOF_Mid, and
106
110
  TOF_Low variables.
107
111
  DEPEND_1: time_high_sample_rate_index
112
+ DICT_KEY: SPASE>Support>SupportQuantity:Temporal
108
113
 
109
114
  time_low_sample_rate_index:
110
115
  CATDESC: Low sampling rate time index
@@ -117,6 +122,7 @@ time_low_sample_rate_index:
117
122
  VALIDMAX: 511
118
123
  VALIDMIN: 0
119
124
  VAR_TYPE: support_data
125
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
120
126
 
121
127
  time_high_sample_rate_index:
122
128
  CATDESC: High sampling rate time index
@@ -129,6 +135,7 @@ time_high_sample_rate_index:
129
135
  VALIDMAX: 8188
130
136
  VALIDMIN: 0
131
137
  VAR_TYPE: support_data
138
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
132
139
 
133
140
  tof_high_attrs:
134
141
  <<: *l1a_tof_base
@@ -349,6 +349,7 @@ ephemeris_position_x:
349
349
  CATDESC: Cartesian coord X positions for the IMAP spacecraft in the ECLIPJ2000 frame.
350
350
  LABLAXIS: Position X
351
351
  UNITS: km
352
+ DICT_KEY: SPASE>Support>SupportQuantity:Positional
352
353
 
353
354
  ephemeris_position_y:
354
355
  <<: *spice_base
@@ -356,6 +357,7 @@ ephemeris_position_y:
356
357
  CATDESC: Cartesian coord Y positions for the IMAP spacecraft in the ECLIPJ2000 frame.
357
358
  LABLAXIS: Position Y
358
359
  UNITS: km
360
+ DICT_KEY: SPASE>Support>SupportQuantity:Positional
359
361
 
360
362
  ephemeris_position_z:
361
363
  <<: *spice_base
@@ -363,6 +365,7 @@ ephemeris_position_z:
363
365
  CATDESC: Cartesian coordinate Z positions for the IMAP spacecraft in the ECLIPJ2000 frame.
364
366
  LABLAXIS: Position Z
365
367
  UNITS: km
368
+ DICT_KEY: SPASE>Support>SupportQuantity:Positional
366
369
 
367
370
  ephemeris_velocity_x:
368
371
  <<: *spice_base
@@ -370,6 +373,7 @@ ephemeris_velocity_x:
370
373
  CATDESC: Velocity X positions for the IMAP spacecraft in the ECLIPJ2000 frame.
371
374
  LABLAXIS: Velocity X
372
375
  UNITS: km/s
376
+ DICT_KEY: SPASE>Support>SupportQuantity:Velocity
373
377
 
374
378
  ephemeris_velocity_y:
375
379
  <<: *spice_base
@@ -377,6 +381,7 @@ ephemeris_velocity_y:
377
381
  CATDESC: Velocity Y positions for the IMAP spacecraft in the ECLIPJ2000 frame.
378
382
  LABLAXIS: Velocity Y
379
383
  UNITS: km/s
384
+ DICT_KEY: SPASE>Support>SupportQuantity:Velocity
380
385
 
381
386
  ephemeris_velocity_z:
382
387
  <<: *spice_base
@@ -384,6 +389,8 @@ ephemeris_velocity_z:
384
389
  CATDESC: Velocity Z positions for the IMAP spacecraft in the ECLIPJ2000 frame.
385
390
  LABLAXIS: Velocity Z
386
391
  UNITS: km/s
392
+ DICT_KEY: SPASE>Support>SupportQuantity:Velocity
393
+
387
394
 
388
395
  longitude:
389
396
  <<: *spice_base
@@ -391,12 +398,14 @@ longitude:
391
398
  FIELDNAM: Longitude
392
399
  CATDESC: Longitude of the dust event as observed from Earth in the ECLIPJ2000 frame.
393
400
  LABLAXIS: Longitude
401
+ DICT_KEY: SPASE>Support>SupportQuantity:Longitude
394
402
 
395
403
  latitude:
396
404
  <<: *spice_base
397
405
  FIELDNAM: Latitude
398
406
  CATDESC: Latitude of the dust event as observed from Earth in the ECLIPJ2000 frame.
399
407
  LABLAXIS: Latitude
408
+ DICT_KEY: SPASE>Support>SupportQuantity:Latitude
400
409
 
401
410
  spin_phase:
402
411
  <<: *spice_base
@@ -406,6 +415,7 @@ spin_phase:
406
415
  LABLAXIS: Spin Phase
407
416
  FORMAT: F12.6
408
417
  FILLVAL: *double_fillval
418
+ DICT_KEY: SPASE>Support>SupportQuantity:SpinPhase
409
419
 
410
420
  solar_longitude:
411
421
  <<: *spice_base
@@ -413,4 +423,5 @@ solar_longitude:
413
423
  FIELDNAM: Solar Longitude
414
424
  CATDESC: Solar Longitude of the IMAP spacecraft
415
425
  LABLAXIS: Solar Longitude
426
+ DICT_KEY: SPASE>Support>SupportQuantity:Longitude
416
427
 
@@ -69,6 +69,7 @@ peak_fit_parameter_labels:
69
69
  VAR_TYPE: metadata
70
70
  FORMAT: A8
71
71
  DEPEND_1: peak_fit_parameter_index
72
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
72
73
 
73
74
  target_fit_parameter_labels:
74
75
  CATDESC: Labels for the target fit parameters.
@@ -77,6 +78,7 @@ target_fit_parameter_labels:
77
78
  VAR_TYPE: metadata
78
79
  FORMAT: A8
79
80
  DEPEND_1: target_fit_parameter_index
81
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
80
82
 
81
83
  mass_labels:
82
84
  CATDESC: Labels for mass index values
@@ -84,6 +86,7 @@ mass_labels:
84
86
  VAR_TYPE: metadata
85
87
  FORMAT: A8
86
88
  DEPEND_1: mass_index
89
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
87
90
 
88
91
  # <=== Index Attributes ===>
89
92
  peak_fit_parameter_index:
@@ -117,6 +120,7 @@ mass_index:
117
120
  FORMAT: I4
118
121
  VAR_TYPE: support_data
119
122
  SCALETYP: linear
123
+ LABLAXIS: Mass Index
120
124
  VALIDMIN: 0
121
125
  VALIDMAX: 500
122
126
  FILLVAL: *int_fillval
@@ -19,24 +19,28 @@ epoch_collection_set:
19
19
  REFERENCE_POSITION: Rotating Earth Geoid
20
20
  RESOLUTION: ' '
21
21
  DISPLAY_TYPE: time_series
22
+ DICT_KEY: SPASE>Support>SupportQantity:Temporal
22
23
 
23
24
  rectangular_lon_pixel_label:
24
25
  CATDESC: Longitude pixel index label for IDEX SkyMap.
25
26
  FIELDNAM: Longitude pixel label
26
27
  FORMAT: A5
27
28
  VAR_TYPE: metadata
29
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
28
30
 
29
31
  rectangular_lat_pixel_label:
30
32
  CATDESC: Latitude pixel index label for IDEX SkyMap.
31
33
  FIELDNAM: Latitude pixel label
32
34
  FORMAT: A5
33
35
  VAR_TYPE: metadata
36
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
34
37
 
35
38
  pixel_label:
36
39
  CATDESC: HEALPix pixel index label for IDEX SkyMap.
37
40
  FIELDNAM: Pixel label
38
41
  FORMAT: A5
39
42
  VAR_TYPE: metadata
43
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
40
44
 
41
45
  pixel_index:
42
46
  CATDESC: HEALPix pixel index for IDEX SkyMap
@@ -77,10 +81,10 @@ rectangular_lat_pixel:
77
81
  counts: &counts
78
82
  CATDESC: Number of raw dust events for each pixel
79
83
  FIELDNAM: Dust Counts
80
- FORMAT: I12
84
+ FORMAT: I20
81
85
  UNITS: counts
82
86
  VAR_TYPE: data
83
- DISPLAY_TYPE: time_series
87
+ DISPLAY_TYPE: spectrogram
84
88
  DEPEND_0: epoch
85
89
  VALIDMIN: 0
86
90
  VALIDMAX: *int_maxval
@@ -90,7 +94,7 @@ counts: &counts
90
94
  healpix_counts:
91
95
  <<: *counts
92
96
  DEPEND_1: pixel_index
93
- LABL_PTR_1: pixel_label
97
+ LABLAXIS: Counts
94
98
 
95
99
  rectangular_counts:
96
100
  <<: *counts
@@ -76,3 +76,9 @@ imap_lo_l1c_pset:
76
76
  Data_type: L1C_pset>Level-1C Pointing Set
77
77
  Logical_source: imap_lo_l1c_pset
78
78
  Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-1C Data
79
+
80
+ imap_lo_l2_l090-ena-h-sf-nsp-ram-hae-6deg-3mo:
81
+ <<: *instrument_base
82
+ Data_type: L2_l090-ena-h-sf-nsp-ram-hae-6deg-3mo>Level-2 Low-Energy ENA Maps
83
+ Logical_source: imap_lo_l2_l090-ena-h-sf-nsp-ram-hae-6deg-3mo
84
+ Logical_source_description: IMAP Mission IMAP-Lo Instrument Level-2 Low-Energy ENA Maps
@@ -0,0 +1,114 @@
1
+ # <=== Label Attributes ===>
2
+ # LABL_PTR_i expects VAR_TYPE of metadata with char data type.
3
+ default_attrs: &default
4
+ # Assumed values for all variable attrs unless overwritten
5
+ DEPEND_0: epoch
6
+ DISPLAY_TYPE: time_series
7
+ FILLVAL: -9223372036854775808
8
+ FORMAT: I12
9
+ VALIDMIN: -9223372036854775808
10
+ VALIDMAX: 9223372036854775807
11
+ VAR_TYPE: data
12
+ UNITS: ' '
13
+
14
+ default_coords: &default_coords
15
+ # Assumed values for all coordinate attrs unless overwritten
16
+ FORMAT: F2.4 # Float with 4 digits
17
+ VAR_TYPE: support_data
18
+ DISPLAY_TYPE: time_series
19
+ FILLVAL: -9223372036854775808
20
+ VALIDMIN: -9223372036854775808
21
+ VALIDMAX: 9223372036854775807
22
+ UNITS: counts
23
+
24
+ mag_support_attrs: &support_default
25
+ <<: *default
26
+ VAR_TYPE: support_data
27
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
28
+
29
+ mag_metadata_attrs: &metadata_default
30
+ <<: *default
31
+ VAR_TYPE: metadata
32
+
33
+ direction_label:
34
+ CATDESC: magnetic field vector data
35
+ FIELDNAM: Magnetic Field Vector
36
+ FORMAT: A3
37
+ VAR_TYPE: metadata
38
+
39
+ compression_label:
40
+ CATDESC: Compression and width
41
+ FIELDNAM: Compression and width
42
+ FORMAT: A2
43
+ VAR_TYPE: metadata
44
+
45
+ vector_attrs: &vectors_default
46
+ <<: *default
47
+ CATDESC: Magnetic field vectors with x y z varying by time
48
+ DEPEND_1: direction
49
+ FIELDNAM: Magnetic Field Vector
50
+ LABL_PTR_1: direction_label
51
+ FILLVAL: 9223372036854775807
52
+ FORMAT: F12.5
53
+ DICT_KEY: "SPASE>Field>FieldQuantity:Magnetic,Qualifier:Vector,CoordinateSystemName:DSRF,CoordinateRepresentation:Cartesian"
54
+
55
+ direction_attrs:
56
+ <<: *default_coords
57
+ CATDESC: Magnetic field vector
58
+ FIELDNAM: \[xyz\] magnetic field vector
59
+ FORMAT: I3
60
+ VAR_TYPE: support_data
61
+ DISPLAY_TYPE: time_series
62
+ LABLAXIS: Magnetic field vector
63
+ DICT_KEY: SPASE>Support>SupportQuantity:Orientation
64
+
65
+
66
+ # TODO: Add magnitude and range attributes, remove this
67
+ fill:
68
+ <<: *support_default
69
+ CATDESC: Compression bit width
70
+ DEPEND_0: epoch
71
+ DISPLAY_TYPE: time_series
72
+ FIELDNAM: Compressed data bit width
73
+ LABLAXIS: Bit width
74
+ FILLVAL: 255
75
+ FORMAT: I2
76
+ UNITS: 'bits'
77
+ VALIDMAX: 21
78
+ VALIDMIN: 0
79
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
80
+
81
+ pri_sens:
82
+ <<: *support_default
83
+ CATDESC: Indicates the primary sensor. 0 is MAGo, 1 is MAGi
84
+ FIELDNAM: Primary Sensor
85
+ LABLAXIS: Primary Sensor
86
+ FILLVAL: 255
87
+ FORMAT: I1
88
+ UNITS: ' '
89
+ VALIDMAX: 1
90
+ VALIDMIN: 0
91
+ DICT_KEY: SPASE>Support>SupportQuantity:InstrumentMode
92
+
93
+
94
+ qf_bitmask:
95
+ <<: *support_default
96
+ CATDESC: Eight-bit Data quality bitmask
97
+ FIELDNAM: Quality Flag
98
+ LABLAXIS: QF
99
+ FILLVAL: 255
100
+ FORMAT: I3
101
+ VALIDMAX: 255
102
+ VALIDMIN: 0
103
+ DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
104
+
105
+ qf:
106
+ <<: *support_default
107
+ CATDESC: Data quality flag
108
+ FIELDNAM: Quality Flag
109
+ LABLAXIS: QF
110
+ FILLVAL: 255
111
+ FORMAT: I1
112
+ VALIDMAX: 1
113
+ VALIDMIN: 0
114
+ DICT_KEY: SPASE>Support>SupportQuantity:DataQuality