imap-processing 0.14.0__py3-none-any.whl → 0.16.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 (81) 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 +353 -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 +145 -80
  23. imap_processing/codice/codice_l1a.py +140 -84
  24. imap_processing/codice/codice_l1b.py +91 -18
  25. imap_processing/codice/codice_l2.py +81 -0
  26. imap_processing/codice/constants.py +68 -0
  27. imap_processing/ena_maps/ena_maps.py +43 -1
  28. imap_processing/glows/l2/glows_l2_data.py +3 -6
  29. imap_processing/hi/hi_l1a.py +447 -0
  30. imap_processing/hi/{l1b/hi_l1b.py → hi_l1b.py} +1 -1
  31. imap_processing/hi/{l1c/hi_l1c.py → hi_l1c.py} +21 -21
  32. imap_processing/hi/{l2/hi_l2.py → hi_l2.py} +13 -13
  33. imap_processing/hi/utils.py +6 -6
  34. imap_processing/hit/l1b/hit_l1b.py +30 -11
  35. imap_processing/ialirt/constants.py +38 -0
  36. imap_processing/ialirt/l0/parse_mag.py +1 -1
  37. imap_processing/ialirt/l0/process_codice.py +91 -0
  38. imap_processing/ialirt/l0/process_hit.py +12 -21
  39. imap_processing/ialirt/l0/process_swapi.py +172 -23
  40. imap_processing/ialirt/l0/process_swe.py +3 -10
  41. imap_processing/ialirt/utils/constants.py +62 -0
  42. imap_processing/ialirt/utils/create_xarray.py +135 -0
  43. imap_processing/idex/idex_l2c.py +9 -9
  44. imap_processing/lo/l1b/lo_l1b.py +6 -1
  45. imap_processing/lo/l1c/lo_l1c.py +22 -13
  46. imap_processing/lo/l2/lo_l2.py +213 -0
  47. imap_processing/mag/l1c/mag_l1c.py +8 -1
  48. imap_processing/mag/l2/mag_l2.py +6 -2
  49. imap_processing/mag/l2/mag_l2_data.py +7 -5
  50. imap_processing/swe/l1a/swe_l1a.py +6 -6
  51. imap_processing/swe/l1b/swe_l1b.py +70 -11
  52. imap_processing/ultra/l0/decom_ultra.py +1 -1
  53. imap_processing/ultra/l0/ultra_utils.py +0 -4
  54. imap_processing/ultra/l1b/badtimes.py +7 -3
  55. imap_processing/ultra/l1b/cullingmask.py +7 -2
  56. imap_processing/ultra/l1b/de.py +26 -12
  57. imap_processing/ultra/l1b/lookup_utils.py +8 -7
  58. imap_processing/ultra/l1b/ultra_l1b.py +59 -48
  59. imap_processing/ultra/l1b/ultra_l1b_culling.py +50 -18
  60. imap_processing/ultra/l1b/ultra_l1b_extended.py +4 -4
  61. imap_processing/ultra/l1c/helio_pset.py +53 -0
  62. imap_processing/ultra/l1c/spacecraft_pset.py +20 -12
  63. imap_processing/ultra/l1c/ultra_l1c.py +49 -26
  64. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +40 -2
  65. imap_processing/ultra/l2/ultra_l2.py +47 -2
  66. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_RightSlit.csv +524 -526
  67. imap_processing/ultra/utils/ultra_l1_utils.py +51 -10
  68. {imap_processing-0.14.0.dist-info → imap_processing-0.16.0.dist-info}/METADATA +2 -2
  69. {imap_processing-0.14.0.dist-info → imap_processing-0.16.0.dist-info}/RECORD +72 -69
  70. imap_processing/hi/l1a/__init__.py +0 -0
  71. imap_processing/hi/l1a/hi_l1a.py +0 -98
  72. imap_processing/hi/l1a/histogram.py +0 -152
  73. imap_processing/hi/l1a/science_direct_event.py +0 -214
  74. imap_processing/hi/l1b/__init__.py +0 -0
  75. imap_processing/hi/l1c/__init__.py +0 -0
  76. imap_processing/hi/l2/__init__.py +0 -0
  77. imap_processing/ialirt/l0/process_codicehi.py +0 -156
  78. imap_processing/ialirt/l0/process_codicelo.py +0 -41
  79. {imap_processing-0.14.0.dist-info → imap_processing-0.16.0.dist-info}/LICENSE +0 -0
  80. {imap_processing-0.14.0.dist-info → imap_processing-0.16.0.dist-info}/WHEEL +0 -0
  81. {imap_processing-0.14.0.dist-info → imap_processing-0.16.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,353 @@
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
+ UNITS: " "
19
+
20
+ esa_step:
21
+ CATDESC: ESA step number
22
+ FIELDNAM: esa_step
23
+ LABLAXIS: esa_step
24
+ FORMAT: I2
25
+ VALIDMIN: 0
26
+ VALIDMAX: 7
27
+ VAR_TYPE: metadata
28
+ UNITS: " "
29
+
30
+ energy_ranges:
31
+ CATDESC: CoDICE-Hi energy ranges
32
+ FIELDNAM: energy_ranges
33
+ LABLAXIS: energy_ranges
34
+ FORMAT: I3
35
+ VALIDMIN: 0
36
+ VALIDMAX: 14
37
+ VAR_TYPE: metadata
38
+ UNITS: " "
39
+
40
+ azimuth:
41
+ CATDESC: CoDICE-Hi azimuth
42
+ FIELDNAM: azimuth
43
+ LABLAXIS: azimuth
44
+ FORMAT: I3
45
+ VALIDMIN: 0
46
+ VALIDMAX: 4
47
+ VAR_TYPE: metadata
48
+ UNITS: " "
49
+
50
+ spin_angle_bin:
51
+ CATDESC: CoDICE-Hi spin_angle_bin
52
+ FIELDNAM: spin_angle_bin
53
+ LABLAXIS: spin_angle_bin
54
+ FORMAT: I3
55
+ VALIDMIN: 0
56
+ VALIDMAX: 4
57
+ VAR_TYPE: metadata
58
+ UNITS: " "
59
+
60
+ default_uint8_attrs: &default_uint8
61
+ <<: *default
62
+ FILLVAL: 255
63
+ FORMAT: I3
64
+ VALIDMIN: 0
65
+ VALIDMAX: 255
66
+ dtype: uint8
67
+
68
+ default_uint16_attrs: &default_uint16
69
+ <<: *default
70
+ FILLVAL: 65535
71
+ FORMAT: I5
72
+ VALIDMIN: 0
73
+ VALIDMAX: 65535
74
+ dtype: uint16
75
+
76
+ default_uint32_attrs: &default_uint32
77
+ <<: *default
78
+ FILLVAL: 4294967295
79
+ FORMAT: I10
80
+ VALIDMIN: 0
81
+ VALIDMAX: 4294967295
82
+ dtype: uint32
83
+
84
+ default_int64_attrs: &default_int64
85
+ <<: *default
86
+ FILLVAL: -9223372036854775808
87
+ FORMAT: I20
88
+ VALIDMIN: -9223372036854775808
89
+ VALIDMAX: 9223372036854775807
90
+ dtype: int64
91
+
92
+ default_int32_attrs: &default_int32
93
+ <<: *default
94
+ FILLVAL: -2147483648
95
+ FORMAT: I10
96
+ VALIDMIN: -2147483648
97
+ VALIDMAX: 2147483647
98
+ dtype: int32
99
+
100
+ default_float32_attrs: &default_float32
101
+ <<: *default
102
+ FILLVAL: -1.0e31
103
+ FORMAT: F12.6
104
+ VALIDMIN: -3.4028235e+38
105
+ VALIDMAX: 3.4028235e+38
106
+ dtype: float32
107
+
108
+ default_float64_attrs: &default_float64
109
+ <<: *default
110
+ FILLVAL: -1.0e31
111
+ FORMAT: F10.2
112
+ VALIDMIN: -1.7976931348623157e+308
113
+ VALIDMAX: 1.7976931348623157e+308
114
+ dtype: float64
115
+
116
+ codicehi_h:
117
+ <<: *default_float32
118
+ CATDESC: H intensities in 15 energy ranges and binned into 4 azimuths and 4 spin angle bins
119
+ FIELDNAM: H intensities
120
+ LABLAXIS: Diff. Intensity
121
+ UNITS: "# / cm2-sr-s- MeV"
122
+ VALIDMIN: 0
123
+ VALIDMAX: 100000000.0
124
+ DEPEND_1: energy_ranges
125
+ DEPEND_2: azimuth
126
+ DEPEND_3: spin_angle_bin
127
+
128
+ codicelo_c_over_o_abundance:
129
+ <<: *default_float32
130
+ CATDESC: C/O abundance ratio
131
+ FIELDNAM: C/O
132
+ LABLAXIS: ratio
133
+ UNITS: " "
134
+ VALIDMIN: 0
135
+ VALIDMAX: 100000000.0
136
+
137
+ codicelo_mg_over_o_abundance:
138
+ <<: *default_float32
139
+ CATDESC: Mg/O abundance ratio
140
+ FIELDNAM: Mg/O
141
+ LABLAXIS: ratio
142
+ UNITS: " "
143
+ VALIDMIN: 0
144
+ VALIDMAX: 100000000.0
145
+
146
+ codicelo_fe_over_o_abundance:
147
+ <<: *default_float32
148
+ CATDESC: Fe/O abundance ratio
149
+ FIELDNAM: Fe/O
150
+ LABLAXIS: ratio
151
+ UNITS: " "
152
+ VALIDMIN: 0
153
+ VALIDMAX: 100000000.0
154
+
155
+ codicelo_c_plus_6_over_c_plus_5_ratio:
156
+ <<: *default_float32
157
+ CATDESC: C+6/C+5 charge state ratio
158
+ FIELDNAM: C+6/C+5
159
+ LABLAXIS: ratio
160
+ UNITS: " "
161
+ VALIDMIN: 0
162
+ VALIDMAX: 100000000.0
163
+
164
+ codicelo_o_plus_7_over_o_plus_6_ratio:
165
+ <<: *default_float32
166
+ CATDESC: O+7/O+6 charge state ratio
167
+ FIELDNAM: O+7/O+6
168
+ LABLAXIS: ratio
169
+ UNITS: " "
170
+ VALIDMIN: 0
171
+ VALIDMAX: 100000000.0
172
+
173
+ codicelo_fe_low_over_fe_high_ratio:
174
+ <<: *default_float32
175
+ CATDESC: Fe low/Fe high charge state ratio
176
+ FIELDNAM: Fe low/Fe high
177
+ LABLAXIS: ratio
178
+ UNITS: " "
179
+ VALIDMIN: 0
180
+ VALIDMAX: 100000000.0
181
+
182
+ hit_e_a_side_low_en:
183
+ <<: *default_uint32
184
+ CATDESC: Low energy (~300 keV) electrons (A-side)
185
+ FIELDNAM: Low energy (~300 keV) electrons (A-side)
186
+ LABLAXIS: hit_e_a_side_low_en
187
+ UNITS: counts
188
+
189
+ hit_e_a_side_med_en:
190
+ <<: *default_uint32
191
+ CATDESC: Medium energy (~3 MeV) electrons (A-side)
192
+ FIELDNAM: Medium energy (~3 MeV) electrons (A-side)
193
+ LABLAXIS: hit_e_a_side_med_en
194
+ UNITS: counts
195
+
196
+ hit_e_a_side_high_en:
197
+ <<: *default_uint32
198
+ CATDESC: High energy (>3 MeV) electrons (A-side)
199
+ FIELDNAM: High energy (>3 MeV) electrons (A-side)
200
+ LABLAXIS: hit_e_a_side_high_en
201
+ UNITS: counts
202
+
203
+ hit_e_b_side_low_en:
204
+ <<: *default_uint32
205
+ CATDESC: Low energy (~300 keV) electrons (B-side)
206
+ FIELDNAM: Low energy (~300 keV) electrons (B-side)
207
+ LABLAXIS: hit_e_b_side_low_en
208
+ UNITS: counts
209
+
210
+ hit_e_b_side_med_en:
211
+ <<: *default_uint32
212
+ CATDESC: Medium energy (~3 MeV) electrons (B-side)
213
+ FIELDNAM: Medium energy (~3 MeV) electrons (B-side)
214
+ LABLAXIS: hit_e_b_side_med_en
215
+ UNITS: counts
216
+
217
+ hit_e_b_side_high_en:
218
+ <<: *default_uint32
219
+ CATDESC: High energy (>3 MeV) electrons (B-side)
220
+ FIELDNAM: High energy (>3 MeV) electrons (B-side)
221
+ LABLAXIS: hit_e_b_side_high_en
222
+ UNITS: counts
223
+
224
+ hit_h_omni_med_en:
225
+ <<: *default_uint32
226
+ CATDESC: Medium energy (12–70 MeV) protons (Omnidirectional)
227
+ FIELDNAM: Medium energy (12–70 MeV) protons (Omnidirectional)
228
+ LABLAXIS: hit_h_omni_med_en
229
+ UNITS: counts
230
+
231
+ hit_h_a_side_high_en:
232
+ <<: *default_uint32
233
+ CATDESC: High energy (>70 MeV) protons (A-side)
234
+ FIELDNAM: High energy (>70 MeV) protons (A-side)
235
+ LABLAXIS: hit_h_a_side_high_en
236
+ UNITS: counts
237
+
238
+ hit_h_b_side_high_en:
239
+ <<: *default_uint32
240
+ CATDESC: High energy (>70 MeV) protons (B-side)
241
+ FIELDNAM: High energy (>70 MeV) protons (B-side)
242
+ LABLAXIS: hit_h_b_side_high_en
243
+ UNITS: counts
244
+
245
+ hit_he_omni_low_en:
246
+ <<: *default_uint32
247
+ CATDESC: Low energy (6–8 MeV/nuc) He (Omnidirectional)
248
+ FIELDNAM: Low energy (6–8 MeV/nuc) He (Omnidirectional)
249
+ LABLAXIS: hit_he_omni_low_en
250
+ UNITS: counts
251
+
252
+ hit_he_omni_high_en:
253
+ <<: *default_uint32
254
+ CATDESC: High energy (15–70 MeV/nuc) He (Omnidirectional)
255
+ FIELDNAM: High energy (15–70 MeV/nuc) He (Omnidirectional)
256
+ LABLAXIS: hit_he_omni_high_en
257
+ UNITS: counts
258
+
259
+ mag_4s_b_gse:
260
+ <<: *default_float32
261
+ CATDESC: Magnetic field vector in GSE coordinates
262
+ FIELDNAM: mag_4s_b_gse
263
+ LABLAXIS: mag_4s_b_gse
264
+ UNITS: nT
265
+ DEPEND_1: component
266
+
267
+ mag_4s_b_gsm:
268
+ <<: *default_float32
269
+ CATDESC: Magnetic field vector in GSM coordinates
270
+ FIELDNAM: mag_4s_b_gsm
271
+ LABLAXIS: mag_4s_b_gsm
272
+ UNITS: nT
273
+ DEPEND_1: component
274
+
275
+ mag_4s_b_rtn:
276
+ <<: *default_float32
277
+ CATDESC: Magnetic field vector in RTN coordinates
278
+ FIELDNAM: mag_4s_b_rtn
279
+ LABLAXIS: mag_4s_b_rtn
280
+ UNITS: nT
281
+ DEPEND_1: component
282
+
283
+ mag_phi_4s_b_gsm:
284
+ <<: *default_float32
285
+ CATDESC: Azimuth angle (φ) of the magnetic field in GSM coordinates
286
+ FIELDNAM: mag_phi_4s_b_gsm
287
+ LABLAXIS: mag_phi_4s_b_gsm
288
+ UNITS: degrees
289
+
290
+ mag_theta_4s_b_gsm:
291
+ <<: *default_float32
292
+ CATDESC: Elevation angle (θ) of the magnetic field in GSM coordinates
293
+ FIELDNAM: mag_theta_4s_b_gsm
294
+ LABLAXIS: mag_theta_4s_b_gsm
295
+ UNITS: degrees
296
+
297
+ swapi_pseudo_proton_density:
298
+ <<: *default_float32
299
+ CATDESC: Pseudo density of solar wind protons
300
+ FIELDNAM: swapi_pseudo_proton_density
301
+ LABLAXIS: swapi_pseudo_proton_density
302
+ UNITS: 1/cm^3
303
+ VALIDMIN: 0.0
304
+ VALIDMAX: 1000.0
305
+
306
+ swapi_pseudo_proton_speed:
307
+ <<: *default_float32
308
+ CATDESC: Pseudo speed of solar wind protons in solar inertial frame
309
+ FIELDNAM: swapi_pseudo_proton_speed
310
+ LABLAXIS: swapi_pseudo_proton_speed
311
+ UNITS: km/sec
312
+ VALIDMIN: 0.0
313
+ VALIDMAX: 10000.0
314
+
315
+ swapi_pseudo_proton_temperature:
316
+ <<: *default_float32
317
+ CATDESC: Pseudo temperature of solar wind protons in plasma frame
318
+ FIELDNAM: swapi_pseudo_proton_temperature
319
+ LABLAXIS: swapi_pseudo_proton_temperature
320
+ UNITS: Kelvin
321
+ VALIDMIN: 0.0
322
+ VALIDMAX: 50000000.0
323
+
324
+ # SWE Normalized Counts, First Half Cycle
325
+ swe_normalized_counts_half_1:
326
+ <<: *default_uint32
327
+ CATDESC: Normalized electron counts (Half Cycle 1, ESA step 0)
328
+ FIELDNAM: swe_normalized_counts_half_1
329
+ LABLAXIS: swe_norm_cts_q1_esa0
330
+ UNITS: Normalized counts
331
+ VALIDMIN: 0
332
+ VALIDMAX: 500000
333
+ DEPEND_1: esa_step
334
+
335
+ # SWE Normalized Counts, Second Half Cycle
336
+ swe_normalized_counts_half_2:
337
+ <<: *default_uint32
338
+ CATDESC: Normalized electron counts (Half Cycle 2, ESA step 0)
339
+ FIELDNAM: swe_normalized_counts_half_2
340
+ LABLAXIS: swe_norm_cts_q2_esa0
341
+ UNITS: Normalized counts
342
+ VALIDMIN: 0
343
+ VALIDMAX: 500000
344
+ DEPEND_1: esa_step
345
+
346
+ swe_counterstreaming_electrons:
347
+ <<: *default_uint8
348
+ CATDESC: Counterstreaming electrons
349
+ FIELDNAM: swe_counterstreaming_electrons
350
+ LABLAXIS: swe_counterstreaming_electrons
351
+ UNITS: ""
352
+ VALIDMIN: 0
353
+ 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