Skip to content
Merged
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions workflow/rules/fetch_data.smk
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if config["enable"].get("retrieve_raster", True):
"""retrieve GEBCO 2025 bathymetry data from Zenodo bundle"""
input:
gebco=storage.http(
"https://zenodo.org/record/17697456/files/GEBCO_tiff.zip"
"https://zenodo.org/records/17697456/files/GEBCO_tiff.zip"
),
output:
gebco="resources/data/landuse_availability/GEBCO_tiff/gebco_2025_CN.tif",
Expand Down Expand Up @@ -98,7 +98,7 @@ elif config["enable"].get("retrieve_cutout", False):
rule retrieve_cutout:
input:
zenodo_cutout=storage.http(
"https://zenodo.org/record/16792792/files/China-2020c.nc"
"https://zenodo.org/records/16792792/files/China-2020c.nc"
),
output:
cutout="resources/cutouts/China-2020c.nc",
Expand Down
Loading