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
@@ -150,6 +150,29 @@ ena_intensity_sys_err:
150
150
  VAR_TYPE: data
151
151
  LABLAXIS: Non-Statistical Err
152
152
  DISPLAY_TYPE: image
153
+ DICT_KEY: SPASE>Particle>ParticleType:Atom,ParticleQuantity:NumberFlux,Qualifier:Uncertainty,CoordinateSystemName:HAE,CoordinateRepresentation:Spherical
154
+
155
+ ena_rate:
156
+ <<: *default_float32
157
+ CATDESC: Mono-energetic ENA Rate.
158
+ FIELDNAM: Rate
159
+ UNITS: counts/s
160
+ DEPEND_0: epoch
161
+ VAR_TYPE: data
162
+ LABLAXIS: Rate
163
+ DISPLAY_TYPE: image
164
+ DICT_KEY: SPASE>Particle>ParticleType:Atom,ParticleQuantity:NumberFlux,Qualifier:Incident,CoordinateSystemName:HAE,CoordinateRepresentation:Spherical
165
+
166
+ ena_count:
167
+ <<: *default_float32
168
+ CATDESC: Mono-energetic ENA Count.
169
+ FIELDNAM: Count
170
+ UNITS: counts
171
+ DEPEND_0: epoch
172
+ VAR_TYPE: data
173
+ LABLAXIS: Count
174
+ DISPLAY_TYPE: image
175
+ DICT_KEY: SPASE>Particle>ParticleType:Atom,ParticleQuantity:NumberFlux,Qualifier:Incident,CoordinateSystemName:HAE,CoordinateRepresentation:Spherical
153
176
 
154
177
  sensitivity:
155
178
  <<: *default_float32
@@ -206,8 +229,12 @@ exposure_factor_energy_independent:
206
229
  obs_date_energy_independent:
207
230
  <<: *obs_date
208
231
 
232
+ obs_date_range_energy_independent:
233
+ <<: *obs_date
234
+
209
235
  solid_angle:
210
236
  <<: *default_float32
237
+ VAR_TYPE: support_data
211
238
  CATDESC: Solid angle subtended by each pixel.
212
239
  FIELDNAM: Solid Angle
213
240
  DEPEND_0: epoch
@@ -215,3 +242,4 @@ solid_angle:
215
242
  VAR_TYPE: data
216
243
  LABLAXIS: Solid Angle
217
244
  DISPLAY_TYPE: image
245
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
@@ -83,7 +83,7 @@ obs_date_energy_independent:
83
83
  DEPEND_1: pixel_index
84
84
  LABL_PTR_1: pixel_index_label
85
85
 
86
- obs_date_range:
86
+ obs_date_range_energy_independent:
87
87
  DEPEND_1: pixel_index
88
88
  LABL_PTR_1: pixel_index_label
89
89
 
@@ -25,6 +25,7 @@ longitude_delta:
25
25
  FORMAT: F12.6
26
26
  UNITS: degrees
27
27
  FIELDNAM: longitude delta
28
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
28
29
 
29
30
  latitude_label:
30
31
  VAR_TYPE: metadata
@@ -40,6 +41,7 @@ latitude_delta:
40
41
  FORMAT: F12.6
41
42
  UNITS: degrees
42
43
  FIELDNAM: latitude delta
44
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
43
45
 
44
46
  # All variables below override the initial attributes defined in the common ENA Map
45
47
  # attributes file, imap_enamaps_l2-common_variable_attrs.yaml
@@ -79,6 +81,22 @@ ena_intensity_sys_err:
79
81
  LABL_PTR_2: longitude_label
80
82
  LABL_PTR_3: latitude_label
81
83
 
84
+ ena_rate:
85
+ DEPEND_1: energy
86
+ DEPEND_2: longitude
87
+ DEPEND_3: latitude
88
+ LABL_PTR_1: energy_label
89
+ LABL_PTR_2: longitude_label
90
+ LABL_PTR_3: latitude_label
91
+
92
+ ena_count:
93
+ DEPEND_1: energy
94
+ DEPEND_2: longitude
95
+ DEPEND_3: latitude
96
+ LABL_PTR_1: energy_label
97
+ LABL_PTR_2: longitude_label
98
+ LABL_PTR_3: latitude_label
99
+
82
100
  sensitivity:
83
101
  DEPEND_1: energy
84
102
  DEPEND_2: longitude
@@ -45,6 +45,7 @@ time_data_defaults: &time_data_defaults
45
45
  UNITS: N/A
46
46
  VALIDMIN: 0
47
47
  VALIDMAX: 0
48
+ DICT_KEY: SPASE>Support>SupportQuantity:Temporal
48
49
 
49
50
  lightcurve_defaults: &lightcurve_defaults
50
51
  <<: *support_data_defaults
@@ -65,11 +66,12 @@ bins_dim:
65
66
  FILLVAL: *max_uint16
66
67
  MONOTON: INCREASE
67
68
  SCALETYP: linear
69
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
68
70
 
69
71
  flags_dim:
70
72
  <<: *default_attrs
71
73
  FILLVAL: 255
72
- CATDESC: Flag index for daily-occurence counters of L1B flags
74
+ CATDESC: Flag index for daily-occurrence counters of L1B flags
73
75
  FIELDNAM: L1B flag index
74
76
  UNITS: ' '
75
77
  FORMAT: I2
@@ -77,6 +79,7 @@ flags_dim:
77
79
  VALIDMAX: 16
78
80
  VALIDMIN: 0
79
81
  VAR_TYPE: support_data
82
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
80
83
 
81
84
  ecliptic_dim:
82
85
  <<: *default_attrs
@@ -90,6 +93,8 @@ ecliptic_dim:
90
93
  FILLVAL: 255
91
94
  VAR_TYPE: support_data
92
95
  FORMAT: I1
96
+ DICT_KEY: SPASE>Support>SupportQuantity:Orientation
97
+
93
98
 
94
99
  number_of_good_l1b_inputs:
95
100
  <<: *support_data_defaults
@@ -99,6 +104,7 @@ number_of_good_l1b_inputs:
99
104
  FILLVAL: *max_uint16
100
105
  FORMAT: I5
101
106
  VALIDMAX: 20000 # 3 days * 86400 s / 14.6 s rounded up
107
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
102
108
 
103
109
  total_l1b_inputs:
104
110
  <<: *support_data_defaults
@@ -108,6 +114,7 @@ total_l1b_inputs:
108
114
  FILLVAL: *max_uint16
109
115
  FORMAT: I5
110
116
  VALIDMAX: 20000
117
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
111
118
 
112
119
  identifier:
113
120
  <<: *support_data_defaults
@@ -117,6 +124,7 @@ identifier:
117
124
  FILLVAL: *max_uint32
118
125
  FORMAT: I5
119
126
  VALIDMAX: 99999
127
+ DICT_KEY: SPASE>Support>SupportQuantity:Temporal
120
128
 
121
129
  start_time:
122
130
  <<: *time_data_defaults
@@ -142,6 +150,7 @@ filter_temperature_average:
142
150
  VALIDMIN: -30.0
143
151
  VALIDMAX: 60.0
144
152
  UNITS: Celsius
153
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
145
154
 
146
155
  filter_temperature_std_dev:
147
156
  <<: *support_data_defaults
@@ -153,6 +162,7 @@ filter_temperature_std_dev:
153
162
  VALIDMIN: 0.0
154
163
  VALIDMAX: 90.0
155
164
  UNITS: Celsius
165
+ DICT_KEY: SPASE>Support>SupportQuantity:Housekeeping
156
166
 
157
167
  hv_voltage_average:
158
168
  <<: *support_data_defaults
@@ -164,6 +174,7 @@ hv_voltage_average:
164
174
  VALIDMIN: 0.0
165
175
  VALIDMAX: 3500.0
166
176
  UNITS: V
177
+ DICT_KEY: SPASE>Support>SupportQuantity:Housekeeping
167
178
 
168
179
  hv_voltage_std_dev:
169
180
  <<: *support_data_defaults
@@ -175,6 +186,7 @@ hv_voltage_std_dev:
175
186
  VALIDMIN: 0.0
176
187
  VALIDMAX: 3500.0
177
188
  UNITS: V
189
+ DICT_KEY: SPASE>Support>SupportQuantity:Housekeeping
178
190
 
179
191
  spin_period_average:
180
192
  <<: *support_data_defaults
@@ -188,7 +200,7 @@ spin_period_average:
188
200
  UNITS: s
189
201
  VALIDMIN: 14.6
190
202
  VALIDMAX: 15.4
191
- #VAR_TYPE: support_data
203
+ DICT_KEY: SPASE>Support>SupportQuantity:SpinPeriod
192
204
 
193
205
  spin_period_std_dev:
194
206
  <<: *support_data_defaults
@@ -200,6 +212,7 @@ spin_period_std_dev:
200
212
  UNITS: s
201
213
  VALIDMIN: 0.0
202
214
  VALIDMAX: 9.9
215
+ DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
203
216
 
204
217
  # TODO review these
205
218
  spin_period_ground_average:
@@ -214,7 +227,7 @@ spin_period_ground_average:
214
227
  UNITS: s
215
228
  VALIDMIN: 14.6
216
229
  VALIDMAX: 15.4
217
- #VAR_TYPE: support_data
230
+ DICT_KEY: SPASE>Support>SupportQuantity:SpinPeriod
218
231
 
219
232
  spin_period_ground_std_dev:
220
233
  <<: *support_data_defaults
@@ -226,6 +239,7 @@ spin_period_ground_std_dev:
226
239
  UNITS: s
227
240
  VALIDMIN: 0.0
228
241
  VALIDMAX: 9.9
242
+ DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
229
243
 
230
244
  pulse_length_average:
231
245
  <<: *support_data_defaults
@@ -237,6 +251,7 @@ pulse_length_average:
237
251
  UNITS: us
238
252
  VALIDMIN: 0.0
239
253
  VALIDMAX: 12.75
254
+ DICT_KEY: SPASE>Support>SupportQuantity:Housekeeping
240
255
 
241
256
  pulse_length_std_dev:
242
257
  <<: *support_data_defaults
@@ -248,6 +263,7 @@ pulse_length_std_dev:
248
263
  UNITS: us
249
264
  VALIDMIN: 0.0
250
265
  VALIDMAX: 12.75
266
+ DICT_KEY: SPASE>Support>SupportQuantity:Housekeeping
251
267
 
252
268
  position_angle_offset_average:
253
269
  <<: *support_data_defaults
@@ -259,6 +275,7 @@ position_angle_offset_average:
259
275
  UNITS: degrees
260
276
  VALIDMIN: 0.0
261
277
  VALIDMAX: 360.0
278
+ DICT_KEY: SPASE>Support>SupportQuantity:Positional
262
279
 
263
280
  position_angle_offset_std_dev:
264
281
  <<: *support_data_defaults
@@ -270,6 +287,7 @@ position_angle_offset_std_dev:
270
287
  UNITS: degrees
271
288
  VALIDMIN: 0.0
272
289
  VALIDMAX: 360.0
290
+ DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
273
291
 
274
292
  spin_axis_orientation_average:
275
293
  <<: *support_data_defaults
@@ -281,6 +299,7 @@ spin_axis_orientation_average:
281
299
  UNITS: degrees
282
300
  VALIDMIN: -90.0
283
301
  VALIDMAX: 360.0
302
+ DICT_KEY: SPASE>Support>SupportQuantity:SpinPhase
284
303
 
285
304
  spin_axis_orientation_std_dev:
286
305
  <<: *support_data_defaults
@@ -292,6 +311,7 @@ spin_axis_orientation_std_dev:
292
311
  UNITS: degrees
293
312
  VALIDMIN: 0.0
294
313
  VALIDMAX: 360.0
314
+ DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
295
315
 
296
316
  spacecraft_location_average:
297
317
  <<: *support_data_defaults
@@ -305,6 +325,8 @@ spacecraft_location_average:
305
325
  UNITS: km
306
326
  VALIDMIN: -9.999999999E+8
307
327
  VALIDMAX: 9.999999999E+8
328
+ DICT_KEY: SPASE>Support>SupportQuantity:Positional
329
+
308
330
 
309
331
  spacecraft_location_std_dev:
310
332
  <<: *support_data_defaults
@@ -318,6 +340,7 @@ spacecraft_location_std_dev:
318
340
  UNITS: km
319
341
  VALIDMIN: 0.0
320
342
  VALIDMAX: 1.5E+7 # 50 km/s * 3 days * 86400 s < 1.5e7
343
+ DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
321
344
 
322
345
  spacecraft_velocity_average:
323
346
  <<: *support_data_defaults
@@ -331,6 +354,7 @@ spacecraft_velocity_average:
331
354
  UNITS: km/s
332
355
  VALIDMIN: -50.0
333
356
  VALIDMAX: 50.0
357
+ DICT_KEY: SPASE>Support>SupportQuantity:Velocity
334
358
 
335
359
  spacecraft_velocity_std_dev:
336
360
  <<: *support_data_defaults
@@ -344,6 +368,7 @@ spacecraft_velocity_std_dev:
344
368
  UNITS: km/s
345
369
  VALIDMIN: 0.0
346
370
  VALIDMAX: 9.9
371
+ DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
347
372
 
348
373
  bad_time_flag_occurrences:
349
374
  <<: *support_data_defaults
@@ -356,6 +381,7 @@ bad_time_flag_occurrences:
356
381
  FORMAT: I5
357
382
  VALIDMAX: 20000
358
383
  LABLAXIS: No. of cases
384
+ DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
359
385
 
360
386
  spin_angle:
361
387
  <<: *lightcurve_defaults
@@ -368,6 +394,7 @@ spin_angle:
368
394
  FORMAT: F7.3
369
395
  VALIDMIN: 0.0
370
396
  VALIDMAX: 360.0
397
+ DICT_KEY: SPASE>Support>SupportQuantity:SpinPhase
371
398
 
372
399
  photon_flux:
373
400
  <<: *lightcurve_defaults
@@ -380,6 +407,8 @@ photon_flux:
380
407
  FORMAT: F8.2
381
408
  VALIDMIN: 0.0
382
409
  VALIDMAX: 30000.0 # max 30000 cps in FDIR / from 1 to 3.37 cps-per-R
410
+ # SPASE data pulled from TWINS 1 LAD metadata
411
+ DICT_KEY: SPASE>Wave>WaveType:Electromagnetic,WaveQuantity:Intensity,Qualifier:Scalar
383
412
 
384
413
  raw_histograms:
385
414
  <<: *lightcurve_defaults
@@ -392,6 +421,7 @@ raw_histograms:
392
421
  FORMAT: I8
393
422
  VALIDMIN: 0
394
423
  VALIDMAX: 35000000 # max 30000 cps in FDIR * 3 days * 86400 s / 225 bins rounded up
424
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
395
425
 
396
426
  exposure_times:
397
427
  <<: *lightcurve_defaults
@@ -404,6 +434,7 @@ exposure_times:
404
434
  FORMAT: F7.2
405
435
  VALIDMIN: 0.0
406
436
  VALIDMAX: 1200.0 # 3 days * 86400 s / 225 bins rounded up
437
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
407
438
 
408
439
  flux_uncertainties:
409
440
  <<: *lightcurve_defaults
@@ -416,6 +447,7 @@ flux_uncertainties:
416
447
  FORMAT: F8.2
417
448
  VALIDMIN: 0.0
418
449
  VALIDMAX: 30000.0 # the same VALIDMAX as for photon_flux assumed
450
+ DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
419
451
 
420
452
  histogram_flag_array:
421
453
  <<: *lightcurve_defaults
@@ -428,6 +460,7 @@ histogram_flag_array:
428
460
  FORMAT: I2
429
461
  VALIDMIN: 0
430
462
  VALIDMAX: 15 # only 4 bits currently used
463
+ DICT_KEY: SPASE>Support>SupportQuantity:DataQuality
431
464
 
432
465
  ecliptic_lon:
433
466
  <<: *lightcurve_defaults
@@ -440,6 +473,7 @@ ecliptic_lon:
440
473
  FORMAT: F7.3
441
474
  VALIDMIN: 0.0
442
475
  VALIDMAX: 360.0
476
+ DICT_KEY: SPASE>Support>SupportQuantity:Positional
443
477
 
444
478
  ecliptic_lat:
445
479
  <<: *lightcurve_defaults
@@ -452,6 +486,7 @@ ecliptic_lat:
452
486
  FORMAT: F7.3
453
487
  VALIDMIN: -90.0
454
488
  VALIDMAX: 90.0
489
+ DICT_KEY: SPASE>Support>SupportQuantity:Positional
455
490
 
456
491
  number_of_bins:
457
492
  <<: *support_data_defaults
@@ -464,6 +499,7 @@ number_of_bins:
464
499
  FORMAT: I4
465
500
  VALIDMIN: 225
466
501
  VALIDMAX: 3600
502
+ DICT_KEY: SPASE>Support>SupportQuantity:Other
467
503
 
468
504
  # M. Strumik comment: this variable is obsolete and should not be used
469
505
  raw_uncertainties:
@@ -0,0 +1,18 @@
1
+ instrument_base: &instrument_base
2
+ Descriptor: IALiRT>IMAP I-ALiRT (IMAP Active Link in Real Time)
3
+ TEXT: >
4
+ The Interstellar Mapping and Acceleration Probe (IMAP) mission includes the Active Link
5
+ for Real-Time (I-ALiRT) system, which provides continuous, low-latency space weather data.
6
+ I-ALiRT broadcasts real-time measurements from IMAP via NASA’s Deep Space Network and
7
+ international ground stations. It has data from 5 of the IMAP instruments:
8
+ SWE (Solar Wind Electron), CoDICE (Compact Dual Ion Composition Experiment),
9
+ HIT (High-energy Ion Telescope), MAG (Magnetometer),
10
+ and SWAPI (Solar Wind and Pickup Ion).
11
+ See https://imap.princeton.edu for more details.
12
+ Instrument_type: "Multiple Instruments"
13
+
14
+ imap_ialirt_l1_realtime:
15
+ <<: *instrument_base
16
+ Data_type: L1_REALTIME>Level-1 Realtime
17
+ Logical_source: imap_ialirt_l1_realtime
18
+ Logical_source_description: IMAP-IALiRT Instrument Level-1 Realtime Data.