imap-processing 0.16.2__py3-none-any.whl → 0.18.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 (110) hide show
  1. imap_processing/_version.py +2 -2
  2. imap_processing/ccsds/excel_to_xtce.py +12 -0
  3. imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +6 -6
  4. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +35 -0
  5. imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +35 -0
  6. imap_processing/cdf/config/imap_codice_l2_variable_attrs.yaml +24 -0
  7. imap_processing/cdf/config/imap_hi_variable_attrs.yaml +8 -8
  8. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +1 -1
  9. imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +163 -100
  10. imap_processing/cdf/config/imap_hit_l2_variable_attrs.yaml +398 -415
  11. imap_processing/cdf/config/imap_ialirt_l1_variable_attrs.yaml +97 -54
  12. imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +9 -9
  13. imap_processing/cdf/config/imap_idex_l2b_variable_attrs.yaml +233 -57
  14. imap_processing/cdf/config/imap_idex_l2c_variable_attrs.yaml +16 -90
  15. imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +30 -0
  16. imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +15 -1
  17. imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +19 -0
  18. imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +20 -0
  19. imap_processing/cdf/config/imap_swe_l2_variable_attrs.yaml +39 -0
  20. imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +168 -0
  21. imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +103 -2
  22. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +91 -11
  23. imap_processing/cdf/utils.py +7 -1
  24. imap_processing/cli.py +42 -13
  25. imap_processing/codice/codice_l1a.py +125 -78
  26. imap_processing/codice/codice_l1b.py +1 -1
  27. imap_processing/codice/codice_l2.py +0 -9
  28. imap_processing/codice/constants.py +481 -498
  29. imap_processing/hi/hi_l1a.py +4 -4
  30. imap_processing/hi/hi_l1b.py +2 -2
  31. imap_processing/hi/packet_definitions/TLM_HI_COMBINED_SCI.xml +218 -38
  32. imap_processing/hit/hit_utils.py +2 -2
  33. imap_processing/hit/l0/decom_hit.py +4 -3
  34. imap_processing/hit/l1a/hit_l1a.py +64 -24
  35. imap_processing/hit/l1b/constants.py +5 -0
  36. imap_processing/hit/l1b/hit_l1b.py +18 -16
  37. imap_processing/hit/l2/constants.py +1 -1
  38. imap_processing/hit/l2/hit_l2.py +4 -4
  39. imap_processing/ialirt/constants.py +21 -0
  40. imap_processing/ialirt/generate_coverage.py +188 -0
  41. imap_processing/ialirt/l0/parse_mag.py +62 -5
  42. imap_processing/ialirt/l0/process_swapi.py +1 -1
  43. imap_processing/ialirt/l0/process_swe.py +23 -7
  44. imap_processing/ialirt/utils/constants.py +22 -16
  45. imap_processing/ialirt/utils/create_xarray.py +42 -19
  46. imap_processing/idex/idex_constants.py +8 -5
  47. imap_processing/idex/idex_l2b.py +554 -58
  48. imap_processing/idex/idex_l2c.py +30 -196
  49. imap_processing/lo/l0/lo_apid.py +1 -0
  50. imap_processing/lo/l0/lo_star_sensor.py +48 -0
  51. imap_processing/lo/l1a/lo_l1a.py +74 -30
  52. imap_processing/lo/packet_definitions/lo_xtce.xml +5359 -106
  53. imap_processing/mag/constants.py +1 -0
  54. imap_processing/mag/l0/decom_mag.py +9 -6
  55. imap_processing/mag/l0/mag_l0_data.py +46 -0
  56. imap_processing/mag/l1d/__init__.py +0 -0
  57. imap_processing/mag/l1d/mag_l1d.py +133 -0
  58. imap_processing/mag/l1d/mag_l1d_data.py +588 -0
  59. imap_processing/mag/l2/__init__.py +0 -0
  60. imap_processing/mag/l2/mag_l2.py +25 -20
  61. imap_processing/mag/l2/mag_l2_data.py +191 -130
  62. imap_processing/quality_flags.py +20 -2
  63. imap_processing/spice/geometry.py +25 -3
  64. imap_processing/spice/pointing_frame.py +1 -1
  65. imap_processing/spice/spin.py +4 -0
  66. imap_processing/spice/time.py +51 -0
  67. imap_processing/swapi/l1/swapi_l1.py +12 -2
  68. imap_processing/swapi/l2/swapi_l2.py +59 -14
  69. imap_processing/swapi/swapi_utils.py +1 -1
  70. imap_processing/swe/l1b/swe_l1b.py +11 -4
  71. imap_processing/swe/l2/swe_l2.py +111 -17
  72. imap_processing/ultra/constants.py +49 -1
  73. imap_processing/ultra/l0/decom_tools.py +28 -14
  74. imap_processing/ultra/l0/decom_ultra.py +225 -15
  75. imap_processing/ultra/l0/ultra_utils.py +281 -8
  76. imap_processing/ultra/l1a/ultra_l1a.py +77 -8
  77. imap_processing/ultra/l1b/cullingmask.py +3 -3
  78. imap_processing/ultra/l1b/de.py +53 -15
  79. imap_processing/ultra/l1b/extendedspin.py +26 -2
  80. imap_processing/ultra/l1b/lookup_utils.py +171 -50
  81. imap_processing/ultra/l1b/quality_flag_filters.py +14 -0
  82. imap_processing/ultra/l1b/ultra_l1b_culling.py +198 -5
  83. imap_processing/ultra/l1b/ultra_l1b_extended.py +304 -66
  84. imap_processing/ultra/l1c/helio_pset.py +54 -7
  85. imap_processing/ultra/l1c/spacecraft_pset.py +9 -1
  86. imap_processing/ultra/l1c/ultra_l1c.py +2 -0
  87. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +106 -109
  88. imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +3 -3
  89. imap_processing/ultra/utils/ultra_l1_utils.py +13 -1
  90. imap_processing/utils.py +20 -42
  91. {imap_processing-0.16.2.dist-info → imap_processing-0.18.0.dist-info}/METADATA +2 -2
  92. {imap_processing-0.16.2.dist-info → imap_processing-0.18.0.dist-info}/RECORD +95 -103
  93. imap_processing/lo/l0/data_classes/star_sensor.py +0 -98
  94. imap_processing/lo/l0/utils/lo_base.py +0 -57
  95. imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_LeftSlit.csv +0 -526
  96. imap_processing/ultra/lookup_tables/Angular_Profiles_FM45_RightSlit.csv +0 -526
  97. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_LeftSlit.csv +0 -526
  98. imap_processing/ultra/lookup_tables/Angular_Profiles_FM90_RightSlit.csv +0 -524
  99. imap_processing/ultra/lookup_tables/EgyNorm.mem.csv +0 -32769
  100. imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +0 -2
  101. imap_processing/ultra/lookup_tables/FM90_Startup1_ULTRA_IMGPARAMS_20240719.csv +0 -2
  102. imap_processing/ultra/lookup_tables/dps_grid45_compressed.cdf +0 -0
  103. imap_processing/ultra/lookup_tables/ultra45_back-pos-luts.csv +0 -4097
  104. imap_processing/ultra/lookup_tables/ultra45_tdc_norm.csv +0 -2050
  105. imap_processing/ultra/lookup_tables/ultra90_back-pos-luts.csv +0 -4097
  106. imap_processing/ultra/lookup_tables/ultra90_tdc_norm.csv +0 -2050
  107. imap_processing/ultra/lookup_tables/yadjust.csv +0 -257
  108. {imap_processing-0.16.2.dist-info → imap_processing-0.18.0.dist-info}/LICENSE +0 -0
  109. {imap_processing-0.16.2.dist-info → imap_processing-0.18.0.dist-info}/WHEEL +0 -0
  110. {imap_processing-0.16.2.dist-info → imap_processing-0.18.0.dist-info}/entry_points.txt +0 -0
@@ -39,7 +39,7 @@ APIDS_FOR_SCIENCE_PROCESSING = [
39
39
  CODICEAPID_MAPPING = {
40
40
  "hskp": CODICEAPID.COD_NHK,
41
41
  "lo-ialirt": CODICEAPID.COD_LO_IAL,
42
- "lo-pha": CODICEAPID.COD_LO_PHA,
42
+ "lo-direct-events": CODICEAPID.COD_LO_PHA,
43
43
  "lo-sw-priority": CODICEAPID.COD_LO_SW_PRIORITY_COUNTS,
44
44
  "lo-sw-species": CODICEAPID.COD_LO_SW_SPECIES_COUNTS,
45
45
  "lo-nsw-species": CODICEAPID.COD_LO_NSW_SPECIES_COUNTS,
@@ -49,7 +49,7 @@ CODICEAPID_MAPPING = {
49
49
  "lo-counters-aggregated": CODICEAPID.COD_LO_INST_COUNTS_AGGREGATED,
50
50
  "lo-counters-singles": CODICEAPID.COD_LO_INST_COUNTS_SINGLES,
51
51
  "hi-ialirt": CODICEAPID.COD_HI_IAL,
52
- "hi-pha": CODICEAPID.COD_HI_PHA,
52
+ "hi-direct-events": CODICEAPID.COD_HI_PHA,
53
53
  "hi-counters-aggregated": CODICEAPID.COD_HI_INST_COUNTS_AGGREGATED,
54
54
  "hi-counters-singles": CODICEAPID.COD_HI_INST_COUNTS_SINGLES,
55
55
  "hi-omni": CODICEAPID.COD_HI_OMNI_SPECIES_COUNTS,
@@ -59,6 +59,7 @@ CODICEAPID_MAPPING = {
59
59
 
60
60
  # Numerical constants
61
61
  SPIN_PERIOD_CONVERSION = 0.00032
62
+ K_FACTOR = 5.76 # This is used to convert voltages to energies in L2
62
63
 
63
64
  # CDF variable names used for lo data products
64
65
  LO_COUNTERS_SINGLES_VARIABLE_NAMES = ["apd_singles"]
@@ -127,7 +128,7 @@ HI_SECTORED_VARIABLE_NAMES = ["h", "he3he4", "cno", "fe"]
127
128
  HI_IALIRT_VARIABLE_NAMES = ["h"]
128
129
 
129
130
  # CDF variable names used for direct event data products
130
- HI_PHA_CDF_FIELDS = [
131
+ HI_DE_CDF_FIELDS = [
131
132
  "NumEvents",
132
133
  "DataQuality",
133
134
  "SSDEnergy",
@@ -139,10 +140,8 @@ HI_PHA_CDF_FIELDS = [
139
140
  "SpinAngle",
140
141
  "SpinNumber",
141
142
  ]
142
- HI_PHA_VARIABLE_NAMES = [
143
- f"P{n}_{field}" for n in range(6) for field in HI_PHA_CDF_FIELDS
144
- ]
145
- LO_PHA_CDF_FIELDS = [
143
+ HI_DE_VARIABLE_NAMES = [f"P{n}_{field}" for n in range(6) for field in HI_DE_CDF_FIELDS]
144
+ LO_DE_CDF_FIELDS = [
146
145
  "NumEvents",
147
146
  "DataQuality",
148
147
  "APDGain",
@@ -154,9 +153,7 @@ LO_PHA_CDF_FIELDS = [
154
153
  "SpinAngle",
155
154
  "EnergyStep",
156
155
  ]
157
- LO_PHA_VARIABLE_NAMES = [
158
- f"P{n}_{field}" for n in range(8) for field in LO_PHA_CDF_FIELDS
159
- ]
156
+ LO_DE_VARIABLE_NAMES = [f"P{n}_{field}" for n in range(8) for field in LO_DE_CDF_FIELDS]
160
157
 
161
158
  # Final I-ALiRT data product fields
162
159
  CODICE_LO_IAL_DATA_FIELDS = [
@@ -405,8 +402,6 @@ SECTORED_ENERGY_TABLE = {
405
402
  "fe": [0.0125, 0.025, 0.05, 0.1, 0.2, 0.4, 0.8, 1.6, 3.2],
406
403
  }
407
404
 
408
- # TODO: Possibly move to consistent order of dimensions with other instruments
409
- # TBD after discussion with Joey and at the Science Team Meeting in Feb
410
405
  # Various configurations to support processing of individual data products
411
406
  # Much of these are described in the algorithm document in chapter 10 ("Data
412
407
  # Level 1A")
@@ -414,11 +409,10 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
414
409
  CODICEAPID.COD_HI_IAL: {
415
410
  "dataset_name": "imap_codice_l1a_hi-ialirt",
416
411
  "energy_table": IALIRT_ENERGY_TABLE,
417
- "input_dims": {"esa_step": 15, "inst_az": 4},
412
+ "dims": {"esa_step": 15, "inst_az": 4},
418
413
  "instrument": "hi",
419
414
  "num_counters": 1,
420
415
  "num_spins": 4,
421
- "output_dims": {"esa_step": 15, "inst_az": 4},
422
416
  "support_variables": [
423
417
  "data_quality",
424
418
  "spin_period",
@@ -428,45 +422,39 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
428
422
  },
429
423
  CODICEAPID.COD_HI_INST_COUNTS_AGGREGATED: {
430
424
  "dataset_name": "imap_codice_l1a_hi-counters-aggregated",
431
- "input_dims": {},
425
+ "dims": {},
432
426
  "instrument": "hi",
433
427
  "num_counters": len(
434
428
  HI_COUNTERS_AGGREGATED_VARIABLE_NAMES
435
429
  ), # The number of counters depends on the number of active counters
436
- "output_dims": {},
437
430
  "support_variables": ["data_quality", "spin_period"],
438
431
  "variable_names": HI_COUNTERS_AGGREGATED_VARIABLE_NAMES,
439
432
  },
440
433
  CODICEAPID.COD_HI_INST_COUNTS_SINGLES: {
441
434
  "dataset_name": "imap_codice_l1a_hi-counters-singles",
442
- "input_dims": {
435
+ "dims": {
443
436
  "ssd_index": 12,
444
437
  },
445
438
  "instrument": "hi",
446
439
  "num_counters": 3,
447
- "output_dims": {
448
- "ssd_index": 12,
449
- },
450
440
  "support_variables": ["data_quality", "spin_period"],
451
441
  "variable_names": HI_COUNTERS_SINGLES_VARIABLE_NAMES,
452
442
  },
453
443
  CODICEAPID.COD_HI_INST_COUNTS_PRIORITIES: {
454
444
  "dataset_name": "imap_codice_l1a_hi-priority",
455
- "input_dims": {},
445
+ "dims": {},
456
446
  "instrument": "hi",
457
447
  "num_counters": 6,
458
- "output_dims": {},
459
448
  "support_variables": ["data_quality", "spin_period"],
460
449
  "variable_names": HI_PRIORITY_VARIABLE_NAMES,
461
450
  },
462
451
  CODICEAPID.COD_HI_OMNI_SPECIES_COUNTS: {
463
452
  "dataset_name": "imap_codice_l1a_hi-omni",
464
453
  "energy_table": OMNI_ENERGY_TABLE,
465
- "input_dims": {"esa_step": 15, "inst_az": 4},
454
+ "dims": {"esa_step": 15, "inst_az": 4},
466
455
  "instrument": "hi",
467
456
  "num_counters": 8,
468
457
  "num_spins": 4,
469
- "output_dims": {"esa_step": 15, "inst_az": 4},
470
458
  "support_variables": [
471
459
  "data_quality",
472
460
  "spin_period",
@@ -485,7 +473,7 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
485
473
  CODICEAPID.COD_HI_SECT_SPECIES_COUNTS: {
486
474
  "dataset_name": "imap_codice_l1a_hi-sectored",
487
475
  "energy_table": SECTORED_ENERGY_TABLE,
488
- "input_dims": {
476
+ "dims": {
489
477
  "esa_step": 8,
490
478
  "ssd_index": 12,
491
479
  "spin_sector_index": 12,
@@ -493,11 +481,6 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
493
481
  "instrument": "hi",
494
482
  "num_counters": 4,
495
483
  "num_spins": 16,
496
- "output_dims": {
497
- "esa_step": 8,
498
- "ssd_index": 12,
499
- "spin_sector_index": 12,
500
- },
501
484
  "support_variables": [
502
485
  "data_quality",
503
486
  "spin_period",
@@ -510,10 +493,9 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
510
493
  },
511
494
  CODICEAPID.COD_LO_IAL: {
512
495
  "dataset_name": "imap_codice_l1a_lo-ialirt",
513
- "input_dims": {"spin_sector": 1, "esa_step": 128},
496
+ "dims": {"esa_step": 128, "spin_sector": 1},
514
497
  "instrument": "lo",
515
498
  "num_counters": 9,
516
- "output_dims": {"spin_sector": 1, "esa_step": 128},
517
499
  "support_variables": [
518
500
  "energy_table",
519
501
  "acquisition_time_per_step",
@@ -523,17 +505,17 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
523
505
  "st_bias_gain_mode",
524
506
  "data_quality",
525
507
  "spin_period",
508
+ "k_factor",
526
509
  ],
527
510
  "variable_names": LO_IALIRT_VARIABLE_NAMES,
528
511
  },
529
512
  CODICEAPID.COD_LO_INST_COUNTS_AGGREGATED: {
530
513
  "dataset_name": "imap_codice_l1a_lo-counters-aggregated",
531
- "input_dims": {"esa_step": 128, "spin_sector_pairs": 6},
514
+ "dims": {"esa_step": 128, "spin_sector_pairs": 6},
532
515
  "instrument": "lo",
533
516
  "num_counters": len(
534
517
  LO_COUNTERS_AGGREGATED_VARIABLE_NAMES
535
518
  ), # The number of counters depends on the number of active counters
536
- "output_dims": {"spin_sector_pairs": 6, "esa_step": 128},
537
519
  "support_variables": [
538
520
  "energy_table",
539
521
  "acquisition_time_per_step",
@@ -543,15 +525,15 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
543
525
  "st_bias_gain_mode",
544
526
  "data_quality",
545
527
  "spin_period",
528
+ "k_factor",
546
529
  ],
547
530
  "variable_names": LO_COUNTERS_AGGREGATED_VARIABLE_NAMES,
548
531
  },
549
532
  CODICEAPID.COD_LO_INST_COUNTS_SINGLES: {
550
533
  "dataset_name": "imap_codice_l1a_lo-counters-singles",
551
- "input_dims": {"esa_step": 128, "inst_az": 24, "spin_sector_pairs": 6},
534
+ "dims": {"esa_step": 128, "inst_az": 24, "spin_sector_pairs": 6},
552
535
  "instrument": "lo",
553
536
  "num_counters": 1,
554
- "output_dims": {"inst_az": 24, "spin_sector_pairs": 6, "esa_step": 128},
555
537
  "support_variables": [
556
538
  "energy_table",
557
539
  "acquisition_time_per_step",
@@ -561,15 +543,15 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
561
543
  "st_bias_gain_mode",
562
544
  "data_quality",
563
545
  "spin_period",
546
+ "k_factor",
564
547
  ],
565
548
  "variable_names": LO_COUNTERS_SINGLES_VARIABLE_NAMES,
566
549
  },
567
550
  CODICEAPID.COD_LO_SW_ANGULAR_COUNTS: {
568
551
  "dataset_name": "imap_codice_l1a_lo-sw-angular",
569
- "input_dims": {"esa_step": 128, "inst_az": 5, "spin_sector": 12},
552
+ "dims": {"esa_step": 128, "inst_az": 5, "spin_sector": 12},
570
553
  "instrument": "lo",
571
554
  "num_counters": 4,
572
- "output_dims": {"inst_az": 5, "spin_sector": 12, "esa_step": 128},
573
555
  "support_variables": [
574
556
  "energy_table",
575
557
  "acquisition_time_per_step",
@@ -579,15 +561,15 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
579
561
  "st_bias_gain_mode",
580
562
  "data_quality",
581
563
  "spin_period",
564
+ "k_factor",
582
565
  ],
583
566
  "variable_names": LO_SW_ANGULAR_VARIABLE_NAMES,
584
567
  },
585
568
  CODICEAPID.COD_LO_NSW_ANGULAR_COUNTS: {
586
569
  "dataset_name": "imap_codice_l1a_lo-nsw-angular",
587
- "input_dims": {"esa_step": 128, "inst_az": 19, "spin_sector": 12},
570
+ "dims": {"esa_step": 128, "inst_az": 19, "spin_sector": 12},
588
571
  "instrument": "lo",
589
572
  "num_counters": 1,
590
- "output_dims": {"inst_az": 19, "spin_sector": 12, "esa_step": 128},
591
573
  "support_variables": [
592
574
  "energy_table",
593
575
  "acquisition_time_per_step",
@@ -597,15 +579,15 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
597
579
  "st_bias_gain_mode",
598
580
  "data_quality",
599
581
  "spin_period",
582
+ "k_factor",
600
583
  ],
601
584
  "variable_names": LO_NSW_ANGULAR_VARIABLE_NAMES,
602
585
  },
603
586
  CODICEAPID.COD_LO_SW_PRIORITY_COUNTS: {
604
587
  "dataset_name": "imap_codice_l1a_lo-sw-priority",
605
- "input_dims": {"esa_step": 128, "spin_sector": 12},
588
+ "dims": {"esa_step": 128, "spin_sector": 12},
606
589
  "instrument": "lo",
607
590
  "num_counters": 5,
608
- "output_dims": {"spin_sector": 12, "esa_step": 128},
609
591
  "support_variables": [
610
592
  "energy_table",
611
593
  "acquisition_time_per_step",
@@ -615,15 +597,15 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
615
597
  "st_bias_gain_mode",
616
598
  "data_quality",
617
599
  "spin_period",
600
+ "k_factor",
618
601
  ],
619
602
  "variable_names": LO_SW_PRIORITY_VARIABLE_NAMES,
620
603
  },
621
604
  CODICEAPID.COD_LO_NSW_PRIORITY_COUNTS: {
622
605
  "dataset_name": "imap_codice_l1a_lo-nsw-priority",
623
- "input_dims": {"esa_step": 128, "spin_sector": 12},
606
+ "dims": {"esa_step": 128, "spin_sector": 12},
624
607
  "instrument": "lo",
625
608
  "num_counters": 2,
626
- "output_dims": {"spin_sector": 12, "esa_step": 128},
627
609
  "support_variables": [
628
610
  "energy_table",
629
611
  "acquisition_time_per_step",
@@ -633,15 +615,15 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
633
615
  "st_bias_gain_mode",
634
616
  "data_quality",
635
617
  "spin_period",
618
+ "k_factor",
636
619
  ],
637
620
  "variable_names": LO_NSW_PRIORITY_VARIABLE_NAMES,
638
621
  },
639
622
  CODICEAPID.COD_LO_SW_SPECIES_COUNTS: {
640
623
  "dataset_name": "imap_codice_l1a_lo-sw-species",
641
- "input_dims": {"esa_step": 128, "spin_sector": 1},
624
+ "dims": {"esa_step": 128, "spin_sector": 1},
642
625
  "instrument": "lo",
643
626
  "num_counters": 16,
644
- "output_dims": {"spin_sector": 1, "esa_step": 128},
645
627
  "support_variables": [
646
628
  "energy_table",
647
629
  "acquisition_time_per_step",
@@ -651,15 +633,15 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
651
633
  "st_bias_gain_mode",
652
634
  "data_quality",
653
635
  "spin_period",
636
+ "k_factor",
654
637
  ],
655
638
  "variable_names": LO_SW_SPECIES_VARIABLE_NAMES,
656
639
  },
657
640
  CODICEAPID.COD_LO_NSW_SPECIES_COUNTS: {
658
641
  "dataset_name": "imap_codice_l1a_lo-nsw-species",
659
- "input_dims": {"esa_step": 128, "spin_sector": 1},
642
+ "dims": {"esa_step": 128, "spin_sector": 1},
660
643
  "instrument": "lo",
661
644
  "num_counters": 8,
662
- "output_dims": {"spin_sector": 1, "esa_step": 128},
663
645
  "support_variables": [
664
646
  "energy_table",
665
647
  "acquisition_time_per_step",
@@ -669,6 +651,7 @@ DATA_PRODUCT_CONFIGURATIONS: dict[CODICEAPID | int, dict] = {
669
651
  "st_bias_gain_mode",
670
652
  "data_quality",
671
653
  "spin_period",
654
+ "k_factor",
672
655
  ],
673
656
  "variable_names": LO_NSW_SPECIES_VARIABLE_NAMES,
674
657
  },
@@ -788,7 +771,7 @@ DE_DATA_PRODUCT_CONFIGURATIONS: dict[Any, dict[str, Any]] = {
788
771
  "fillval": np.iinfo(np.uint8).max,
789
772
  },
790
773
  },
791
- "cdf_fields": HI_PHA_CDF_FIELDS,
774
+ "cdf_fields": HI_DE_CDF_FIELDS,
792
775
  },
793
776
  CODICEAPID.COD_LO_PHA: {
794
777
  "num_priorities": 8,
@@ -849,7 +832,7 @@ DE_DATA_PRODUCT_CONFIGURATIONS: dict[Any, dict[str, Any]] = {
849
832
  "fillval": np.iinfo(np.uint8).max,
850
833
  },
851
834
  },
852
- "cdf_fields": LO_PHA_CDF_FIELDS,
835
+ "cdf_fields": LO_DE_CDF_FIELDS,
853
836
  },
854
837
  }
855
838
 
@@ -1040,230 +1023,230 @@ LOSSY_A_TABLE = {
1040
1023
  29: 29,
1041
1024
  30: 30,
1042
1025
  31: 31,
1043
- 32: 33,
1044
- 33: 35,
1045
- 34: 37,
1046
- 35: 39,
1047
- 36: 41,
1048
- 37: 43,
1049
- 38: 45,
1050
- 39: 47,
1051
- 40: 49,
1052
- 41: 51,
1053
- 42: 53,
1054
- 43: 55,
1055
- 44: 57,
1056
- 45: 59,
1057
- 46: 61,
1058
- 47: 63,
1059
- 48: 67,
1060
- 49: 71,
1061
- 50: 75,
1062
- 51: 79,
1063
- 52: 83,
1064
- 53: 87,
1065
- 54: 91,
1066
- 55: 95,
1067
- 56: 99,
1068
- 57: 103,
1069
- 58: 107,
1070
- 59: 111,
1071
- 60: 115,
1072
- 61: 119,
1073
- 62: 123,
1074
- 63: 127,
1075
- 64: 135,
1076
- 65: 143,
1077
- 66: 151,
1078
- 67: 159,
1079
- 68: 167,
1080
- 69: 175,
1081
- 70: 183,
1082
- 71: 191,
1083
- 72: 199,
1084
- 73: 207,
1085
- 74: 215,
1086
- 75: 223,
1087
- 76: 231,
1088
- 77: 239,
1089
- 78: 247,
1090
- 79: 255,
1091
- 80: 271,
1092
- 81: 287,
1093
- 82: 303,
1094
- 83: 319,
1095
- 84: 335,
1096
- 85: 351,
1097
- 86: 367,
1098
- 87: 383,
1099
- 88: 399,
1100
- 89: 415,
1101
- 90: 431,
1102
- 91: 447,
1103
- 92: 463,
1104
- 93: 479,
1105
- 94: 495,
1106
- 95: 511,
1107
- 96: 543,
1108
- 97: 575,
1109
- 98: 607,
1110
- 99: 639,
1111
- 100: 671,
1112
- 101: 703,
1113
- 102: 735,
1114
- 103: 767,
1115
- 104: 799,
1116
- 105: 831,
1117
- 106: 863,
1118
- 107: 895,
1119
- 108: 927,
1120
- 109: 959,
1121
- 110: 991,
1122
- 111: 1023,
1123
- 112: 1087,
1124
- 113: 1151,
1125
- 114: 1215,
1126
- 115: 1279,
1127
- 116: 1343,
1128
- 117: 1407,
1129
- 118: 1471,
1130
- 119: 1535,
1131
- 120: 1599,
1132
- 121: 1663,
1133
- 122: 1727,
1134
- 123: 1791,
1135
- 124: 1855,
1136
- 125: 1919,
1137
- 126: 1983,
1138
- 127: 2047,
1139
- 128: 2175,
1140
- 129: 2303,
1141
- 130: 2431,
1142
- 131: 2559,
1143
- 132: 2687,
1144
- 133: 2815,
1145
- 134: 2943,
1146
- 135: 3071,
1147
- 136: 3199,
1148
- 137: 3327,
1149
- 138: 3455,
1150
- 139: 3583,
1151
- 140: 3711,
1152
- 141: 3839,
1153
- 142: 3967,
1154
- 143: 4095,
1155
- 144: 4351,
1156
- 145: 4607,
1157
- 146: 4863,
1158
- 147: 5119,
1159
- 148: 5375,
1160
- 149: 5631,
1161
- 150: 5887,
1162
- 151: 6143,
1163
- 152: 6399,
1164
- 153: 6655,
1165
- 154: 6911,
1166
- 155: 7167,
1167
- 156: 7423,
1168
- 157: 7679,
1169
- 158: 7935,
1170
- 159: 8191,
1171
- 160: 8703,
1172
- 161: 9215,
1173
- 162: 9727,
1174
- 163: 10239,
1175
- 164: 10751,
1176
- 165: 11263,
1177
- 166: 11775,
1178
- 167: 12287,
1179
- 168: 12799,
1180
- 169: 13311,
1181
- 170: 13823,
1182
- 171: 14335,
1183
- 172: 14847,
1184
- 173: 15359,
1185
- 174: 15871,
1186
- 175: 16383,
1187
- 176: 17407,
1188
- 177: 18431,
1189
- 178: 19455,
1190
- 179: 20479,
1191
- 180: 21503,
1192
- 181: 22527,
1193
- 182: 23551,
1194
- 183: 24575,
1195
- 184: 25599,
1196
- 185: 26623,
1197
- 186: 27647,
1198
- 187: 28671,
1199
- 188: 29695,
1200
- 189: 30719,
1201
- 190: 31743,
1202
- 191: 32767,
1203
- 192: 34815,
1204
- 193: 36863,
1205
- 194: 38911,
1206
- 195: 40959,
1207
- 196: 43007,
1208
- 197: 45055,
1209
- 198: 47103,
1210
- 199: 49151,
1211
- 200: 51199,
1212
- 201: 53247,
1213
- 202: 55295,
1214
- 203: 57343,
1215
- 204: 59391,
1216
- 205: 61439,
1217
- 206: 63487,
1218
- 207: 65535,
1219
- 208: 69631,
1220
- 209: 73727,
1221
- 210: 77823,
1222
- 211: 81919,
1223
- 212: 86015,
1224
- 213: 90111,
1225
- 214: 94207,
1226
- 215: 98303,
1227
- 216: 102399,
1228
- 217: 106495,
1229
- 218: 110591,
1230
- 219: 114687,
1231
- 220: 118783,
1232
- 221: 122879,
1233
- 222: 126975,
1234
- 223: 131071,
1235
- 224: 139263,
1236
- 225: 147455,
1237
- 226: 155647,
1238
- 227: 163839,
1239
- 228: 172031,
1240
- 229: 180223,
1241
- 230: 188415,
1242
- 231: 196607,
1243
- 232: 204799,
1244
- 233: 212991,
1245
- 234: 221183,
1246
- 235: 229375,
1247
- 236: 237567,
1248
- 237: 245759,
1249
- 238: 253951,
1250
- 239: 262143,
1251
- 240: 278527,
1252
- 241: 294911,
1253
- 242: 311295,
1254
- 243: 327679,
1255
- 244: 344063,
1256
- 245: 360447,
1257
- 246: 376831,
1258
- 247: 393215,
1259
- 248: 409599,
1260
- 249: 425983,
1261
- 250: 442367,
1262
- 251: 458751,
1263
- 252: 475135,
1264
- 253: 491519,
1265
- 254: 507903,
1266
- 255: 4294967294,
1026
+ 32: 32,
1027
+ 33: 34,
1028
+ 34: 36,
1029
+ 35: 38,
1030
+ 36: 40,
1031
+ 37: 42,
1032
+ 38: 44,
1033
+ 39: 46,
1034
+ 40: 48,
1035
+ 41: 50,
1036
+ 42: 52,
1037
+ 43: 54,
1038
+ 44: 56,
1039
+ 45: 58,
1040
+ 46: 60,
1041
+ 47: 62,
1042
+ 48: 65,
1043
+ 49: 69,
1044
+ 50: 73,
1045
+ 51: 77,
1046
+ 52: 81,
1047
+ 53: 85,
1048
+ 54: 89,
1049
+ 55: 93,
1050
+ 56: 97,
1051
+ 57: 101,
1052
+ 58: 105,
1053
+ 59: 109,
1054
+ 60: 113,
1055
+ 61: 117,
1056
+ 62: 121,
1057
+ 63: 125,
1058
+ 64: 131,
1059
+ 65: 139,
1060
+ 66: 147,
1061
+ 67: 155,
1062
+ 68: 163,
1063
+ 69: 171,
1064
+ 70: 179,
1065
+ 71: 187,
1066
+ 72: 195,
1067
+ 73: 203,
1068
+ 74: 211,
1069
+ 75: 219,
1070
+ 76: 227,
1071
+ 77: 235,
1072
+ 78: 243,
1073
+ 79: 251,
1074
+ 80: 263,
1075
+ 81: 279,
1076
+ 82: 295,
1077
+ 83: 311,
1078
+ 84: 327,
1079
+ 85: 343,
1080
+ 86: 359,
1081
+ 87: 375,
1082
+ 88: 391,
1083
+ 89: 407,
1084
+ 90: 423,
1085
+ 91: 439,
1086
+ 92: 455,
1087
+ 93: 471,
1088
+ 94: 487,
1089
+ 95: 503,
1090
+ 96: 527,
1091
+ 97: 559,
1092
+ 98: 591,
1093
+ 99: 623,
1094
+ 100: 655,
1095
+ 101: 687,
1096
+ 102: 719,
1097
+ 103: 751,
1098
+ 104: 783,
1099
+ 105: 815,
1100
+ 106: 847,
1101
+ 107: 879,
1102
+ 108: 911,
1103
+ 109: 943,
1104
+ 110: 975,
1105
+ 111: 1007,
1106
+ 112: 1055,
1107
+ 113: 1119,
1108
+ 114: 1183,
1109
+ 115: 1247,
1110
+ 116: 1311,
1111
+ 117: 1375,
1112
+ 118: 1439,
1113
+ 119: 1503,
1114
+ 120: 1567,
1115
+ 121: 1631,
1116
+ 122: 1695,
1117
+ 123: 1759,
1118
+ 124: 1823,
1119
+ 125: 1887,
1120
+ 126: 1951,
1121
+ 127: 2015,
1122
+ 128: 2111,
1123
+ 129: 2239,
1124
+ 130: 2367,
1125
+ 131: 2495,
1126
+ 132: 2623,
1127
+ 133: 2751,
1128
+ 134: 2879,
1129
+ 135: 3007,
1130
+ 136: 3135,
1131
+ 137: 3263,
1132
+ 138: 3391,
1133
+ 139: 3519,
1134
+ 140: 3647,
1135
+ 141: 3775,
1136
+ 142: 3903,
1137
+ 143: 4031,
1138
+ 144: 4223,
1139
+ 145: 4479,
1140
+ 146: 4735,
1141
+ 147: 4991,
1142
+ 148: 5247,
1143
+ 149: 5503,
1144
+ 150: 5759,
1145
+ 151: 6015,
1146
+ 152: 6271,
1147
+ 153: 6527,
1148
+ 154: 6783,
1149
+ 155: 7039,
1150
+ 156: 7295,
1151
+ 157: 7551,
1152
+ 158: 7807,
1153
+ 159: 8063,
1154
+ 160: 8447,
1155
+ 161: 8959,
1156
+ 162: 9471,
1157
+ 163: 9983,
1158
+ 164: 10495,
1159
+ 165: 11007,
1160
+ 166: 11519,
1161
+ 167: 12031,
1162
+ 168: 12543,
1163
+ 169: 13055,
1164
+ 170: 13567,
1165
+ 171: 14079,
1166
+ 172: 14591,
1167
+ 173: 15103,
1168
+ 174: 15615,
1169
+ 175: 16127,
1170
+ 176: 16895,
1171
+ 177: 17919,
1172
+ 178: 18943,
1173
+ 179: 19967,
1174
+ 180: 20991,
1175
+ 181: 22015,
1176
+ 182: 23039,
1177
+ 183: 24063,
1178
+ 184: 25087,
1179
+ 185: 26111,
1180
+ 186: 27135,
1181
+ 187: 28159,
1182
+ 188: 29183,
1183
+ 189: 30207,
1184
+ 190: 31231,
1185
+ 191: 32255,
1186
+ 192: 33791,
1187
+ 193: 35839,
1188
+ 194: 37887,
1189
+ 195: 39935,
1190
+ 196: 41983,
1191
+ 197: 44031,
1192
+ 198: 46079,
1193
+ 199: 48127,
1194
+ 200: 50175,
1195
+ 201: 52223,
1196
+ 202: 54271,
1197
+ 203: 56319,
1198
+ 204: 58367,
1199
+ 205: 60415,
1200
+ 206: 62463,
1201
+ 207: 64511,
1202
+ 208: 67583,
1203
+ 209: 71679,
1204
+ 210: 75775,
1205
+ 211: 79871,
1206
+ 212: 83967,
1207
+ 213: 88063,
1208
+ 214: 92159,
1209
+ 215: 96255,
1210
+ 216: 100351,
1211
+ 217: 104447,
1212
+ 218: 108543,
1213
+ 219: 112639,
1214
+ 220: 116735,
1215
+ 221: 120831,
1216
+ 222: 124927,
1217
+ 223: 129023,
1218
+ 224: 135167,
1219
+ 225: 143359,
1220
+ 226: 151551,
1221
+ 227: 159743,
1222
+ 228: 167935,
1223
+ 229: 176127,
1224
+ 230: 184319,
1225
+ 231: 192511,
1226
+ 232: 200703,
1227
+ 233: 208895,
1228
+ 234: 217087,
1229
+ 235: 225279,
1230
+ 236: 233471,
1231
+ 237: 241663,
1232
+ 238: 249855,
1233
+ 239: 258047,
1234
+ 240: 270335,
1235
+ 241: 286719,
1236
+ 242: 303103,
1237
+ 243: 319487,
1238
+ 244: 335871,
1239
+ 245: 352255,
1240
+ 246: 368639,
1241
+ 247: 385023,
1242
+ 248: 401407,
1243
+ 249: 417791,
1244
+ 250: 434175,
1245
+ 251: 450559,
1246
+ 252: 466943,
1247
+ 253: 483327,
1248
+ 254: 499711,
1249
+ 255: 2147737599,
1267
1250
  }
1268
1251
 
1269
1252
  LOSSY_B_TABLE = {
@@ -1299,230 +1282,230 @@ LOSSY_B_TABLE = {
1299
1282
  29: 29,
1300
1283
  30: 30,
1301
1284
  31: 31,
1302
- 32: 33,
1303
- 33: 35,
1304
- 34: 37,
1305
- 35: 39,
1306
- 36: 41,
1307
- 37: 43,
1308
- 38: 45,
1309
- 39: 47,
1310
- 40: 49,
1311
- 41: 51,
1312
- 42: 53,
1313
- 43: 55,
1314
- 44: 57,
1315
- 45: 59,
1316
- 46: 61,
1317
- 47: 63,
1318
- 48: 67,
1319
- 49: 71,
1320
- 50: 75,
1321
- 51: 79,
1322
- 52: 83,
1323
- 53: 87,
1324
- 54: 91,
1325
- 55: 95,
1326
- 56: 99,
1327
- 57: 103,
1328
- 58: 107,
1329
- 59: 111,
1330
- 60: 115,
1331
- 61: 119,
1332
- 62: 123,
1333
- 63: 127,
1334
- 64: 135,
1335
- 65: 143,
1336
- 66: 151,
1337
- 67: 159,
1338
- 68: 167,
1339
- 69: 175,
1340
- 70: 183,
1341
- 71: 191,
1342
- 72: 199,
1343
- 73: 207,
1344
- 74: 215,
1345
- 75: 223,
1346
- 76: 231,
1347
- 77: 239,
1348
- 78: 247,
1349
- 79: 255,
1350
- 80: 271,
1351
- 81: 287,
1352
- 82: 303,
1353
- 83: 319,
1354
- 84: 335,
1355
- 85: 351,
1356
- 86: 367,
1357
- 87: 383,
1358
- 88: 399,
1359
- 89: 415,
1360
- 90: 431,
1361
- 91: 447,
1362
- 92: 463,
1363
- 93: 479,
1364
- 94: 495,
1365
- 95: 511,
1366
- 96: 543,
1367
- 97: 575,
1368
- 98: 607,
1369
- 99: 639,
1370
- 100: 671,
1371
- 101: 703,
1372
- 102: 735,
1373
- 103: 767,
1374
- 104: 799,
1375
- 105: 831,
1376
- 106: 863,
1377
- 107: 895,
1378
- 108: 927,
1379
- 109: 959,
1380
- 110: 991,
1381
- 111: 1023,
1382
- 112: 1087,
1383
- 113: 1151,
1384
- 114: 1215,
1385
- 115: 1279,
1386
- 116: 1343,
1387
- 117: 1407,
1388
- 118: 1471,
1389
- 119: 1535,
1390
- 120: 1599,
1391
- 121: 1663,
1392
- 122: 1727,
1393
- 123: 1791,
1394
- 124: 1855,
1395
- 125: 1919,
1396
- 126: 1983,
1397
- 127: 2047,
1398
- 128: 2175,
1399
- 129: 2303,
1400
- 130: 2431,
1401
- 131: 2559,
1402
- 132: 2687,
1403
- 133: 2815,
1404
- 134: 2943,
1405
- 135: 3071,
1406
- 136: 3199,
1407
- 137: 3327,
1408
- 138: 3455,
1409
- 139: 3583,
1410
- 140: 3711,
1411
- 141: 3839,
1412
- 142: 3967,
1413
- 143: 4095,
1414
- 144: 4351,
1415
- 145: 4607,
1416
- 146: 4863,
1417
- 147: 5119,
1418
- 148: 5375,
1419
- 149: 5631,
1420
- 150: 5887,
1421
- 151: 6143,
1422
- 152: 6399,
1423
- 153: 6655,
1424
- 154: 6911,
1425
- 155: 7167,
1426
- 156: 7423,
1427
- 157: 7679,
1428
- 158: 7935,
1429
- 159: 8191,
1430
- 160: 8703,
1431
- 161: 9215,
1432
- 162: 9727,
1433
- 163: 10239,
1434
- 164: 10751,
1435
- 165: 11263,
1436
- 166: 11775,
1437
- 167: 12287,
1438
- 168: 12799,
1439
- 169: 13311,
1440
- 170: 13823,
1441
- 171: 14335,
1442
- 172: 14847,
1443
- 173: 15359,
1444
- 174: 15871,
1445
- 175: 16383,
1446
- 176: 17407,
1447
- 177: 18431,
1448
- 178: 19455,
1449
- 179: 20479,
1450
- 180: 21503,
1451
- 181: 22527,
1452
- 182: 23551,
1453
- 183: 24575,
1454
- 184: 25599,
1455
- 185: 26623,
1456
- 186: 27647,
1457
- 187: 28671,
1458
- 188: 29695,
1459
- 189: 30719,
1460
- 190: 31743,
1461
- 191: 32767,
1462
- 192: 36863,
1463
- 193: 40959,
1464
- 194: 45055,
1465
- 195: 49151,
1466
- 196: 53247,
1467
- 197: 57343,
1468
- 198: 61439,
1469
- 199: 65535,
1470
- 200: 73727,
1471
- 201: 81919,
1472
- 202: 90111,
1473
- 203: 98303,
1474
- 204: 106495,
1475
- 205: 114687,
1476
- 206: 122879,
1477
- 207: 131071,
1478
- 208: 147455,
1479
- 209: 163839,
1480
- 210: 180223,
1481
- 211: 196607,
1482
- 212: 212991,
1483
- 213: 229375,
1484
- 214: 245759,
1485
- 215: 262143,
1486
- 216: 294911,
1487
- 217: 327679,
1488
- 218: 360447,
1489
- 219: 393215,
1490
- 220: 425983,
1491
- 221: 458751,
1492
- 222: 491519,
1493
- 223: 524287,
1494
- 224: 589823,
1495
- 225: 655359,
1496
- 226: 720895,
1497
- 227: 786431,
1498
- 228: 851967,
1499
- 229: 917503,
1500
- 230: 983039,
1501
- 231: 1048575,
1502
- 232: 1179647,
1503
- 233: 1310719,
1504
- 234: 1441791,
1505
- 235: 1572863,
1506
- 236: 1703935,
1507
- 237: 1835007,
1508
- 238: 1966079,
1509
- 239: 2097151,
1510
- 240: 2359295,
1511
- 241: 2621439,
1512
- 242: 2883583,
1513
- 243: 3145727,
1514
- 244: 3407871,
1515
- 245: 3670015,
1516
- 246: 3932159,
1517
- 247: 4194303,
1518
- 248: 4718591,
1519
- 249: 5242879,
1520
- 250: 5767167,
1521
- 251: 6291455,
1522
- 252: 6815743,
1523
- 253: 7340031,
1524
- 254: 7864319,
1525
- 255: 4294967294,
1285
+ 32: 32,
1286
+ 33: 34,
1287
+ 34: 36,
1288
+ 35: 38,
1289
+ 36: 40,
1290
+ 37: 42,
1291
+ 38: 44,
1292
+ 39: 46,
1293
+ 40: 48,
1294
+ 41: 50,
1295
+ 42: 52,
1296
+ 43: 54,
1297
+ 44: 56,
1298
+ 45: 58,
1299
+ 46: 60,
1300
+ 47: 62,
1301
+ 48: 65,
1302
+ 49: 69,
1303
+ 50: 73,
1304
+ 51: 77,
1305
+ 52: 81,
1306
+ 53: 85,
1307
+ 54: 89,
1308
+ 55: 93,
1309
+ 56: 97,
1310
+ 57: 101,
1311
+ 58: 105,
1312
+ 59: 109,
1313
+ 60: 113,
1314
+ 61: 117,
1315
+ 62: 121,
1316
+ 63: 125,
1317
+ 64: 131,
1318
+ 65: 139,
1319
+ 66: 147,
1320
+ 67: 155,
1321
+ 68: 163,
1322
+ 69: 171,
1323
+ 70: 179,
1324
+ 71: 187,
1325
+ 72: 195,
1326
+ 73: 203,
1327
+ 74: 211,
1328
+ 75: 219,
1329
+ 76: 227,
1330
+ 77: 235,
1331
+ 78: 243,
1332
+ 79: 251,
1333
+ 80: 263,
1334
+ 81: 279,
1335
+ 82: 295,
1336
+ 83: 311,
1337
+ 84: 327,
1338
+ 85: 343,
1339
+ 86: 359,
1340
+ 87: 375,
1341
+ 88: 391,
1342
+ 89: 407,
1343
+ 90: 423,
1344
+ 91: 439,
1345
+ 92: 455,
1346
+ 93: 471,
1347
+ 94: 487,
1348
+ 95: 503,
1349
+ 96: 527,
1350
+ 97: 559,
1351
+ 98: 591,
1352
+ 99: 623,
1353
+ 100: 655,
1354
+ 101: 687,
1355
+ 102: 719,
1356
+ 103: 751,
1357
+ 104: 783,
1358
+ 105: 815,
1359
+ 106: 847,
1360
+ 107: 879,
1361
+ 108: 911,
1362
+ 109: 943,
1363
+ 110: 975,
1364
+ 111: 1007,
1365
+ 112: 1055,
1366
+ 113: 1119,
1367
+ 114: 1183,
1368
+ 115: 1247,
1369
+ 116: 1311,
1370
+ 117: 1375,
1371
+ 118: 1439,
1372
+ 119: 1503,
1373
+ 120: 1567,
1374
+ 121: 1631,
1375
+ 122: 1695,
1376
+ 123: 1759,
1377
+ 124: 1823,
1378
+ 125: 1887,
1379
+ 126: 1951,
1380
+ 127: 2015,
1381
+ 128: 2111,
1382
+ 129: 2239,
1383
+ 130: 2367,
1384
+ 131: 2495,
1385
+ 132: 2623,
1386
+ 133: 2751,
1387
+ 134: 2879,
1388
+ 135: 3007,
1389
+ 136: 3135,
1390
+ 137: 3263,
1391
+ 138: 3391,
1392
+ 139: 3519,
1393
+ 140: 3647,
1394
+ 141: 3775,
1395
+ 142: 3903,
1396
+ 143: 4031,
1397
+ 144: 4223,
1398
+ 145: 4479,
1399
+ 146: 4735,
1400
+ 147: 4991,
1401
+ 148: 5247,
1402
+ 149: 5503,
1403
+ 150: 5759,
1404
+ 151: 6015,
1405
+ 152: 6271,
1406
+ 153: 6527,
1407
+ 154: 6783,
1408
+ 155: 7039,
1409
+ 156: 7295,
1410
+ 157: 7551,
1411
+ 158: 7807,
1412
+ 159: 8063,
1413
+ 160: 8447,
1414
+ 161: 8959,
1415
+ 162: 9471,
1416
+ 163: 9983,
1417
+ 164: 10495,
1418
+ 165: 11007,
1419
+ 166: 11519,
1420
+ 167: 12031,
1421
+ 168: 12543,
1422
+ 169: 13055,
1423
+ 170: 13567,
1424
+ 171: 14079,
1425
+ 172: 14591,
1426
+ 173: 15103,
1427
+ 174: 15615,
1428
+ 175: 16127,
1429
+ 176: 16895,
1430
+ 177: 17919,
1431
+ 178: 18943,
1432
+ 179: 19967,
1433
+ 180: 20991,
1434
+ 181: 22015,
1435
+ 182: 23039,
1436
+ 183: 24063,
1437
+ 184: 25087,
1438
+ 185: 26111,
1439
+ 186: 27135,
1440
+ 187: 28159,
1441
+ 188: 29183,
1442
+ 189: 30207,
1443
+ 190: 31231,
1444
+ 191: 32255,
1445
+ 192: 34815,
1446
+ 193: 38911,
1447
+ 194: 43007,
1448
+ 195: 47103,
1449
+ 196: 51199,
1450
+ 197: 55295,
1451
+ 198: 59391,
1452
+ 199: 63487,
1453
+ 200: 69631,
1454
+ 201: 77823,
1455
+ 202: 86015,
1456
+ 203: 94207,
1457
+ 204: 102399,
1458
+ 205: 110591,
1459
+ 206: 118783,
1460
+ 207: 126975,
1461
+ 208: 139263,
1462
+ 209: 155647,
1463
+ 210: 172031,
1464
+ 211: 188415,
1465
+ 212: 204799,
1466
+ 213: 221183,
1467
+ 214: 237567,
1468
+ 215: 253951,
1469
+ 216: 278527,
1470
+ 217: 311295,
1471
+ 218: 344063,
1472
+ 219: 376831,
1473
+ 220: 409599,
1474
+ 221: 442367,
1475
+ 222: 475135,
1476
+ 223: 507903,
1477
+ 224: 557055,
1478
+ 225: 622591,
1479
+ 226: 688127,
1480
+ 227: 753663,
1481
+ 228: 819199,
1482
+ 229: 884735,
1483
+ 230: 950271,
1484
+ 231: 1015807,
1485
+ 232: 1114111,
1486
+ 233: 1245183,
1487
+ 234: 1376255,
1488
+ 235: 1507327,
1489
+ 236: 1638399,
1490
+ 237: 1769471,
1491
+ 238: 1900543,
1492
+ 239: 2031615,
1493
+ 240: 2228223,
1494
+ 241: 2490367,
1495
+ 242: 2752511,
1496
+ 243: 3014655,
1497
+ 244: 3276799,
1498
+ 245: 3538943,
1499
+ 246: 3801087,
1500
+ 247: 4063231,
1501
+ 248: 4456447,
1502
+ 249: 4980735,
1503
+ 250: 5505023,
1504
+ 251: 6029311,
1505
+ 252: 6553599,
1506
+ 253: 7077887,
1507
+ 254: 7602175,
1508
+ 255: 2151415807,
1526
1509
  }
1527
1510
 
1528
1511
  # Derived acquisition times that get stored in CDF data variables in L1a