imap-processing 0.18.0__py3-none-any.whl → 0.19.2__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.
- imap_processing/_version.py +2 -2
- imap_processing/ancillary/ancillary_dataset_combiner.py +161 -1
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +6 -0
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +221 -1057
- imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +307 -283
- imap_processing/cdf/config/imap_codice_l2_variable_attrs.yaml +1044 -203
- imap_processing/cdf/config/imap_constant_attrs.yaml +4 -2
- imap_processing/cdf/config/imap_enamaps_l2-common_variable_attrs.yaml +11 -0
- imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +15 -1
- imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +5 -0
- imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +10 -4
- imap_processing/cdf/config/imap_idex_l2a_variable_attrs.yaml +33 -4
- imap_processing/cdf/config/imap_idex_l2b_variable_attrs.yaml +8 -91
- imap_processing/cdf/config/imap_idex_l2c_variable_attrs.yaml +106 -16
- imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +5 -4
- imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +4 -15
- imap_processing/cdf/config/imap_lo_l1c_variable_attrs.yaml +189 -98
- imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +85 -2
- imap_processing/cdf/config/imap_mag_l1c_variable_attrs.yaml +24 -1
- imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +20 -8
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +45 -35
- imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +110 -7
- imap_processing/cli.py +138 -93
- imap_processing/codice/codice_l0.py +2 -1
- imap_processing/codice/codice_l1a.py +167 -69
- imap_processing/codice/codice_l1b.py +42 -32
- imap_processing/codice/codice_l2.py +215 -9
- imap_processing/codice/constants.py +790 -603
- imap_processing/codice/data/lo_stepping_values.csv +1 -1
- imap_processing/decom.py +1 -4
- imap_processing/ena_maps/ena_maps.py +71 -43
- imap_processing/ena_maps/utils/corrections.py +291 -0
- imap_processing/ena_maps/utils/map_utils.py +20 -4
- imap_processing/ena_maps/utils/naming.py +8 -2
- imap_processing/glows/ancillary/imap_glows_exclusions-by-instr-team_20250923_v002.dat +10 -0
- imap_processing/glows/ancillary/imap_glows_map-of-excluded-regions_20250923_v002.dat +393 -0
- imap_processing/glows/ancillary/imap_glows_map-of-uv-sources_20250923_v002.dat +593 -0
- imap_processing/glows/ancillary/imap_glows_pipeline-settings_20250923_v002.json +54 -0
- imap_processing/glows/ancillary/imap_glows_suspected-transients_20250923_v002.dat +10 -0
- imap_processing/glows/l1b/glows_l1b.py +123 -18
- imap_processing/glows/l1b/glows_l1b_data.py +358 -47
- imap_processing/glows/l2/glows_l2.py +11 -0
- imap_processing/hi/hi_l1a.py +124 -3
- imap_processing/hi/hi_l1b.py +154 -71
- imap_processing/hi/hi_l1c.py +4 -109
- imap_processing/hi/hi_l2.py +104 -60
- imap_processing/hi/utils.py +262 -8
- imap_processing/hit/l0/constants.py +3 -0
- imap_processing/hit/l0/decom_hit.py +3 -6
- imap_processing/hit/l1a/hit_l1a.py +311 -21
- imap_processing/hit/l1b/hit_l1b.py +54 -126
- imap_processing/hit/l2/hit_l2.py +6 -6
- imap_processing/ialirt/calculate_ingest.py +219 -0
- imap_processing/ialirt/constants.py +12 -2
- imap_processing/ialirt/generate_coverage.py +15 -2
- imap_processing/ialirt/l0/ialirt_spice.py +6 -2
- imap_processing/ialirt/l0/parse_mag.py +293 -42
- imap_processing/ialirt/l0/process_hit.py +5 -3
- imap_processing/ialirt/l0/process_swapi.py +41 -25
- imap_processing/ialirt/process_ephemeris.py +70 -14
- imap_processing/ialirt/utils/create_xarray.py +1 -1
- imap_processing/idex/idex_l0.py +2 -2
- imap_processing/idex/idex_l1a.py +2 -3
- imap_processing/idex/idex_l1b.py +2 -3
- imap_processing/idex/idex_l2a.py +130 -4
- imap_processing/idex/idex_l2b.py +158 -143
- imap_processing/idex/idex_utils.py +1 -3
- imap_processing/lo/ancillary_data/imap_lo_hydrogen-geometric-factor_v001.csv +75 -0
- imap_processing/lo/ancillary_data/imap_lo_oxygen-geometric-factor_v001.csv +75 -0
- imap_processing/lo/l0/lo_science.py +25 -24
- imap_processing/lo/l1b/lo_l1b.py +93 -19
- imap_processing/lo/l1c/lo_l1c.py +273 -93
- imap_processing/lo/l2/lo_l2.py +949 -135
- imap_processing/lo/lo_ancillary.py +55 -0
- imap_processing/mag/l1a/mag_l1a.py +1 -0
- imap_processing/mag/l1a/mag_l1a_data.py +26 -0
- imap_processing/mag/l1b/mag_l1b.py +3 -2
- imap_processing/mag/l1c/interpolation_methods.py +14 -15
- imap_processing/mag/l1c/mag_l1c.py +23 -6
- imap_processing/mag/l1d/mag_l1d.py +57 -14
- imap_processing/mag/l1d/mag_l1d_data.py +202 -32
- imap_processing/mag/l2/mag_l2.py +2 -0
- imap_processing/mag/l2/mag_l2_data.py +14 -5
- imap_processing/quality_flags.py +23 -1
- imap_processing/spice/geometry.py +89 -39
- imap_processing/spice/pointing_frame.py +4 -8
- imap_processing/spice/repoint.py +78 -2
- imap_processing/spice/spin.py +28 -8
- imap_processing/spice/time.py +12 -22
- imap_processing/swapi/l1/swapi_l1.py +10 -4
- imap_processing/swapi/l2/swapi_l2.py +15 -17
- imap_processing/swe/l1b/swe_l1b.py +1 -2
- imap_processing/ultra/constants.py +30 -24
- imap_processing/ultra/l0/ultra_utils.py +9 -11
- imap_processing/ultra/l1a/ultra_l1a.py +1 -2
- imap_processing/ultra/l1b/badtimes.py +35 -11
- imap_processing/ultra/l1b/de.py +95 -31
- imap_processing/ultra/l1b/extendedspin.py +31 -16
- imap_processing/ultra/l1b/goodtimes.py +112 -0
- imap_processing/ultra/l1b/lookup_utils.py +281 -28
- imap_processing/ultra/l1b/quality_flag_filters.py +10 -1
- imap_processing/ultra/l1b/ultra_l1b.py +7 -7
- imap_processing/ultra/l1b/ultra_l1b_culling.py +169 -7
- imap_processing/ultra/l1b/ultra_l1b_extended.py +311 -69
- imap_processing/ultra/l1c/helio_pset.py +139 -37
- imap_processing/ultra/l1c/l1c_lookup_utils.py +289 -0
- imap_processing/ultra/l1c/spacecraft_pset.py +140 -29
- imap_processing/ultra/l1c/ultra_l1c.py +33 -24
- imap_processing/ultra/l1c/ultra_l1c_culling.py +92 -0
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +400 -292
- imap_processing/ultra/l2/ultra_l2.py +54 -11
- imap_processing/ultra/utils/ultra_l1_utils.py +37 -7
- imap_processing/utils.py +3 -4
- {imap_processing-0.18.0.dist-info → imap_processing-0.19.2.dist-info}/METADATA +2 -2
- {imap_processing-0.18.0.dist-info → imap_processing-0.19.2.dist-info}/RECORD +118 -109
- imap_processing/idex/idex_l2c.py +0 -84
- imap_processing/spice/kernels.py +0 -187
- imap_processing/ultra/l1b/cullingmask.py +0 -87
- imap_processing/ultra/l1c/histogram.py +0 -36
- {imap_processing-0.18.0.dist-info → imap_processing-0.19.2.dist-info}/LICENSE +0 -0
- {imap_processing-0.18.0.dist-info → imap_processing-0.19.2.dist-info}/WHEEL +0 -0
- {imap_processing-0.18.0.dist-info → imap_processing-0.19.2.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
"""Decommutate HIT CCSDS data and create L1a data products."""
|
|
2
2
|
|
|
3
3
|
import logging
|
|
4
|
+
from datetime import datetime
|
|
5
|
+
from pathlib import Path
|
|
4
6
|
|
|
5
7
|
import numpy as np
|
|
6
8
|
import xarray as xr
|
|
@@ -19,6 +21,11 @@ from imap_processing.hit.l0.constants import (
|
|
|
19
21
|
ZENITH_ANGLES,
|
|
20
22
|
)
|
|
21
23
|
from imap_processing.hit.l0.decom_hit import decom_hit
|
|
24
|
+
from imap_processing.spice.time import (
|
|
25
|
+
et_to_datetime64,
|
|
26
|
+
met_to_datetime64,
|
|
27
|
+
ttj2000ns_to_et,
|
|
28
|
+
)
|
|
22
29
|
|
|
23
30
|
logger = logging.getLogger(__name__)
|
|
24
31
|
|
|
@@ -28,7 +35,7 @@ logger = logging.getLogger(__name__)
|
|
|
28
35
|
fillval = -9223372036854775808
|
|
29
36
|
|
|
30
37
|
|
|
31
|
-
def hit_l1a(packet_file: str) -> list[xr.Dataset]:
|
|
38
|
+
def hit_l1a(packet_file: Path, packet_date: str | None) -> list[xr.Dataset]:
|
|
32
39
|
"""
|
|
33
40
|
Will process HIT L0 data into L1A data products.
|
|
34
41
|
|
|
@@ -36,31 +43,42 @@ def hit_l1a(packet_file: str) -> list[xr.Dataset]:
|
|
|
36
43
|
----------
|
|
37
44
|
packet_file : str
|
|
38
45
|
Path to the CCSDS data packet file.
|
|
46
|
+
packet_date : str
|
|
47
|
+
The date of the packet data in 'YYYYMMDD' format. This is used to filter
|
|
48
|
+
data to the correct processing day since L0 will have a 20-minute
|
|
49
|
+
buffer before and after the processing day.
|
|
39
50
|
|
|
40
51
|
Returns
|
|
41
52
|
-------
|
|
42
53
|
processed_data : list[xarray.Dataset]
|
|
43
54
|
List of Datasets of L1A processed data.
|
|
44
55
|
"""
|
|
56
|
+
if not packet_date:
|
|
57
|
+
raise ValueError("Packet date is required for processing L1A data.")
|
|
58
|
+
|
|
45
59
|
# Unpack ccsds file to xarray datasets
|
|
46
|
-
datasets_by_apid = get_datasets_by_apid(packet_file)
|
|
60
|
+
datasets_by_apid = get_datasets_by_apid(str(packet_file))
|
|
47
61
|
|
|
48
62
|
# Create the attribute manager for this data level
|
|
49
63
|
attr_mgr = get_attribute_manager("l1a")
|
|
50
64
|
|
|
51
|
-
l1a_datasets = []
|
|
52
|
-
|
|
53
65
|
# Process l1a data products
|
|
66
|
+
l1a_datasets = []
|
|
54
67
|
if HitAPID.HIT_HSKP in datasets_by_apid:
|
|
55
68
|
logger.info("Creating HIT L1A housekeeping dataset")
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
69
|
+
hk_dataset = process_housekeeping_data(
|
|
70
|
+
datasets_by_apid[HitAPID.HIT_HSKP], attr_mgr, "imap_hit_l1a_hk"
|
|
71
|
+
)
|
|
72
|
+
# filter the housekeeping dataset to the processing day
|
|
73
|
+
hk_dataset = filter_dataset_to_processing_day(
|
|
74
|
+
hk_dataset, str(packet_date), epoch_vals=hk_dataset["epoch"].values
|
|
60
75
|
)
|
|
76
|
+
l1a_datasets.append(hk_dataset)
|
|
61
77
|
if HitAPID.HIT_SCIENCE in datasets_by_apid:
|
|
62
78
|
l1a_datasets.extend(
|
|
63
|
-
process_science(
|
|
79
|
+
process_science(
|
|
80
|
+
datasets_by_apid[HitAPID.HIT_SCIENCE], attr_mgr, str(packet_date)
|
|
81
|
+
)
|
|
64
82
|
)
|
|
65
83
|
return l1a_datasets
|
|
66
84
|
|
|
@@ -102,7 +120,15 @@ def subcom_sectorates(sci_dataset: xr.Dataset) -> xr.Dataset:
|
|
|
102
120
|
sci_dataset : xarray.Dataset
|
|
103
121
|
Xarray dataset with sectored rates data organized by species.
|
|
104
122
|
"""
|
|
105
|
-
|
|
123
|
+
# Initialize the dataset with the required variables
|
|
124
|
+
updated_dataset = sci_dataset[
|
|
125
|
+
[
|
|
126
|
+
"sectorates",
|
|
127
|
+
"hdr_minute_cnt",
|
|
128
|
+
"livetime_counter",
|
|
129
|
+
"hdr_dynamic_threshold_state",
|
|
130
|
+
]
|
|
131
|
+
].copy(deep=True)
|
|
106
132
|
|
|
107
133
|
# Calculate mod 10 values
|
|
108
134
|
hdr_min_count_mod_10 = updated_dataset.hdr_minute_cnt.values % 10
|
|
@@ -308,25 +334,272 @@ def add_cdf_attributes(
|
|
|
308
334
|
return dataset
|
|
309
335
|
|
|
310
336
|
|
|
337
|
+
def find_complete_mod10_sets(mod_vals: np.ndarray) -> np.ndarray:
|
|
338
|
+
"""
|
|
339
|
+
Find start indices where mod values match [0,1,2,3,4,5,6,7,8,9] pattern.
|
|
340
|
+
|
|
341
|
+
Parameters
|
|
342
|
+
----------
|
|
343
|
+
mod_vals : np.ndarray
|
|
344
|
+
1D array of mod 10 values from the hdr_minute_cnt field in the L1A counts data.
|
|
345
|
+
|
|
346
|
+
Returns
|
|
347
|
+
-------
|
|
348
|
+
np.ndarray
|
|
349
|
+
Indices in mod_vals where the complete pattern [0, 1, ..., 9] starts.
|
|
350
|
+
"""
|
|
351
|
+
# The pattern to match is an array from 0-9
|
|
352
|
+
window_size = 10
|
|
353
|
+
|
|
354
|
+
if mod_vals.size < window_size:
|
|
355
|
+
logger.warning(
|
|
356
|
+
"Mod 10 array is smaller than the required window size for "
|
|
357
|
+
"pattern matching."
|
|
358
|
+
)
|
|
359
|
+
return np.array([], dtype=int)
|
|
360
|
+
# Use sliding windows to find pattern matches
|
|
361
|
+
sw_view = np.lib.stride_tricks.sliding_window_view(mod_vals, window_size)
|
|
362
|
+
matches = np.all(sw_view == np.arange(window_size), axis=1)
|
|
363
|
+
return np.where(matches)[0]
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
def subset_sectored_counts(
|
|
367
|
+
sectored_counts_dataset: xr.Dataset, packet_date: str
|
|
368
|
+
) -> xr.Dataset:
|
|
369
|
+
"""
|
|
370
|
+
Subset data for complete sets of sectored counts and corresponding livetime values.
|
|
371
|
+
|
|
372
|
+
A set of sectored data starts with hydrogen and ends with iron and correspond to
|
|
373
|
+
the mod 10 values 0-9. The livetime values from the previous 10 minutes are used
|
|
374
|
+
to calculate the rates for each set since those counts are transmitted 10 minutes
|
|
375
|
+
after they were collected. Therefore, only complete sets of sectored counts where
|
|
376
|
+
livetime from the previous 10 minutes are available are included in the output.
|
|
377
|
+
|
|
378
|
+
Parameters
|
|
379
|
+
----------
|
|
380
|
+
sectored_counts_dataset : xarray.Dataset
|
|
381
|
+
The sectored counts dataset.
|
|
382
|
+
|
|
383
|
+
packet_date : str
|
|
384
|
+
The date of the packet data in 'YYYYMMDD' format, used for filtering.
|
|
385
|
+
|
|
386
|
+
Returns
|
|
387
|
+
-------
|
|
388
|
+
xarray.Dataset
|
|
389
|
+
A dataset of complete sectored counts and corresponding livetime values
|
|
390
|
+
for the processing day.
|
|
391
|
+
"""
|
|
392
|
+
# TODO: Update to use fill values for partial frames rather than drop them
|
|
393
|
+
|
|
394
|
+
# Modify livetime_counter to use a new epoch coordinate
|
|
395
|
+
# that is aligned with the original epoch dimension. This
|
|
396
|
+
# ensures that livetime doesn't get filtered when the original
|
|
397
|
+
# epoch dimension is filtered for complete sets.
|
|
398
|
+
sectored_counts_dataset = update_livetime_coord(sectored_counts_dataset)
|
|
399
|
+
|
|
400
|
+
# Identify 10-minute intervals of complete sectored counts
|
|
401
|
+
# by using the mod 10 values of the header minute counts.
|
|
402
|
+
# Mod 10 determines the species and energy bin the data belongs
|
|
403
|
+
# to. A mapping of mod 10 values to species and energy bins is
|
|
404
|
+
# provided in l0/constants.py for reference.
|
|
405
|
+
bin_size = 10
|
|
406
|
+
mod_10: np.ndarray = sectored_counts_dataset.hdr_minute_cnt.values % 10
|
|
407
|
+
start_indices = find_complete_mod10_sets(mod_10)
|
|
408
|
+
|
|
409
|
+
# Filter out start indices that are less than or equal to the bin size
|
|
410
|
+
# since the previous 10 minutes are needed for calculating rates
|
|
411
|
+
if start_indices.size == 0:
|
|
412
|
+
raise ValueError(
|
|
413
|
+
"No data to process - valid start indices not found for "
|
|
414
|
+
"complete sectored counts."
|
|
415
|
+
)
|
|
416
|
+
else:
|
|
417
|
+
start_indices = start_indices[start_indices >= bin_size]
|
|
418
|
+
|
|
419
|
+
# Subset data for complete sets of sectored counts.
|
|
420
|
+
# Each set of sectored counts is 10 minutes long, so we take the indices
|
|
421
|
+
# starting from the start indices and extending to the bin size of 10.
|
|
422
|
+
# This creates a 1D array of indices that correspond to the complete
|
|
423
|
+
# sets of sectored counts which is used to filter the L1A dataset and
|
|
424
|
+
# create the L1B sectored rates dataset.
|
|
425
|
+
data_indices = np.concatenate(
|
|
426
|
+
[np.arange(idx, idx + bin_size) for idx in start_indices]
|
|
427
|
+
)
|
|
428
|
+
complete_sectored_counts_dataset = sectored_counts_dataset.isel(epoch=data_indices)
|
|
429
|
+
|
|
430
|
+
epoch_per_complete_set = np.repeat(
|
|
431
|
+
[
|
|
432
|
+
complete_sectored_counts_dataset.epoch[idx : idx + bin_size].mean().item()
|
|
433
|
+
for idx in range(0, len(complete_sectored_counts_dataset.epoch), 10)
|
|
434
|
+
],
|
|
435
|
+
bin_size,
|
|
436
|
+
)
|
|
437
|
+
|
|
438
|
+
# Filter dataset for data in the processing day
|
|
439
|
+
|
|
440
|
+
# Trim the sectored data to epoch_per_complete_set values in the processing day
|
|
441
|
+
filtered_dataset = filter_dataset_to_processing_day(
|
|
442
|
+
complete_sectored_counts_dataset, packet_date, epoch_vals=epoch_per_complete_set
|
|
443
|
+
)
|
|
444
|
+
|
|
445
|
+
# Trim livetime to the size of the sectored data but shifted 10 minutes earlier.
|
|
446
|
+
filtered_dataset = subset_livetime(filtered_dataset)
|
|
447
|
+
|
|
448
|
+
return filtered_dataset
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
def update_livetime_coord(sectored_dataset: xr.Dataset) -> xr.Dataset:
|
|
452
|
+
"""
|
|
453
|
+
Update livetime_counter to use a new epoch coordinate.
|
|
454
|
+
|
|
455
|
+
Assign a new epoch coordinate to the `livetime_counter` variable.
|
|
456
|
+
This new coordinate is aligned with the original `epoch` dimension,
|
|
457
|
+
ensuring that `livetime_counter` remains unaffected when the original
|
|
458
|
+
`epoch` dimension is filtered for complete sets in `subset_sectored_counts`
|
|
459
|
+
function.
|
|
460
|
+
|
|
461
|
+
Parameters
|
|
462
|
+
----------
|
|
463
|
+
sectored_dataset : xarray.Dataset
|
|
464
|
+
The dataset containing sectored counts and livetime_counter data.
|
|
465
|
+
|
|
466
|
+
Returns
|
|
467
|
+
-------
|
|
468
|
+
xarray.Dataset
|
|
469
|
+
The updated dataset with modified livetime_counter.
|
|
470
|
+
"""
|
|
471
|
+
epoch_values = sectored_dataset.epoch.values
|
|
472
|
+
sectored_dataset = sectored_dataset.assign_coords(
|
|
473
|
+
{
|
|
474
|
+
"epoch_livetime": ("epoch", epoch_values),
|
|
475
|
+
}
|
|
476
|
+
)
|
|
477
|
+
da = sectored_dataset["livetime_counter"]
|
|
478
|
+
da = da.assign_coords(epoch_livetime=("epoch", epoch_values))
|
|
479
|
+
|
|
480
|
+
# Swap the dimension from 'epoch' to 'epoch_livetime'
|
|
481
|
+
da = da.swap_dims({"epoch": "epoch_livetime"})
|
|
482
|
+
|
|
483
|
+
# Update the dataset with the modified variable
|
|
484
|
+
sectored_dataset["livetime_counter"] = da
|
|
485
|
+
|
|
486
|
+
return sectored_dataset
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
def subset_livetime(dataset: xr.Dataset) -> xr.Dataset:
|
|
490
|
+
"""
|
|
491
|
+
Trim livetime to values shifted 10 minutes earlier than sectored data.
|
|
492
|
+
|
|
493
|
+
This ensures that the livetime values correspond to the sectored counts correctly
|
|
494
|
+
since sectored data is collected 10 minutes before it's transmitted.
|
|
495
|
+
|
|
496
|
+
Parameters
|
|
497
|
+
----------
|
|
498
|
+
dataset : xarray.Dataset
|
|
499
|
+
The dataset containing sectored counts and livetime data.
|
|
500
|
+
|
|
501
|
+
Returns
|
|
502
|
+
-------
|
|
503
|
+
xarray.Dataset
|
|
504
|
+
The updated dataset with trimmed livetime data.
|
|
505
|
+
"""
|
|
506
|
+
# epoch values are per science frame which is 1 minute
|
|
507
|
+
epoch_vals = dataset["epoch"].values
|
|
508
|
+
epoch_livetime_vals = dataset["epoch_livetime"].values
|
|
509
|
+
|
|
510
|
+
if not epoch_vals.size:
|
|
511
|
+
raise ValueError(
|
|
512
|
+
"Epoch values are empty. Cannot proceed with livetime subsetting."
|
|
513
|
+
)
|
|
514
|
+
|
|
515
|
+
# Get index positions of epoch[0] and epoch[-1] in epoch_livetime
|
|
516
|
+
start_idx = np.where(epoch_livetime_vals == epoch_vals[0])[0][0]
|
|
517
|
+
end_idx = np.where(epoch_livetime_vals == epoch_vals[-1])[0][0]
|
|
518
|
+
|
|
519
|
+
if start_idx < 10:
|
|
520
|
+
raise ValueError(
|
|
521
|
+
"Start index for livetime is less than 10. This indicates that the "
|
|
522
|
+
"dataset is too small to shift livetime correctly."
|
|
523
|
+
)
|
|
524
|
+
|
|
525
|
+
# Compute shifted indices by 10 minutes
|
|
526
|
+
start_trimmed = max(start_idx - 10, 0)
|
|
527
|
+
end_trimmed = max(end_idx - 10, 0)
|
|
528
|
+
|
|
529
|
+
return dataset.isel(epoch_livetime=slice(start_trimmed, end_trimmed + 1))
|
|
530
|
+
|
|
531
|
+
|
|
532
|
+
def filter_dataset_to_processing_day(
|
|
533
|
+
dataset: xr.Dataset,
|
|
534
|
+
packet_date: str,
|
|
535
|
+
epoch_vals: np.ndarray,
|
|
536
|
+
sc_tick: bool = False,
|
|
537
|
+
) -> xr.Dataset:
|
|
538
|
+
"""
|
|
539
|
+
Filter the dataset for data within the processing day.
|
|
540
|
+
|
|
541
|
+
Parameters
|
|
542
|
+
----------
|
|
543
|
+
dataset : xarray.Dataset
|
|
544
|
+
The dataset to filter.
|
|
545
|
+
packet_date : str
|
|
546
|
+
The date of the packet data in 'YYYYMMDD' format.
|
|
547
|
+
epoch_vals : np.ndarray
|
|
548
|
+
An array of epoch values. Used to identify indices of data that
|
|
549
|
+
belong in the processing day. For sectored counts data, an
|
|
550
|
+
array of mean epoch values for major frames (10 min. intervals)
|
|
551
|
+
is used to filter the dataset to ensure that major frames that span
|
|
552
|
+
midnight, but belong to the processing day, are included. For other
|
|
553
|
+
datasets, the dataset's epoch coordinate values will be used.
|
|
554
|
+
sc_tick : bool
|
|
555
|
+
If true, the dataset's sc_tick will be used to filter data as well.
|
|
556
|
+
This ensures that the ccsds headers that use sc_tick as a coordinate,
|
|
557
|
+
instead of epoch, also corresponds to the processing day.
|
|
558
|
+
|
|
559
|
+
Returns
|
|
560
|
+
-------
|
|
561
|
+
xarray.Dataset
|
|
562
|
+
The filtered dataset containing data within the processing day.
|
|
563
|
+
"""
|
|
564
|
+
processing_day = datetime.strptime(packet_date, "%Y%m%d").strftime("%Y-%m-%d")
|
|
565
|
+
|
|
566
|
+
# Filter dataset by epoch indices in processing day
|
|
567
|
+
epoch_dt = et_to_datetime64(ttj2000ns_to_et(epoch_vals))
|
|
568
|
+
epoch_indices_in_processing_day = np.where(
|
|
569
|
+
epoch_dt.astype("datetime64[D]") == np.datetime64(processing_day)
|
|
570
|
+
)[0]
|
|
571
|
+
dataset = dataset.isel(epoch=epoch_indices_in_processing_day)
|
|
572
|
+
|
|
573
|
+
# If sc_tick is provided (coord for ccsds headers), filter by sc_tick too
|
|
574
|
+
if sc_tick:
|
|
575
|
+
sc_tick_dt = met_to_datetime64(dataset["sc_tick"].values)
|
|
576
|
+
indices_in_processing_day = np.where(
|
|
577
|
+
sc_tick_dt.astype("datetime64[D]") == np.datetime64(processing_day)
|
|
578
|
+
)[0]
|
|
579
|
+
dataset = dataset.isel(sc_tick=indices_in_processing_day)
|
|
580
|
+
return dataset
|
|
581
|
+
|
|
582
|
+
|
|
311
583
|
def process_science(
|
|
312
|
-
dataset: xr.Dataset, attr_mgr: ImapCdfAttributes
|
|
584
|
+
dataset: xr.Dataset, attr_mgr: ImapCdfAttributes, packet_date: str
|
|
313
585
|
) -> list[xr.Dataset]:
|
|
314
586
|
"""
|
|
315
587
|
Will process science datasets for CDF products.
|
|
316
588
|
|
|
317
|
-
|
|
318
|
-
grouped into science frames,
|
|
319
|
-
and split into count rates and event datasets.
|
|
320
|
-
dataset attributes
|
|
321
|
-
|
|
589
|
+
The function processes binary science data for CDF creation.
|
|
590
|
+
The data is decommutated, decompressed, grouped into science frames,
|
|
591
|
+
and split into count rates, sectored count rates, and event datasets.
|
|
592
|
+
It also updates the dataset attributes according to specifications
|
|
593
|
+
in a cdf yaml file.
|
|
322
594
|
|
|
323
595
|
Parameters
|
|
324
596
|
----------
|
|
325
597
|
dataset : xarray.Dataset
|
|
326
598
|
A dataset containing HIT science data.
|
|
327
|
-
|
|
328
599
|
attr_mgr : ImapCdfAttributes
|
|
329
600
|
Attribute manager used to get the data product field's attributes.
|
|
601
|
+
packet_date : str
|
|
602
|
+
The date of the packet data, used for processing.
|
|
330
603
|
|
|
331
604
|
Returns
|
|
332
605
|
-------
|
|
@@ -338,20 +611,37 @@ def process_science(
|
|
|
338
611
|
# Decommutate and decompress the science data
|
|
339
612
|
sci_dataset = decom_hit(dataset)
|
|
340
613
|
|
|
341
|
-
#
|
|
342
|
-
|
|
614
|
+
# Create dataset for sectored data organized by species type
|
|
615
|
+
sectored_dataset = subcom_sectorates(sci_dataset)
|
|
616
|
+
|
|
617
|
+
# Subset sectored data for complete sets (10 min intervals covering all species)
|
|
618
|
+
sectored_dataset = subset_sectored_counts(sectored_dataset, packet_date)
|
|
619
|
+
|
|
620
|
+
# TODO:
|
|
621
|
+
# - headers are values per packet rather than per frame. Do these need to align
|
|
622
|
+
# with the science frames?
|
|
623
|
+
# For instance, the mean epoch for a frame that spans midnight might contain
|
|
624
|
+
# packets from the previous day but filtering sc_tick by processing day will
|
|
625
|
+
# exclude those packets. Is this an issue?
|
|
626
|
+
|
|
627
|
+
# Filter the science dataset to only include data from the processing day
|
|
628
|
+
sci_dataset = filter_dataset_to_processing_day(
|
|
629
|
+
sci_dataset, packet_date, epoch_vals=sci_dataset["epoch"].values, sc_tick=True
|
|
630
|
+
)
|
|
343
631
|
|
|
344
632
|
# Split the science data into count rates and event datasets
|
|
345
633
|
pha_raw_dataset = xr.Dataset(
|
|
346
634
|
{"pha_raw": sci_dataset["pha_raw"]}, coords={"epoch": sci_dataset["epoch"]}
|
|
347
635
|
)
|
|
348
|
-
count_rates_dataset = sci_dataset.drop_vars("pha_raw")
|
|
636
|
+
count_rates_dataset = sci_dataset.drop_vars(["pha_raw", "sectorates"])
|
|
349
637
|
|
|
350
638
|
# Calculate uncertainties for count rates
|
|
351
639
|
count_rates_dataset = calculate_uncertainties(count_rates_dataset)
|
|
640
|
+
sectored_count_rates_dataset = calculate_uncertainties(sectored_dataset)
|
|
352
641
|
|
|
353
642
|
l1a_datasets: dict = {
|
|
354
|
-
"imap_hit_l1a_counts": count_rates_dataset,
|
|
643
|
+
"imap_hit_l1a_counts-standard": count_rates_dataset,
|
|
644
|
+
"imap_hit_l1a_counts-sectored": sectored_count_rates_dataset,
|
|
355
645
|
"imap_hit_l1a_direct-events": pha_raw_dataset,
|
|
356
646
|
}
|
|
357
647
|
|