imap-processing 0.17.0__py3-none-any.whl → 0.19.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of imap-processing might be problematic. Click here for more details.

Files changed (141) hide show
  1. imap_processing/_version.py +2 -2
  2. imap_processing/ancillary/ancillary_dataset_combiner.py +161 -1
  3. imap_processing/ccsds/excel_to_xtce.py +12 -0
  4. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +6 -6
  5. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +312 -274
  6. imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +39 -28
  7. imap_processing/cdf/config/imap_codice_l2_variable_attrs.yaml +1048 -183
  8. imap_processing/cdf/config/imap_constant_attrs.yaml +4 -2
  9. imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +12 -0
  10. imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +5 -0
  11. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +10 -4
  12. imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +163 -100
  13. imap_processing/cdf/config/imap_hit_l2_variable_attrs.yaml +4 -4
  14. imap_processing/cdf/config/imap_ialirt_l1_variable_attrs.yaml +97 -54
  15. imap_processing/cdf/config/imap_idex_l2a_variable_attrs.yaml +33 -4
  16. imap_processing/cdf/config/imap_idex_l2b_variable_attrs.yaml +44 -44
  17. imap_processing/cdf/config/imap_idex_l2c_variable_attrs.yaml +77 -61
  18. imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +30 -0
  19. imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +4 -15
  20. imap_processing/cdf/config/imap_lo_l1c_variable_attrs.yaml +189 -98
  21. imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +99 -2
  22. imap_processing/cdf/config/imap_mag_l1c_variable_attrs.yaml +24 -1
  23. imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +60 -0
  24. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +99 -11
  25. imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +50 -7
  26. imap_processing/cli.py +121 -44
  27. imap_processing/codice/codice_l1a.py +165 -77
  28. imap_processing/codice/codice_l1b.py +1 -1
  29. imap_processing/codice/codice_l2.py +118 -19
  30. imap_processing/codice/constants.py +1217 -1089
  31. imap_processing/decom.py +1 -4
  32. imap_processing/ena_maps/ena_maps.py +32 -25
  33. imap_processing/ena_maps/utils/naming.py +8 -2
  34. imap_processing/glows/ancillary/imap_glows_exclusions-by-instr-team_20250923_v002.dat +10 -0
  35. imap_processing/glows/ancillary/imap_glows_map-of-excluded-regions_20250923_v002.dat +393 -0
  36. imap_processing/glows/ancillary/imap_glows_map-of-uv-sources_20250923_v002.dat +593 -0
  37. imap_processing/glows/ancillary/imap_glows_pipeline_settings_20250923_v002.json +54 -0
  38. imap_processing/glows/ancillary/imap_glows_suspected-transients_20250923_v002.dat +10 -0
  39. imap_processing/glows/l1b/glows_l1b.py +99 -9
  40. imap_processing/glows/l1b/glows_l1b_data.py +350 -38
  41. imap_processing/glows/l2/glows_l2.py +11 -0
  42. imap_processing/hi/hi_l1a.py +124 -3
  43. imap_processing/hi/hi_l1b.py +154 -71
  44. imap_processing/hi/hi_l2.py +84 -51
  45. imap_processing/hi/utils.py +153 -8
  46. imap_processing/hit/l0/constants.py +3 -0
  47. imap_processing/hit/l0/decom_hit.py +5 -8
  48. imap_processing/hit/l1a/hit_l1a.py +375 -45
  49. imap_processing/hit/l1b/constants.py +5 -0
  50. imap_processing/hit/l1b/hit_l1b.py +61 -131
  51. imap_processing/hit/l2/constants.py +1 -1
  52. imap_processing/hit/l2/hit_l2.py +10 -11
  53. imap_processing/ialirt/calculate_ingest.py +219 -0
  54. imap_processing/ialirt/constants.py +32 -1
  55. imap_processing/ialirt/generate_coverage.py +201 -0
  56. imap_processing/ialirt/l0/ialirt_spice.py +5 -2
  57. imap_processing/ialirt/l0/parse_mag.py +337 -29
  58. imap_processing/ialirt/l0/process_hit.py +5 -3
  59. imap_processing/ialirt/l0/process_swapi.py +41 -25
  60. imap_processing/ialirt/l0/process_swe.py +23 -7
  61. imap_processing/ialirt/process_ephemeris.py +70 -14
  62. imap_processing/ialirt/utils/constants.py +22 -16
  63. imap_processing/ialirt/utils/create_xarray.py +42 -19
  64. imap_processing/idex/idex_constants.py +1 -5
  65. imap_processing/idex/idex_l0.py +2 -2
  66. imap_processing/idex/idex_l1a.py +2 -3
  67. imap_processing/idex/idex_l1b.py +2 -3
  68. imap_processing/idex/idex_l2a.py +130 -4
  69. imap_processing/idex/idex_l2b.py +313 -119
  70. imap_processing/idex/idex_utils.py +1 -3
  71. imap_processing/lo/l0/lo_apid.py +1 -0
  72. imap_processing/lo/l0/lo_science.py +25 -24
  73. imap_processing/lo/l1a/lo_l1a.py +44 -0
  74. imap_processing/lo/l1b/lo_l1b.py +3 -3
  75. imap_processing/lo/l1c/lo_l1c.py +116 -50
  76. imap_processing/lo/l2/lo_l2.py +29 -29
  77. imap_processing/lo/lo_ancillary.py +55 -0
  78. imap_processing/lo/packet_definitions/lo_xtce.xml +5359 -106
  79. imap_processing/mag/constants.py +1 -0
  80. imap_processing/mag/l1a/mag_l1a.py +1 -0
  81. imap_processing/mag/l1a/mag_l1a_data.py +26 -0
  82. imap_processing/mag/l1b/mag_l1b.py +3 -2
  83. imap_processing/mag/l1c/interpolation_methods.py +14 -15
  84. imap_processing/mag/l1c/mag_l1c.py +23 -6
  85. imap_processing/mag/l1d/__init__.py +0 -0
  86. imap_processing/mag/l1d/mag_l1d.py +176 -0
  87. imap_processing/mag/l1d/mag_l1d_data.py +725 -0
  88. imap_processing/mag/l2/__init__.py +0 -0
  89. imap_processing/mag/l2/mag_l2.py +25 -20
  90. imap_processing/mag/l2/mag_l2_data.py +199 -130
  91. imap_processing/quality_flags.py +28 -2
  92. imap_processing/spice/geometry.py +101 -36
  93. imap_processing/spice/pointing_frame.py +1 -7
  94. imap_processing/spice/repoint.py +29 -2
  95. imap_processing/spice/spin.py +32 -8
  96. imap_processing/spice/time.py +60 -19
  97. imap_processing/swapi/l1/swapi_l1.py +10 -4
  98. imap_processing/swapi/l2/swapi_l2.py +66 -24
  99. imap_processing/swapi/swapi_utils.py +1 -1
  100. imap_processing/swe/l1b/swe_l1b.py +3 -6
  101. imap_processing/ultra/constants.py +28 -3
  102. imap_processing/ultra/l0/decom_tools.py +15 -8
  103. imap_processing/ultra/l0/decom_ultra.py +35 -11
  104. imap_processing/ultra/l0/ultra_utils.py +102 -12
  105. imap_processing/ultra/l1a/ultra_l1a.py +26 -6
  106. imap_processing/ultra/l1b/cullingmask.py +6 -3
  107. imap_processing/ultra/l1b/de.py +122 -26
  108. imap_processing/ultra/l1b/extendedspin.py +29 -2
  109. imap_processing/ultra/l1b/lookup_utils.py +424 -50
  110. imap_processing/ultra/l1b/quality_flag_filters.py +23 -0
  111. imap_processing/ultra/l1b/ultra_l1b_culling.py +356 -5
  112. imap_processing/ultra/l1b/ultra_l1b_extended.py +534 -90
  113. imap_processing/ultra/l1c/helio_pset.py +127 -7
  114. imap_processing/ultra/l1c/l1c_lookup_utils.py +256 -0
  115. imap_processing/ultra/l1c/spacecraft_pset.py +90 -15
  116. imap_processing/ultra/l1c/ultra_l1c.py +6 -0
  117. imap_processing/ultra/l1c/ultra_l1c_culling.py +85 -0
  118. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +446 -341
  119. imap_processing/ultra/l2/ultra_l2.py +0 -1
  120. imap_processing/ultra/utils/ultra_l1_utils.py +40 -3
  121. imap_processing/utils.py +3 -4
  122. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/METADATA +3 -3
  123. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/RECORD +126 -126
  124. imap_processing/idex/idex_l2c.py +0 -250
  125. imap_processing/spice/kernels.py +0 -187
  126. imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_LeftSlit.csv +0 -526
  127. imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_RightSlit.csv +0 -526
  128. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_LeftSlit.csv +0 -526
  129. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_RightSlit.csv +0 -524
  130. imap_processing/ultra/lookup_tables/EgyNorm.mem.csv +0 -32769
  131. imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +0 -2
  132. imap_processing/ultra/lookup_tables/FM90_Startup1_ULTRA_IMGPARAMS_20240719.csv +0 -2
  133. imap_processing/ultra/lookup_tables/dps_grid45_compressed.cdf +0 -0
  134. imap_processing/ultra/lookup_tables/ultra45_back-pos-luts.csv +0 -4097
  135. imap_processing/ultra/lookup_tables/ultra45_tdc_norm.csv +0 -2050
  136. imap_processing/ultra/lookup_tables/ultra90_back-pos-luts.csv +0 -4097
  137. imap_processing/ultra/lookup_tables/ultra90_tdc_norm.csv +0 -2050
  138. imap_processing/ultra/lookup_tables/yadjust.csv +0 -257
  139. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/LICENSE +0 -0
  140. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/WHEEL +0 -0
  141. {imap_processing-0.17.0.dist-info → imap_processing-0.19.0.dist-info}/entry_points.txt +0 -0
@@ -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,10 +147,51 @@ 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
98
153
  Logical_source: imap_mag_l2_burst-dsrf
99
154
  Logical_source_description: IMAP Mission Burst Rate Instrument Level-2 Data in
100
- Despun Spacecraft Reference Frame.
155
+ Despun Spacecraft Reference Frame.
156
+
157
+ imap_mag_l2_norm-srf:
158
+ <<: *default
159
+ Data_type: L2_norm-srf>Level 2 normal rate data in SRF
160
+ Logical_source: imap_mag_l2_norm-srf
161
+ Logical_source_description: IMAP Mission Normal Rate Instrument Level-2 Data in
162
+ Spacecraft Reference Frame.
163
+
164
+ imap_mag_l2_burst-srf:
165
+ <<: *default
166
+ Data_type: L2_burst-srf>Level 2 burst rate data in SRF
167
+ Logical_source: imap_mag_l2_burst-srf
168
+ Logical_source_description: IMAP Mission Burst Rate Instrument Level-2 Data in
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
@@ -32,6 +32,66 @@ imap_ultra_l1a_90sensor-histogram-ena-phxtof-hi-ang:
32
32
  Logical_source: imap_ultra_l1a_90sensor-histogram-ena-phxtof-hi-ang
33
33
  Logical_source_description: IMAP-Ultra Instrument Level-1A PHxTOF Hi Angular Data.
34
34
 
35
+ imap_ultra_l1a_45sensor-histogram-ena-phxtof-hi-nrg:
36
+ <<: *instrument_base
37
+ Data_type: L1A_Histogram>Level-1A TOF
38
+ Logical_source: imap_ultra_l1a_45sensor-histogram-ena-phxtof-hi-nrg
39
+ Logical_source_description: IMAP-Ultra Instrument Level-1A PHxTOF Hi Energy Data.
40
+
41
+ imap_ultra_l1a_90sensor-histogram-ena-phxtof-hi-nrg:
42
+ <<: *instrument_base
43
+ Data_type: L1A_Histogram>Level-1A TOF
44
+ Logical_source: imap_ultra_l1a_90sensor-histogram-ena-phxtof-hi-nrg
45
+ Logical_source_description: IMAP-Ultra Instrument Level-1A PHxTOF Hi Energy Data.
46
+
47
+ imap_ultra_l1a_45sensor-histogram-ena-phxtof-hi-time:
48
+ <<: *instrument_base
49
+ Data_type: L1A_Histogram>Level-1A TOF
50
+ Logical_source: imap_ultra_l1a_45sensor-histogram-ena-phxtof-hi-time
51
+ Logical_source_description: IMAP-Ultra Instrument Level-1A PHxTOF Hi Time Data.
52
+
53
+ imap_ultra_l1a_90sensor-histogram-ena-phxtof-hi-time:
54
+ <<: *instrument_base
55
+ Data_type: L1A_Histogram>Level-1A TOF
56
+ Logical_source: imap_ultra_l1a_90sensor-histogram-ena-phxtof-hi-time
57
+ Logical_source_description: IMAP-Ultra Instrument Level-1A PHxTOF Hi Time Data.
58
+
59
+ imap_ultra_l1a_45sensor-histogram-ena-extof-hi-ang:
60
+ <<: *instrument_base
61
+ Data_type: L1A_Histogram>Level-1A TOF
62
+ Logical_source: imap_ultra_l1a_45sensor-histogram-ena-extof-hi-ang
63
+ Logical_source_description: IMAP-Ultra Instrument Level-1A ExTOF Hi Angular Data.
64
+
65
+ imap_ultra_l1a_90sensor-histogram-ena-extof-hi-ang:
66
+ <<: *instrument_base
67
+ Data_type: L1A_Histogram>Level-1A TOF
68
+ Logical_source: imap_ultra_l1a_90sensor-histogram-ena-extof-hi-ang
69
+ Logical_source_description: IMAP-Ultra Instrument Level-1A ExTOF Hi Angular Data.
70
+
71
+ imap_ultra_l1a_45sensor-histogram-ena-extof-hi-time:
72
+ <<: *instrument_base
73
+ Data_type: L1A_Histogram>Level-1A ExTOF
74
+ Logical_source: imap_ultra_l1a_45sensor-histogram-ena-extof-hi-time
75
+ Logical_source_description: IMAP-Ultra Instrument Level-1A ExTOF Hi Time Data.
76
+
77
+ imap_ultra_l1a_90sensor-histogram-ena-extof-hi-time:
78
+ <<: *instrument_base
79
+ Data_type: L1A_Histogram>Level-1A ExTOF
80
+ Logical_source: imap_ultra_l1a_90sensor-histogram-ena-extof-hi-time
81
+ Logical_source_description: IMAP-Ultra Instrument Level-1A ExTOF Hi Time Data.
82
+
83
+ imap_ultra_l1a_45sensor-histogram-ena-extof-hi-nrg:
84
+ <<: *instrument_base
85
+ Data_type: L1A_Histogram>Level-1A ExTOF
86
+ Logical_source: imap_ultra_l1a_45sensor-histogram-ena-extof-hi-nrg
87
+ Logical_source_description: IMAP-Ultra Instrument Level-1A ExTOF Hi Energy Data.
88
+
89
+ imap_ultra_l1a_90sensor-histogram-ena-extof-hi-nrg:
90
+ <<: *instrument_base
91
+ Data_type: L1A_Histogram>Level-1A ExTOF
92
+ Logical_source: imap_ultra_l1a_90sensor-histogram-ena-extof-hi-nrg
93
+ Logical_source_description: IMAP-Ultra Instrument Level-1A ExTOF Hi Energy Data.
94
+
35
95
  imap_ultra_l1a_45sensor-rates:
36
96
  <<: *instrument_base
37
97
  Data_type: L1A_Rates>Level-1A Rates
@@ -256,6 +256,20 @@ theta:
256
256
  LABLAXIS: theta
257
257
  UNITS: degrees
258
258
 
259
+ geometric_factor_blades:
260
+ <<: *default_float32
261
+ CATDESC: Ultra sensitive area within the field of view.
262
+ FIELDNAM: geometric_function_blades
263
+ LABLAXIS: geometric function blades
264
+ UNITS: " "
265
+
266
+ geometric_factor_noblades:
267
+ <<: *default_float32
268
+ CATDESC: Ultra sensitive area within the field of regard.
269
+ FIELDNAM: geometric_function_noblades
270
+ LABLAXIS: geometric function noblades
271
+ UNITS: " "
272
+
259
273
  phi_fwhm:
260
274
  <<: *default_float32
261
275
  CATDESC: FWHM of the phi distribution.
@@ -334,7 +348,8 @@ spin_start_time:
334
348
  LABLAXIS: spin start time
335
349
  # TODO: come back to format
336
350
  UNITS: s
337
- DEPEND_0: spin_number
351
+ DEPEND_0: epoch
352
+ DEPEND_1: spin_number
338
353
 
339
354
  spin_period:
340
355
  <<: *default
@@ -342,7 +357,8 @@ spin_period:
342
357
  FIELDNAM: spin_period
343
358
  LABLAXIS: spin_period
344
359
  UNITS: s
345
- DEPEND_0: spin_number
360
+ DEPEND_0: epoch
361
+ DEPEND_1: spin_number
346
362
 
347
363
  spin_rate:
348
364
  <<: *default
@@ -350,7 +366,8 @@ spin_rate:
350
366
  FIELDNAM: spin_rate
351
367
  LABLAXIS: spin_rate
352
368
  UNITS: rpm
353
- DEPEND_0: spin_number
369
+ DEPEND_0: epoch
370
+ DEPEND_1: spin_number
354
371
 
355
372
  rate_start_pulses:
356
373
  <<: *default
@@ -397,9 +414,46 @@ ena_rates:
397
414
  <<: *default_float32
398
415
  CATDESC: Rates calculated from de packet.
399
416
  FIELDNAM: ena_rates
400
- LABLAXIS: ena_rates
401
- DEPEND_0: spin_number
402
- DEPEND_1: energy_bin_geometric_mean
417
+ LABLAXIS: ena rates
418
+ DEPEND_0: epoch
419
+ DEPEND_1: spin_number
420
+ DEPEND_2: energy_bin_geometric_mean
421
+ UNITS: " "
422
+
423
+ start_pulses_per_spin:
424
+ <<: *default_float32
425
+ CATDESC: Total start pulses per spin.
426
+ FIELDNAM: start_pulses_per_spin
427
+ LABLAXIS: start pulses per spin
428
+ DEPEND_0: epoch
429
+ DEPEND_1: spin_number
430
+ UNITS: " "
431
+
432
+ stop_pulses_per_spin:
433
+ <<: *default_float32
434
+ CATDESC: Total start pulses per spin.
435
+ FIELDNAM: stop_pulses_per_spin
436
+ LABLAXIS: stop pulses per spin
437
+ DEPEND_0: epoch
438
+ DEPEND_1: spin_number
439
+ UNITS: " "
440
+
441
+ coin_pulses_per_spin:
442
+ <<: *default_float32
443
+ CATDESC: Total coincidence pulses per spin.
444
+ FIELDNAM: coin_pulses_per_spin
445
+ LABLAXIS: coin_pulses_per_spin
446
+ DEPEND_0: epoch
447
+ DEPEND_1: spin_number
448
+ UNITS: " "
449
+
450
+ rejected_events_per_spin:
451
+ <<: *default_uint16
452
+ CATDESC: Rejected events per spin.
453
+ FIELDNAM: rejected_events_per_spin
454
+ LABLAXIS: rejected events per spin
455
+ DEPEND_0: epoch
456
+ DEPEND_1: spin_number
403
457
  UNITS: " "
404
458
 
405
459
  ena_rates_threshold:
@@ -407,8 +461,9 @@ ena_rates_threshold:
407
461
  CATDESC: Rates threshold used for flagging data.
408
462
  FIELDNAM: ena_rates_threshold
409
463
  LABLAXIS: ena_rates_threshold
410
- DEPEND_0: spin_number
411
- DEPEND_1: energy_bin_geometric_mean
464
+ DEPEND_0: epoch
465
+ DEPEND_1: spin_number
466
+ DEPEND_2: energy_bin_geometric_mean
412
467
  UNITS: " "
413
468
 
414
469
  quality_ena_rates:
@@ -416,8 +471,9 @@ quality_ena_rates:
416
471
  CATDESC: Spin filter derived from Ultra ena rates. Bitwise flagging used to filter the spin.
417
472
  FIELDNAM: quality_ena_rates
418
473
  LABLAXIS: quality_ena_rates
419
- DEPEND_0: spin_number
420
- DEPEND_1: energy_bin_geometric_mean
474
+ DEPEND_0: epoch
475
+ DEPEND_1: spin_number
476
+ DEPEND_2: energy_bin_geometric_mean
421
477
  UNITS: " "
422
478
 
423
479
  quality_attitude:
@@ -427,7 +483,9 @@ quality_attitude:
427
483
  LABLAXIS: quality attitude
428
484
  # TODO: come back to format
429
485
  UNITS: " "
430
- DEPEND_0: spin_number
486
+ DEPEND_0: epoch
487
+ DEPEND_1: spin_number
488
+ DEPEND_2: energy_bin_geometric_mean
431
489
 
432
490
  quality_instruments:
433
491
  <<: *default_uint16
@@ -436,3 +494,33 @@ quality_instruments:
436
494
  LABLAXIS: quality instruments
437
495
  # TODO: come back to format
438
496
  UNITS: " "
497
+ DEPEND_0: epoch
498
+ DEPEND_1: spin_number
499
+ DEPEND_2: energy_bin_geometric_mean
500
+
501
+ quality_hk:
502
+ <<: *default_uint16
503
+ CATDESC: Spin filter derived from housekeeping data. Bitwise flagging used to filter the spin.
504
+ FIELDNAM: quality_hk
505
+ LABLAXIS: quality hk
506
+ # TODO: come back to format
507
+ UNITS: " "
508
+ DEPEND_0: epoch
509
+ DEPEND_1: spin_number
510
+ DEPEND_2: energy_bin_geometric_mean
511
+
512
+ quality_outliers:
513
+ <<: *default_uint16
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
525
+ # TODO: come back to format
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