Skip to content
Merged
Changes from all 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
2 changes: 1 addition & 1 deletion imap_processing/ialirt/utils/create_xarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def create_xarray_from_records(records: list[dict]) -> xr.Dataset: # noqa: PLR0
# Populate the dataset variables
for i, record in enumerate(records):
for key, val in record.items():
if key in ["apid", "met", "met_in_utc", "ttj2000ns"]:
if key in ["apid", "met", "met_in_utc", "ttj2000ns", "last_modified"]:
continue
elif key in ["mag_B_GSE", "mag_B_GSM", "mag_B_RTN"]:
dataset[key].data[i, :] = val
Expand Down
Loading