imap-processing 0.11.0__py3-none-any.whl → 0.12.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 (288) hide show
  1. imap_processing/__init__.py +10 -11
  2. imap_processing/_version.py +2 -2
  3. imap_processing/ccsds/excel_to_xtce.py +65 -16
  4. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +6 -28
  5. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +365 -42
  6. imap_processing/cdf/config/imap_glows_global_cdf_attrs.yaml +0 -5
  7. imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +10 -11
  8. imap_processing/cdf/config/imap_hi_variable_attrs.yaml +17 -19
  9. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +26 -13
  10. imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +106 -116
  11. imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +120 -145
  12. imap_processing/cdf/config/imap_hit_l2_variable_attrs.yaml +14 -0
  13. imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +6 -9
  14. imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +1 -1
  15. imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +0 -12
  16. imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +1 -1
  17. imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +9 -21
  18. imap_processing/cdf/config/imap_mag_l1a_variable_attrs.yaml +361 -0
  19. imap_processing/cdf/config/imap_mag_l1b_variable_attrs.yaml +160 -0
  20. imap_processing/cdf/config/imap_mag_l1c_variable_attrs.yaml +160 -0
  21. imap_processing/cdf/config/imap_spacecraft_global_cdf_attrs.yaml +18 -0
  22. imap_processing/cdf/config/imap_spacecraft_variable_attrs.yaml +40 -0
  23. imap_processing/cdf/config/imap_swapi_global_cdf_attrs.yaml +1 -5
  24. imap_processing/cdf/config/imap_swe_global_cdf_attrs.yaml +12 -4
  25. imap_processing/cdf/config/imap_swe_l1a_variable_attrs.yaml +16 -2
  26. imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +48 -52
  27. imap_processing/cdf/config/imap_swe_l2_variable_attrs.yaml +71 -47
  28. imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +2 -14
  29. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +51 -2
  30. imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +29 -14
  31. imap_processing/cdf/utils.py +13 -7
  32. imap_processing/cli.py +23 -8
  33. imap_processing/codice/codice_l1a.py +207 -85
  34. imap_processing/codice/constants.py +1322 -568
  35. imap_processing/codice/decompress.py +2 -6
  36. imap_processing/ena_maps/ena_maps.py +480 -116
  37. imap_processing/ena_maps/utils/coordinates.py +19 -0
  38. imap_processing/ena_maps/utils/map_utils.py +14 -17
  39. imap_processing/ena_maps/utils/spatial_utils.py +45 -47
  40. imap_processing/hi/l1a/hi_l1a.py +24 -18
  41. imap_processing/hi/l1a/histogram.py +0 -1
  42. imap_processing/hi/l1a/science_direct_event.py +6 -8
  43. imap_processing/hi/l1b/hi_l1b.py +31 -39
  44. imap_processing/hi/l1c/hi_l1c.py +405 -17
  45. imap_processing/hi/utils.py +58 -12
  46. imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt0-factors_20250219_v002.csv +205 -0
  47. imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt1-factors_20250219_v002.csv +205 -0
  48. imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt2-factors_20250219_v002.csv +205 -0
  49. imap_processing/hit/ancillary/imap_hit_l1b-to-l2-standard-dt3-factors_20250219_v002.csv +205 -0
  50. imap_processing/hit/ancillary/imap_hit_l1b-to-l2-summed-dt0-factors_20250219_v002.csv +68 -0
  51. imap_processing/hit/hit_utils.py +173 -1
  52. imap_processing/hit/l0/constants.py +20 -11
  53. imap_processing/hit/l0/decom_hit.py +18 -4
  54. imap_processing/hit/l1a/hit_l1a.py +45 -54
  55. imap_processing/hit/l1b/constants.py +317 -0
  56. imap_processing/hit/l1b/hit_l1b.py +367 -18
  57. imap_processing/hit/l2/constants.py +281 -0
  58. imap_processing/hit/l2/hit_l2.py +614 -0
  59. imap_processing/hit/packet_definitions/hit_packet_definitions.xml +1323 -71
  60. imap_processing/ialirt/l0/mag_l0_ialirt_data.py +155 -0
  61. imap_processing/ialirt/l0/parse_mag.py +246 -0
  62. imap_processing/ialirt/l0/process_swe.py +252 -0
  63. imap_processing/ialirt/packet_definitions/ialirt.xml +7 -3
  64. imap_processing/ialirt/packet_definitions/ialirt_mag.xml +115 -0
  65. imap_processing/ialirt/utils/grouping.py +114 -0
  66. imap_processing/ialirt/utils/time.py +29 -0
  67. imap_processing/idex/atomic_masses.csv +22 -0
  68. imap_processing/idex/decode.py +2 -2
  69. imap_processing/idex/idex_constants.py +25 -0
  70. imap_processing/idex/idex_l1a.py +6 -7
  71. imap_processing/idex/idex_l1b.py +4 -31
  72. imap_processing/idex/idex_l2a.py +789 -0
  73. imap_processing/idex/idex_variable_unpacking_and_eu_conversion.csv +39 -33
  74. imap_processing/lo/l0/lo_science.py +6 -0
  75. imap_processing/lo/l1a/lo_l1a.py +0 -1
  76. imap_processing/lo/l1b/lo_l1b.py +177 -25
  77. imap_processing/mag/constants.py +8 -0
  78. imap_processing/mag/imap_mag_sdc-configuration_v001.yaml +6 -0
  79. imap_processing/mag/l0/decom_mag.py +10 -3
  80. imap_processing/mag/l1a/mag_l1a.py +22 -11
  81. imap_processing/mag/l1a/mag_l1a_data.py +28 -3
  82. imap_processing/mag/l1b/mag_l1b.py +190 -48
  83. imap_processing/mag/l1c/interpolation_methods.py +211 -0
  84. imap_processing/mag/l1c/mag_l1c.py +447 -9
  85. imap_processing/quality_flags.py +1 -0
  86. imap_processing/spacecraft/packet_definitions/scid_x252.xml +538 -0
  87. imap_processing/spacecraft/quaternions.py +123 -0
  88. imap_processing/spice/geometry.py +16 -19
  89. imap_processing/spice/repoint.py +120 -0
  90. imap_processing/swapi/l1/swapi_l1.py +4 -0
  91. imap_processing/swapi/l2/swapi_l2.py +0 -1
  92. imap_processing/swe/l1a/swe_l1a.py +47 -8
  93. imap_processing/swe/l1a/swe_science.py +5 -2
  94. imap_processing/swe/l1b/swe_l1b_science.py +103 -56
  95. imap_processing/swe/l2/swe_l2.py +60 -65
  96. imap_processing/swe/packet_definitions/swe_packet_definition.xml +1121 -1
  97. imap_processing/swe/utils/swe_constants.py +63 -0
  98. imap_processing/swe/utils/swe_utils.py +85 -28
  99. imap_processing/tests/ccsds/test_data/expected_output.xml +40 -1
  100. imap_processing/tests/ccsds/test_excel_to_xtce.py +23 -20
  101. imap_processing/tests/cdf/test_data/imap_instrument2_global_cdf_attrs.yaml +0 -2
  102. imap_processing/tests/codice/conftest.py +1 -1
  103. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-counters-aggregated_20241110193700_v0.0.0.cdf +0 -0
  104. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-counters-singles_20241110193700_v0.0.0.cdf +0 -0
  105. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-ialirt_20241110193700_v0.0.0.cdf +0 -0
  106. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-omni_20241110193700_v0.0.0.cdf +0 -0
  107. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-pha_20241110193700_v0.0.0.cdf +0 -0
  108. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-priorities_20241110193700_v0.0.0.cdf +0 -0
  109. imap_processing/tests/codice/data/validation/imap_codice_l1a_hi-sectored_20241110193700_v0.0.0.cdf +0 -0
  110. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-counters-aggregated_20241110193700_v0.0.0.cdf +0 -0
  111. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-counters-singles_20241110193700_v0.0.0.cdf +0 -0
  112. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-ialirt_20241110193700_v0.0.0.cdf +0 -0
  113. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-angular_20241110193700_v0.0.0.cdf +0 -0
  114. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-priority_20241110193700_v0.0.0.cdf +0 -0
  115. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-nsw-species_20241110193700_v0.0.0.cdf +0 -0
  116. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-pha_20241110193700_v0.0.0.cdf +0 -0
  117. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-angular_20241110193700_v0.0.0.cdf +0 -0
  118. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-priority_20241110193700_v0.0.0.cdf +0 -0
  119. imap_processing/tests/codice/data/validation/imap_codice_l1a_lo-sw-species_20241110193700_v0.0.0.cdf +0 -0
  120. imap_processing/tests/codice/test_codice_l1a.py +110 -46
  121. imap_processing/tests/codice/test_decompress.py +4 -4
  122. imap_processing/tests/conftest.py +166 -10
  123. imap_processing/tests/ena_maps/conftest.py +51 -0
  124. imap_processing/tests/ena_maps/test_ena_maps.py +638 -109
  125. imap_processing/tests/ena_maps/test_map_utils.py +66 -43
  126. imap_processing/tests/ena_maps/test_spatial_utils.py +16 -20
  127. imap_processing/tests/hi/data/l0/H45_diag_fee_20250208.bin +0 -0
  128. imap_processing/tests/hi/data/l0/H45_diag_fee_20250208_verify.csv +205 -0
  129. imap_processing/tests/hi/test_hi_l1b.py +12 -15
  130. imap_processing/tests/hi/test_hi_l1c.py +234 -6
  131. imap_processing/tests/hi/test_l1a.py +30 -0
  132. imap_processing/tests/hi/test_science_direct_event.py +1 -1
  133. imap_processing/tests/hi/test_utils.py +24 -2
  134. imap_processing/tests/hit/helpers/l1_validation.py +39 -39
  135. imap_processing/tests/hit/test_data/hskp_sample.ccsds +0 -0
  136. imap_processing/tests/hit/test_data/imap_hit_l0_raw_20100105_v001.pkts +0 -0
  137. imap_processing/tests/hit/test_decom_hit.py +4 -0
  138. imap_processing/tests/hit/test_hit_l1a.py +24 -28
  139. imap_processing/tests/hit/test_hit_l1b.py +304 -40
  140. imap_processing/tests/hit/test_hit_l2.py +454 -0
  141. imap_processing/tests/hit/test_hit_utils.py +112 -2
  142. imap_processing/tests/hit/validation_data/hskp_sample_eu_3_6_2025.csv +89 -0
  143. imap_processing/tests/hit/validation_data/hskp_sample_raw.csv +89 -88
  144. imap_processing/tests/ialirt/test_data/l0/461971383-404.bin +0 -0
  145. imap_processing/tests/ialirt/test_data/l0/461971384-405.bin +0 -0
  146. imap_processing/tests/ialirt/test_data/l0/461971385-406.bin +0 -0
  147. imap_processing/tests/ialirt/test_data/l0/461971386-407.bin +0 -0
  148. imap_processing/tests/ialirt/test_data/l0/461971387-408.bin +0 -0
  149. imap_processing/tests/ialirt/test_data/l0/461971388-409.bin +0 -0
  150. imap_processing/tests/ialirt/test_data/l0/461971389-410.bin +0 -0
  151. imap_processing/tests/ialirt/test_data/l0/461971390-411.bin +0 -0
  152. imap_processing/tests/ialirt/test_data/l0/461971391-412.bin +0 -0
  153. imap_processing/tests/ialirt/test_data/l0/sample_decoded_i-alirt_data.csv +383 -0
  154. imap_processing/tests/ialirt/unit/test_grouping.py +81 -0
  155. imap_processing/tests/ialirt/unit/test_parse_mag.py +168 -0
  156. imap_processing/tests/ialirt/unit/test_process_swe.py +208 -3
  157. imap_processing/tests/ialirt/unit/test_time.py +16 -0
  158. imap_processing/tests/idex/conftest.py +62 -6
  159. imap_processing/tests/idex/test_data/imap_idex_l0_raw_20231218_v001.pkts +0 -0
  160. imap_processing/tests/idex/test_data/impact_14_tof_high_data.txt +4508 -4508
  161. imap_processing/tests/idex/test_idex_l1a.py +48 -4
  162. imap_processing/tests/idex/test_idex_l1b.py +3 -3
  163. imap_processing/tests/idex/test_idex_l2a.py +383 -0
  164. imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20241022_v002.cdf +0 -0
  165. imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20241022_v002.cdf +0 -0
  166. imap_processing/tests/lo/test_lo_l1b.py +148 -4
  167. imap_processing/tests/lo/test_lo_science.py +1 -0
  168. imap_processing/tests/mag/conftest.py +69 -0
  169. imap_processing/tests/mag/test_mag_decom.py +1 -1
  170. imap_processing/tests/mag/test_mag_l1a.py +38 -0
  171. imap_processing/tests/mag/test_mag_l1b.py +34 -53
  172. imap_processing/tests/mag/test_mag_l1c.py +251 -20
  173. imap_processing/tests/mag/test_mag_validation.py +109 -25
  174. imap_processing/tests/mag/validation/L1b/T009/MAGScience-normal-(2,2)-8s-20250204-16h39.csv +17 -0
  175. imap_processing/tests/mag/validation/L1b/T009/mag-l1a-l1b-t009-magi-out.csv +16 -16
  176. imap_processing/tests/mag/validation/L1b/T009/mag-l1a-l1b-t009-mago-out.csv +16 -16
  177. imap_processing/tests/mag/validation/L1b/T010/MAGScience-normal-(2,2)-8s-20250206-12h05.csv +17 -0
  178. imap_processing/tests/mag/validation/L1b/T011/MAGScience-normal-(2,2)-8s-20250204-16h08.csv +17 -0
  179. imap_processing/tests/mag/validation/L1b/T011/mag-l1a-l1b-t011-magi-out.csv +16 -16
  180. imap_processing/tests/mag/validation/L1b/T011/mag-l1a-l1b-t011-mago-out.csv +16 -16
  181. imap_processing/tests/mag/validation/L1b/T012/MAGScience-normal-(2,2)-8s-20250204-16h08.csv +17 -0
  182. imap_processing/tests/mag/validation/L1b/T012/data.bin +0 -0
  183. imap_processing/tests/mag/validation/L1b/T012/field_like_all_ranges.txt +19200 -0
  184. imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-cal.cdf +0 -0
  185. imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-in.csv +17 -0
  186. imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-magi-out.csv +17 -0
  187. imap_processing/tests/mag/validation/L1b/T012/mag-l1a-l1b-t012-mago-out.csv +17 -0
  188. imap_processing/tests/mag/validation/imap_calibration_mag_20240229_v01.cdf +0 -0
  189. imap_processing/tests/spacecraft/__init__.py +0 -0
  190. imap_processing/tests/spacecraft/data/SSR_2024_190_20_08_12_0483851794_2_DA_apid0594_1packet.pkts +0 -0
  191. imap_processing/tests/spacecraft/test_quaternions.py +71 -0
  192. imap_processing/tests/spice/test_data/fake_repoint_data.csv +5 -0
  193. imap_processing/tests/spice/test_geometry.py +6 -9
  194. imap_processing/tests/spice/test_repoint.py +111 -0
  195. imap_processing/tests/swapi/test_swapi_l1.py +7 -3
  196. imap_processing/tests/swe/l0_data/2024051010_SWE_HK_packet.bin +0 -0
  197. imap_processing/tests/swe/l0_data/2024051011_SWE_CEM_RAW_packet.bin +0 -0
  198. imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_APP_HK_20240510_092742.csv +49 -0
  199. imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_CEM_RAW_20240510_092742.csv +593 -0
  200. imap_processing/tests/swe/test_swe_l1a.py +18 -0
  201. imap_processing/tests/swe/test_swe_l1a_cem_raw.py +52 -0
  202. imap_processing/tests/swe/test_swe_l1a_hk.py +68 -0
  203. imap_processing/tests/swe/test_swe_l1b_science.py +23 -4
  204. imap_processing/tests/swe/test_swe_l2.py +112 -30
  205. imap_processing/tests/test_cli.py +2 -2
  206. imap_processing/tests/test_utils.py +138 -16
  207. imap_processing/tests/ultra/data/l0/FM45_UltraFM45_Functional_2024-01-22T0105_20240122T010548.CCSDS +0 -0
  208. imap_processing/tests/ultra/data/l0/ultra45_raw_sc_ultraimgrates_20220530_00.csv +164 -0
  209. imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3243 -3243
  210. imap_processing/tests/ultra/data/mock_data.py +341 -0
  211. imap_processing/tests/ultra/unit/conftest.py +69 -26
  212. imap_processing/tests/ultra/unit/test_badtimes.py +2 -0
  213. imap_processing/tests/ultra/unit/test_cullingmask.py +4 -0
  214. imap_processing/tests/ultra/unit/test_de.py +12 -4
  215. imap_processing/tests/ultra/unit/test_decom_apid_881.py +44 -0
  216. imap_processing/tests/ultra/unit/test_spacecraft_pset.py +78 -0
  217. imap_processing/tests/ultra/unit/test_ultra_l1a.py +28 -12
  218. imap_processing/tests/ultra/unit/test_ultra_l1b.py +34 -6
  219. imap_processing/tests/ultra/unit/test_ultra_l1b_culling.py +22 -26
  220. imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +86 -51
  221. imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +94 -52
  222. imap_processing/ultra/l0/decom_tools.py +6 -5
  223. imap_processing/ultra/l1a/ultra_l1a.py +28 -56
  224. imap_processing/ultra/l1b/de.py +72 -28
  225. imap_processing/ultra/l1b/extendedspin.py +12 -14
  226. imap_processing/ultra/l1b/ultra_l1b.py +34 -9
  227. imap_processing/ultra/l1b/ultra_l1b_culling.py +65 -29
  228. imap_processing/ultra/l1b/ultra_l1b_extended.py +64 -19
  229. imap_processing/ultra/l1c/spacecraft_pset.py +86 -0
  230. imap_processing/ultra/l1c/ultra_l1c.py +7 -4
  231. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +112 -61
  232. imap_processing/ultra/lookup_tables/ultra_90_dps_exposure_compressed.cdf +0 -0
  233. imap_processing/ultra/utils/ultra_l1_utils.py +20 -2
  234. imap_processing/utils.py +68 -28
  235. {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/METADATA +8 -5
  236. {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/RECORD +250 -199
  237. imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +0 -237
  238. imap_processing/hi/l1a/housekeeping.py +0 -27
  239. imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-aggregated_20240429_v001.cdf +0 -0
  240. imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-singles_20240429_v001.cdf +0 -0
  241. imap_processing/tests/codice/data/imap_codice_l1a_hi-omni_20240429_v001.cdf +0 -0
  242. imap_processing/tests/codice/data/imap_codice_l1a_hi-sectored_20240429_v001.cdf +0 -0
  243. imap_processing/tests/codice/data/imap_codice_l1a_hskp_20100101_v001.cdf +0 -0
  244. imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-aggregated_20240429_v001.cdf +0 -0
  245. imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-singles_20240429_v001.cdf +0 -0
  246. imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-angular_20240429_v001.cdf +0 -0
  247. imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-priority_20240429_v001.cdf +0 -0
  248. imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-species_20240429_v001.cdf +0 -0
  249. imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-angular_20240429_v001.cdf +0 -0
  250. imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-priority_20240429_v001.cdf +0 -0
  251. imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-species_20240429_v001.cdf +0 -0
  252. imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-aggregated_20240429_v001.cdf +0 -0
  253. imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-singles_20240429_v001.cdf +0 -0
  254. imap_processing/tests/codice/data/imap_codice_l1b_hi-omni_20240429_v001.cdf +0 -0
  255. imap_processing/tests/codice/data/imap_codice_l1b_hi-sectored_20240429_v001.cdf +0 -0
  256. imap_processing/tests/codice/data/imap_codice_l1b_hskp_20100101_v001.cdf +0 -0
  257. imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-aggregated_20240429_v001.cdf +0 -0
  258. imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-singles_20240429_v001.cdf +0 -0
  259. imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-angular_20240429_v001.cdf +0 -0
  260. imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-priority_20240429_v001.cdf +0 -0
  261. imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-species_20240429_v001.cdf +0 -0
  262. imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-angular_20240429_v001.cdf +0 -0
  263. imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-priority_20240429_v001.cdf +0 -0
  264. imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-species_20240429_v001.cdf +0 -0
  265. imap_processing/tests/hi/data/l1/imap_hi_l1b_45sensor-de_20250415_v999.cdf +0 -0
  266. imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1251.pkts +0 -0
  267. imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1252.pkts +0 -0
  268. imap_processing/tests/hit/validation_data/hskp_sample_eu.csv +0 -89
  269. imap_processing/tests/hit/validation_data/sci_sample_raw1.csv +0 -29
  270. imap_processing/tests/idex/test_data/imap_idex_l0_raw_20231214_v001.pkts +0 -0
  271. imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20100101_v001.cdf +0 -0
  272. imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20100101_v001.cdf +0 -0
  273. imap_processing/tests/ultra/test_data/mock_data.py +0 -161
  274. imap_processing/ultra/l1c/pset.py +0 -40
  275. /imap_processing/tests/ultra/{test_data → data}/l0/FM45_40P_Phi28p5_BeamCal_LinearScan_phi28.50_theta-0.00_20240207T102740.CCSDS +0 -0
  276. /imap_processing/tests/ultra/{test_data → data}/l0/FM45_7P_Phi0.0_BeamCal_LinearScan_phi0.04_theta-0.01_20230821T121304.CCSDS +0 -0
  277. /imap_processing/tests/ultra/{test_data → data}/l0/FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.CCSDS +0 -0
  278. /imap_processing/tests/ultra/{test_data → data}/l0/Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.CCSDS +0 -0
  279. /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_auxdata_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +0 -0
  280. /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_enaphxtofhangimg_FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.csv +0 -0
  281. /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultraimgrates_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +0 -0
  282. /imap_processing/tests/ultra/{test_data → data}/l0/ultra45_raw_sc_ultrarawimgevent_FM45_7P_Phi00_BeamCal_LinearScan_phi004_theta-001_20230821T121304.csv +0 -0
  283. /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E1.cdf +0 -0
  284. /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E12.cdf +0 -0
  285. /imap_processing/tests/ultra/{test_data → data}/l1/dps_exposure_helio_45_E24.cdf +0 -0
  286. {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/LICENSE +0 -0
  287. {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/WHEEL +0 -0
  288. {imap_processing-0.11.0.dist-info → imap_processing-0.12.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,281 @@
1
+ """HIT L2 constants."""
2
+
3
+ from imap_processing import imap_module_directory
4
+
5
+ L2_STANDARD_ANCILLARY_PATH_PREFIX = (
6
+ imap_module_directory / "hit/ancillary/imap_hit_l1b-to-l2-standard-dt"
7
+ )
8
+ L2_SUMMED_ANCILLARY_PATH_PREFIX = (
9
+ imap_module_directory / "hit/ancillary/imap_hit_l1b-to-l2-summed-dt"
10
+ )
11
+
12
+ # Particle energy range mapping for HIT L2 standard intensity product.
13
+ # The standard intensity calculation requires the L1B foreground rates to
14
+ # be summed by particle type, energy range, and detector penetration range
15
+ # (Range 2, Range 3, and Range 4).
16
+ # See section 7.1.1 and equation 9 in the algorithm document for more details.
17
+
18
+ # The rates to sum are in the L2FGRATES, L3FGRATES, and PENFGRATES data
19
+ # variables in the L1B standard rates product. These variables represent
20
+ # different detector ranges for each particle type and energy range.
21
+
22
+ # Indices at each detector range are provided for each particle type
23
+ # and energy range in the dictionary below and the rates at these indices will be
24
+ # summed in L2 processing to produce the standard intensity product.
25
+ # R2 = Indices for Range 2 (L2FGRATES)
26
+ # R3 = Indices for Range 3 (L3FGRATES)
27
+ # R4 = Indices for Range 4 (PENFGRATES)
28
+ # energy_units: MeV/n
29
+
30
+ STANDARD_PARTICLE_ENERGY_RANGE_MAPPING = {
31
+ "h": [
32
+ {"energy_min": 1.8, "energy_max": 2.2, "R2": [1], "R3": [], "R4": []},
33
+ {"energy_min": 2.2, "energy_max": 2.7, "R2": [2], "R3": [], "R4": []},
34
+ {"energy_min": 2.7, "energy_max": 3.2, "R2": [3], "R3": [], "R4": []},
35
+ {"energy_min": 3.2, "energy_max": 3.6, "R2": [4], "R3": [1], "R4": []},
36
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [5], "R3": [2], "R4": []},
37
+ {"energy_min": 4.0, "energy_max": 4.5, "R2": [6], "R3": [3], "R4": []},
38
+ {"energy_min": 4.5, "energy_max": 5.0, "R2": [7], "R3": [4], "R4": []},
39
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [], "R3": [5], "R4": []},
40
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [], "R3": [6], "R4": []},
41
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [], "R3": [7], "R4": []},
42
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [], "R3": [8], "R4": []},
43
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [], "R3": [9], "R4": [1]},
44
+ ],
45
+ "he3": [
46
+ {"energy_min": 2.2, "energy_max": 2.7, "R2": [10], "R3": [], "R4": []},
47
+ {"energy_min": 2.7, "energy_max": 3.2, "R2": [11], "R3": [], "R4": []},
48
+ {"energy_min": 3.2, "energy_max": 3.6, "R2": [12], "R3": [], "R4": []},
49
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [13], "R3": [], "R4": []},
50
+ {"energy_min": 4.0, "energy_max": 4.5, "R2": [14], "R3": [12], "R4": []},
51
+ {"energy_min": 4.5, "energy_max": 5.0, "R2": [15], "R3": [13], "R4": []},
52
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [16], "R3": [14], "R4": []},
53
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [], "R3": [15], "R4": []},
54
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [], "R3": [16], "R4": []},
55
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [], "R3": [17], "R4": []},
56
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [], "R3": [18], "R4": []},
57
+ ],
58
+ "he4": [
59
+ {"energy_min": 1.8, "energy_max": 2.2, "R2": [19], "R3": [], "R4": []},
60
+ {"energy_min": 2.2, "energy_max": 2.7, "R2": [20], "R3": [], "R4": []},
61
+ {"energy_min": 2.7, "energy_max": 3.2, "R2": [21], "R3": [], "R4": []},
62
+ {"energy_min": 3.2, "energy_max": 3.6, "R2": [22], "R3": [21], "R4": []},
63
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [23], "R3": [22], "R4": []},
64
+ {"energy_min": 4.0, "energy_max": 4.5, "R2": [24], "R3": [23], "R4": []},
65
+ {"energy_min": 4.5, "energy_max": 5.0, "R2": [25], "R3": [24], "R4": []},
66
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [], "R3": [25], "R4": []},
67
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [], "R3": [26], "R4": []},
68
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [], "R3": [27], "R4": []},
69
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [], "R3": [28], "R4": []},
70
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [], "R3": [29], "R4": [4]},
71
+ ],
72
+ "he": [
73
+ {"energy_min": 2.2, "energy_max": 2.7, "R2": [10, 20], "R3": [], "R4": []},
74
+ {"energy_min": 2.7, "energy_max": 3.2, "R2": [11, 21], "R3": [], "R4": []},
75
+ {"energy_min": 3.2, "energy_max": 3.6, "R2": [22], "R3": [21], "R4": []},
76
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [23], "R3": [22], "R4": []},
77
+ {
78
+ "energy_min": 4.0,
79
+ "energy_max": 4.5,
80
+ "R2": [14, 24],
81
+ "R3": [12, 23],
82
+ "R4": [],
83
+ },
84
+ {
85
+ "energy_min": 4.5,
86
+ "energy_max": 5.0,
87
+ "R2": [15, 25],
88
+ "R3": [13, 24],
89
+ "R4": [],
90
+ },
91
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [], "R3": [14, 25], "R4": []},
92
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [], "R3": [15, 26], "R4": []},
93
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [], "R3": [16, 27], "R4": []},
94
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [], "R3": [17, 28], "R4": []},
95
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [], "R3": [29], "R4": [4]},
96
+ ],
97
+ "c": [
98
+ {"energy_min": 3.2, "energy_max": 3.6, "R2": [28], "R3": [], "R4": []},
99
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [29], "R3": [], "R4": []},
100
+ {"energy_min": 4.0, "energy_max": 4.5, "R2": [30], "R3": [], "R4": []},
101
+ {"energy_min": 4.5, "energy_max": 5.0, "R2": [31], "R3": [32], "R4": []},
102
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [32], "R3": [33], "R4": []},
103
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [33], "R3": [34], "R4": []},
104
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [34], "R3": [35], "R4": []},
105
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [], "R3": [36], "R4": []},
106
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [], "R3": [37], "R4": []},
107
+ {"energy_min": 15.0, "energy_max": 21.0, "R2": [], "R3": [38], "R4": []},
108
+ {"energy_min": 21.0, "energy_max": 27.0, "R2": [], "R3": [39], "R4": [7]},
109
+ {"energy_min": 27.0, "energy_max": 33.0, "R2": [], "R3": [40], "R4": [8]},
110
+ ],
111
+ "n": [
112
+ {"energy_min": 3.2, "energy_max": 3.6, "R2": [37], "R3": [], "R4": []},
113
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [38], "R3": [], "R4": []},
114
+ {"energy_min": 4.0, "energy_max": 4.5, "R2": [39], "R3": [], "R4": []},
115
+ {"energy_min": 4.5, "energy_max": 5.0, "R2": [40], "R3": [], "R4": []},
116
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [41], "R3": [43], "R4": []},
117
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [42], "R3": [44], "R4": []},
118
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [43], "R3": [45], "R4": []},
119
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [], "R3": [46], "R4": []},
120
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [], "R3": [47], "R4": []},
121
+ {"energy_min": 15.0, "energy_max": 21.0, "R2": [], "R3": [48], "R4": []},
122
+ {"energy_min": 21.0, "energy_max": 27.0, "R2": [], "R3": [49], "R4": [11]},
123
+ {"energy_min": 27.0, "energy_max": 33.0, "R2": [], "R3": [50], "R4": [12]},
124
+ ],
125
+ "o": [
126
+ {"energy_min": 3.2, "energy_max": 3.6, "R2": [46], "R3": [], "R4": []},
127
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [47], "R3": [], "R4": []},
128
+ {"energy_min": 4.0, "energy_max": 4.5, "R2": [48], "R3": [], "R4": []},
129
+ {"energy_min": 4.5, "energy_max": 5.0, "R2": [49], "R3": [], "R4": []},
130
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [50], "R3": [53], "R4": []},
131
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [51], "R3": [54], "R4": []},
132
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [52], "R3": [55], "R4": []},
133
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [], "R3": [56], "R4": []},
134
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [], "R3": [57], "R4": []},
135
+ {"energy_min": 15.0, "energy_max": 21.0, "R2": [], "R3": [58], "R4": []},
136
+ {"energy_min": 21.0, "energy_max": 27.0, "R2": [], "R3": [59], "R4": []},
137
+ {"energy_min": 27.0, "energy_max": 33.0, "R2": [], "R3": [60], "R4": [15]},
138
+ ],
139
+ "ne": [
140
+ {"energy_min": 3.2, "energy_max": 3.6, "R2": [55], "R3": [], "R4": []},
141
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [56], "R3": [], "R4": []},
142
+ {"energy_min": 4.0, "energy_max": 4.5, "R2": [57], "R3": [], "R4": []},
143
+ {"energy_min": 4.5, "energy_max": 5.0, "R2": [58], "R3": [], "R4": []},
144
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [59], "R3": [], "R4": []},
145
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [60], "R3": [63], "R4": []},
146
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [61], "R3": [64], "R4": []},
147
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [], "R3": [65], "R4": []},
148
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [], "R3": [66], "R4": []},
149
+ {"energy_min": 15.0, "energy_max": 21.0, "R2": [], "R3": [67], "R4": []},
150
+ {"energy_min": 21.0, "energy_max": 27.0, "R2": [], "R3": [68], "R4": []},
151
+ {"energy_min": 27.0, "energy_max": 33.0, "R2": [], "R3": [69], "R4": [18]},
152
+ {"energy_min": 33.0, "energy_max": 40.0, "R2": [], "R3": [70], "R4": [19]},
153
+ ],
154
+ "na": [
155
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [], "R3": [73], "R4": []},
156
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [], "R3": [74], "R4": []},
157
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [], "R3": [75], "R4": []},
158
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [], "R3": [76], "R4": []},
159
+ {"energy_min": 15.0, "energy_max": 21.0, "R2": [], "R3": [77], "R4": []},
160
+ {"energy_min": 21.0, "energy_max": 27.0, "R2": [], "R3": [78], "R4": []},
161
+ {"energy_min": 27.0, "energy_max": 33.0, "R2": [], "R3": [79], "R4": []},
162
+ {"energy_min": 33.0, "energy_max": 40.0, "R2": [], "R3": [80], "R4": []},
163
+ ],
164
+ "mg": [
165
+ {"energy_min": 3.2, "energy_max": 3.6, "R2": [65], "R3": [], "R4": []},
166
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [66], "R3": [], "R4": []},
167
+ {"energy_min": 4.0, "energy_max": 4.5, "R2": [67], "R3": [], "R4": []},
168
+ {"energy_min": 4.5, "energy_max": 5.0, "R2": [68], "R3": [], "R4": []},
169
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [69], "R3": [], "R4": []},
170
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [70], "R3": [83], "R4": []},
171
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [71], "R3": [84], "R4": []},
172
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [72], "R3": [85], "R4": []},
173
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [73], "R3": [86], "R4": []},
174
+ {"energy_min": 15.0, "energy_max": 21.0, "R2": [], "R3": [87], "R4": []},
175
+ {"energy_min": 21.0, "energy_max": 27.0, "R2": [], "R3": [88], "R4": []},
176
+ {"energy_min": 27.0, "energy_max": 33.0, "R2": [], "R3": [89], "R4": []},
177
+ {"energy_min": 33.0, "energy_max": 40.0, "R2": [], "R3": [90], "R4": [22]},
178
+ {"energy_min": 40.0, "energy_max": 52.0, "R2": [], "R3": [], "R4": [23]},
179
+ ],
180
+ "al": [
181
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [], "R3": [94], "R4": []},
182
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [], "R3": [95], "R4": []},
183
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [], "R3": [96], "R4": []},
184
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [], "R3": [97], "R4": []},
185
+ {"energy_min": 15.0, "energy_max": 21.0, "R2": [], "R3": [98], "R4": []},
186
+ {"energy_min": 21.0, "energy_max": 27.0, "R2": [], "R3": [99], "R4": []},
187
+ {"energy_min": 27.0, "energy_max": 33.0, "R2": [], "R3": [100], "R4": []},
188
+ {"energy_min": 33.0, "energy_max": 40.0, "R2": [], "R3": [101], "R4": []},
189
+ {"energy_min": 40.0, "energy_max": 52.0, "R2": [], "R3": [102], "R4": []},
190
+ ],
191
+ "si": [
192
+ {"energy_min": 3.2, "energy_max": 3.6, "R2": [76], "R3": [], "R4": []},
193
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [77], "R3": [], "R4": []},
194
+ {"energy_min": 4.0, "energy_max": 4.5, "R2": [78], "R3": [], "R4": []},
195
+ {"energy_min": 4.5, "energy_max": 5.0, "R2": [79], "R3": [], "R4": []},
196
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [80], "R3": [], "R4": []},
197
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [81], "R3": [105], "R4": []},
198
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [82], "R3": [106], "R4": []},
199
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [83], "R3": [107], "R4": []},
200
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [84], "R3": [108], "R4": []},
201
+ {"energy_min": 15.0, "energy_max": 21.0, "R2": [], "R3": [109], "R4": []},
202
+ {"energy_min": 21.0, "energy_max": 27.0, "R2": [], "R3": [110], "R4": []},
203
+ {"energy_min": 27.0, "energy_max": 33.0, "R2": [], "R3": [111], "R4": []},
204
+ {"energy_min": 33.0, "energy_max": 40.0, "R2": [], "R3": [112], "R4": [26]},
205
+ {"energy_min": 40.0, "energy_max": 52.0, "R2": [], "R3": [113], "R4": [27]},
206
+ ],
207
+ "s": [
208
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [87], "R3": [], "R4": []},
209
+ {"energy_min": 4.0, "energy_max": 4.5, "R2": [88], "R3": [], "R4": []},
210
+ {"energy_min": 4.5, "energy_max": 5.0, "R2": [89], "R3": [], "R4": []},
211
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [90], "R3": [], "R4": []},
212
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [91], "R3": [116], "R4": []},
213
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [92], "R3": [117], "R4": []},
214
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [93], "R3": [118], "R4": []},
215
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [94], "R3": [119], "R4": []},
216
+ {"energy_min": 15.0, "energy_max": 21.0, "R2": [], "R3": [120], "R4": []},
217
+ {"energy_min": 21.0, "energy_max": 27.0, "R2": [], "R3": [121], "R4": []},
218
+ {"energy_min": 27.0, "energy_max": 33.0, "R2": [], "R3": [122], "R4": []},
219
+ {"energy_min": 33.0, "energy_max": 40.0, "R2": [], "R3": [123], "R4": []},
220
+ {"energy_min": 40.0, "energy_max": 52.0, "R2": [], "R3": [124], "R4": []},
221
+ ],
222
+ "ar": [
223
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [97], "R3": [], "R4": []},
224
+ {"energy_min": 4.0, "energy_max": 4.5, "R2": [98], "R3": [], "R4": []},
225
+ {"energy_min": 4.5, "energy_max": 5.0, "R2": [99], "R3": [], "R4": []},
226
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [100], "R3": [], "R4": []},
227
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [101], "R3": [127], "R4": []},
228
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [102], "R3": [128], "R4": []},
229
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [103], "R3": [129], "R4": []},
230
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [104], "R3": [130], "R4": []},
231
+ {"energy_min": 15.0, "energy_max": 21.0, "R2": [105], "R3": [131], "R4": []},
232
+ {"energy_min": 21.0, "energy_max": 27.0, "R2": [], "R3": [132], "R4": []},
233
+ {"energy_min": 27.0, "energy_max": 33.0, "R2": [], "R3": [133], "R4": []},
234
+ {"energy_min": 33.0, "energy_max": 40.0, "R2": [], "R3": [134], "R4": []},
235
+ {"energy_min": 40.0, "energy_max": 52.0, "R2": [], "R3": [135], "R4": []},
236
+ ],
237
+ "ca": [
238
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [108], "R3": [], "R4": []},
239
+ {"energy_min": 4.0, "energy_max": 4.5, "R2": [109], "R3": [], "R4": []},
240
+ {"energy_min": 4.5, "energy_max": 5.0, "R2": [110], "R3": [], "R4": []},
241
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [111], "R3": [], "R4": []},
242
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [112], "R3": [], "R4": []},
243
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [113], "R3": [138], "R4": []},
244
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [114], "R3": [139], "R4": []},
245
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [115], "R3": [140], "R4": []},
246
+ {"energy_min": 15.0, "energy_max": 21.0, "R2": [116], "R3": [141], "R4": []},
247
+ {"energy_min": 21.0, "energy_max": 27.0, "R2": [], "R3": [142], "R4": []},
248
+ {"energy_min": 27.0, "energy_max": 33.0, "R2": [], "R3": [143], "R4": []},
249
+ {"energy_min": 33.0, "energy_max": 40.0, "R2": [], "R3": [144], "R4": []},
250
+ {"energy_min": 40.0, "energy_max": 52.0, "R2": [], "R3": [145], "R4": []},
251
+ ],
252
+ "fe": [
253
+ {"energy_min": 2.7, "energy_max": 3.2, "R2": [119], "R3": [], "R4": []},
254
+ {"energy_min": 3.2, "energy_max": 3.6, "R2": [120], "R3": [], "R4": []},
255
+ {"energy_min": 3.6, "energy_max": 4.0, "R2": [121], "R3": [], "R4": []},
256
+ {"energy_min": 4.0, "energy_max": 4.5, "R2": [122], "R3": [], "R4": []},
257
+ {"energy_min": 4.5, "energy_max": 5.0, "R2": [123], "R3": [], "R4": []},
258
+ {"energy_min": 5.0, "energy_max": 6.0, "R2": [124], "R3": [], "R4": []},
259
+ {"energy_min": 6.0, "energy_max": 8.0, "R2": [125], "R3": [], "R4": []},
260
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [126], "R3": [148], "R4": []},
261
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [127], "R3": [149], "R4": []},
262
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [128], "R3": [150], "R4": []},
263
+ {"energy_min": 15.0, "energy_max": 21.0, "R2": [129], "R3": [151], "R4": []},
264
+ {"energy_min": 21.0, "energy_max": 27.0, "R2": [], "R3": [152], "R4": []},
265
+ {"energy_min": 27.0, "energy_max": 33.0, "R2": [], "R3": [153], "R4": []},
266
+ {"energy_min": 33.0, "energy_max": 40.0, "R2": [], "R3": [154], "R4": []},
267
+ {"energy_min": 40.0, "energy_max": 52.0, "R2": [], "R3": [155], "R4": [30]},
268
+ {"energy_min": 52.0, "energy_max": 70.0, "R2": [], "R3": [156], "R4": [31]},
269
+ ],
270
+ "ni": [
271
+ {"energy_min": 8.0, "energy_max": 10.0, "R2": [], "R3": [158], "R4": []},
272
+ {"energy_min": 10.0, "energy_max": 12.0, "R2": [], "R3": [159], "R4": []},
273
+ {"energy_min": 12.0, "energy_max": 15.0, "R2": [], "R3": [160], "R4": []},
274
+ {"energy_min": 15.0, "energy_max": 21.0, "R2": [], "R3": [161], "R4": []},
275
+ {"energy_min": 21.0, "energy_max": 27.0, "R2": [], "R3": [162], "R4": []},
276
+ {"energy_min": 27.0, "energy_max": 33.0, "R2": [], "R3": [163], "R4": []},
277
+ {"energy_min": 33.0, "energy_max": 40.0, "R2": [], "R3": [164], "R4": []},
278
+ {"energy_min": 40.0, "energy_max": 52.0, "R2": [], "R3": [165], "R4": []},
279
+ {"energy_min": 52.0, "energy_max": 70.0, "R2": [], "R3": [166], "R4": []},
280
+ ],
281
+ }