Skip to content

Commit

Permalink
Add both ATBD and Prodc Spec identifiers (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottstanie authored Jan 16, 2025
1 parent 6367d7f commit 2e3f974
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/disp_s1/product.py
Original file line number Diff line number Diff line change
Expand Up @@ -1026,6 +1026,24 @@ def _create_metadata_group(
logger.info("Creating /metadata group in %s", output_name)
with h5netcdf.File(output_name, "a") as f:
metadata_group = f.create_group(METADATA_GROUP_NAME)
_create_dataset(
group=metadata_group,
name="algorithm_theoretical_basis_document_id",
dimensions=(),
data="JPL D-108765",
fillvalue=None,
description=(
"Document identifier for Algorithm Theoretical Basis Document (ATBD)"
),
)
_create_dataset(
group=metadata_group,
name="product_specification_document_id",
dimensions=(),
data="JPL D-108772",
fillvalue=None,
description="Document identifier for Product Specification",
)
_create_dataset(
group=metadata_group,
name="disp_s1_software_version",
Expand Down

0 comments on commit 2e3f974

Please sign in to comment.