Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I-ALiRT: L0 parsing #246

Merged
merged 21 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
99 changes: 99 additions & 0 deletions imap_processing/ialirt/l0/decom_ialirt.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
import collections
import logging

import xarray as xr

from imap_processing.decom import decom_packets

logging.basicConfig(level=logging.ERROR)
logger = logging.getLogger(__name__)


def generate_xarray(packet_file: str, xtce: str, time_keys=None):
"""
Generate xarray from unpacked data.

Parameters
----------
packet_file : str
Path to the CCSDS data packet file.
xtce : str
Path to the XTCE packet definition file.
time_keys : dict
Keys used for creating xarray dataset

Returns
-------
xr.Dataset
A dataset containing the decoded data fields with 'time' as the coordinating
dimension.

Example Output:
---------------
# This is an example of what the xarray dataset might look like
# after being processed by this function.

<xarray.Dataset>
Dimensions: (SC_SCLK_SEC: 5)
Coordinates:
* SC_SCLK_SEC (SC_SCLK_SEC) int64 322168 322169 322170 322171 322172
Data variables:
SC_MAG_STATUS (SC_SCLK_SEC) int64 0 1 0 1 0
SC_HIT_STATUS (SC_SCLK_SEC) int64 1 0 1 0 1

This example shows a dataset with 'SC_SCLK_SEC' as the coordinate
and two data variables 'SC_MAG_STATUS' and 'SC_HIT_STATUS'.
"""
try:
packets = decom_packets(packet_file, xtce)
except Exception as e:
logger.error(f"Error during packet decomposition: {e!s}")
return
laspsandoval marked this conversation as resolved.
Show resolved Hide resolved

logger.info(f"Decommutated {len(packets)} packets from {packet_file}.")

if time_keys is None:
time_keys = {
"SC": "SC_SCLK_SEC",
"HIT": "HIT_SC_TICK",
"MAG": "MAG_ACQ",
"COD_LO": "COD_LO_ACQ",
"COD_HI": "COD_HI_ACQ",
"SWE": "SWE_ACQ_SEC",
"SWAPI": "SWAPI_ACQ",
}

instruments = list(time_keys.keys())

# Initialize storage dictionary using defaultdict
data_storage = {inst: collections.defaultdict(list) for inst in instruments}

for packet in packets:
for key, value in packet.data.items():
key_matched = False
for inst in instruments:
if key.startswith(inst):
# Directly append to the list
data_storage[inst][key].append(value.derived_value)
key_matched = True
break

if not key_matched:
# If after checking all instruments, none match, raise an error.
raise ValueError(f"Unexpected key '{key}' found in packet data.")

logger.info("Generating datasets for each instrument.")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
logger.info("Generating datasets for each instrument.")
logger.debug("Generating datasets for each instrument.")


# Generate xarray dataset for each instrument and spacecraft
datasets = {}
for inst in instruments:
dataset_dict = {
key: (time_keys[inst], data_storage[inst][key])
for key in data_storage[inst]
if key != time_keys[inst]
}
datasets[inst] = xr.Dataset(
dataset_dict, coords={time_keys[inst]: data_storage[inst][time_keys[inst]]}
)

return datasets
Empty file.
Loading
Loading