Skip to content

Commit

Permalink
Revert "Update to DeltaDTM v1.1 (#8)" (#9)
Browse files Browse the repository at this point in the history
This reverts commit 27d547e.
  • Loading branch information
FlorisCalkoen authored Nov 21, 2024
1 parent 27d547e commit 477fc7e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions scripts/python/stac_deltadtm.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,18 @@
PARQUET_MEDIA_TYPE = "application/vnd.apache.parquet"

CONTAINER_NAME = "deltares-delta-dtm"
PREFIX = "v1.1"
PREFIX = "v1.0.1"
CONTAINER_URI = f"az://{CONTAINER_NAME}/{PREFIX}"
GEOPARQUET_STAC_ITEMS_HREF = f"az://items/{COLLECTION_ID}.parquet"

EXAMPLE_HREF = "az://deltares-delta-dtm/v1.1/DeltaDTM_v1_1_N03W052.tif"
EXAMPLE_HREF = "az://deltares-delta-dtm/v1.0.1/europe/DeltaDTM_v1_0_N03W052.tif"


@dataclasses.dataclass
class PathParser:
"""
Parses a cloud storage path into its component parts, specifically designed for Azure Blob Storage and COG data.
This class assumes paths are formatted like "az://<container>/<version>/<filename>.tif"
This class assumes paths are formatted like "az://<container>/<version>/<region>/<filename>.tif"
"""

path: str
Expand Down Expand Up @@ -123,7 +123,7 @@ def create_collection(

description = """
A global coastal digital terrain model, based on CopernicusDEM, ESA WorldCover, ICESat-2 and
GEDI data. For more information, see Pronk et al. (2024) DeltaDTM: A global coastal digital terrain model.
GEDI data. For more information, see Pronk et al. (2023) DeltaDTM: A global coastal digital terrain model.
"""

collection = pystac.Collection(
Expand Down Expand Up @@ -164,7 +164,7 @@ def create_collection(

pystac.extensions.scientific.ScientificExtension.add_to(collection)
collection.extra_fields["sci:citation"] = (
"""Pronk, Maarten. 2024. “DeltaDTM v1.1: A Global Coastal Digital Terrain Model.” 4TU.ResearchData. https://doi.org/10.4121/21997565.V3."""
"""Pronk, Maarten. 2023. “DeltaDTM: A Global Coastal Digital Terrain Model.” 4TU.ResearchData. https://doi.org/10.4121/21997565.V1."""
)
collection.extra_fields["sci:doi"] = "10.4121/21997565"
collection.extra_fields["sci:publications"] = [
Expand All @@ -175,7 +175,7 @@ def create_collection(
]

pystac.extensions.version.VersionExtension.add_to(collection)
collection.extra_fields["version"] = "1.1"
collection.extra_fields["version"] = "1.0"

return collection

Expand Down

0 comments on commit 477fc7e

Please sign in to comment.