Skip to content

Commit

Permalink
Merge pull request #819 from PyPSA/retrieve-to-data
Browse files Browse the repository at this point in the history
Retrieve GLC and WDPA to data directory, not resources
  • Loading branch information
fneum authored Dec 29, 2023
2 parents 6ee82e0 + 02b0996 commit a54d00d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
7 changes: 3 additions & 4 deletions rules/build_electricity.smk
Original file line number Diff line number Diff line change
Expand Up @@ -208,10 +208,9 @@ rule build_ship_raster:

rule determine_availability_matrix_MD_UA:
input:
copernicus=RESOURCES
+ "Copernicus_LC100_global_v3.0.1_2019-nrt_Discrete-Classification-map_EPSG-4326.tif",
wdpa=RESOURCES + f"WDPA.gpkg",
wdpa_marine=RESOURCES + f"WDPA_WDOECM_marine.gpkg",
copernicus="data/Copernicus_LC100_global_v3.0.1_2019-nrt_Discrete-Classification-map_EPSG-4326.tif",
wdpa="data/WDPA.gpkg",
wdpa_marine="data/WDPA_WDOECM_marine.gpkg",
gebco=lambda w: (
"data/bundle/GEBCO_2014_2D.nc"
if "max_depth" in config["renewable"][w.technology].keys()
Expand Down
17 changes: 8 additions & 9 deletions rules/retrieve.smk
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ if config["enable"]["retrieve"] and config["enable"].get(
static=True,
),
output:
protected(RESOURCES + "natura.tiff"),
RESOURCES + "natura.tiff",
log:
LOGS + "retrieve_natura_raster.log",
resources:
Expand Down Expand Up @@ -239,8 +239,7 @@ if config["enable"]["retrieve"]:
static=True,
),
output:
RESOURCES
+ "Copernicus_LC100_global_v3.0.1_2019-nrt_Discrete-Classification-map_EPSG-4326.tif",
"data/Copernicus_LC100_global_v3.0.1_2019-nrt_Discrete-Classification-map_EPSG-4326.tif",
run:
move(input[0], output[0])

Expand Down Expand Up @@ -286,10 +285,10 @@ if config["enable"]["retrieve"]:
keep_local=True,
),
params:
zip=RESOURCES + f"WDPA_shp.zip",
folder=directory(RESOURCES + f"WDPA"),
zip="data/WDPA_shp.zip",
folder=directory("data/WDPA"),
output:
gpkg=RESOURCES + f"WDPA.gpkg",
gpkg=protected("data/WDPA.gpkg"),
run:
shell("cp {input} {params.zip}")
shell("unzip -o {params.zip} -d {params.folder}")
Expand All @@ -312,10 +311,10 @@ if config["enable"]["retrieve"]:
keep_local=True,
),
params:
zip=RESOURCES + f"WDPA_WDOECM_marine.zip",
folder=directory(RESOURCES + f"WDPA_WDOECM_marine"),
zip="data/WDPA_WDOECM_marine.zip",
folder=directory("data/WDPA_WDOECM_marine"),
output:
gpkg=RESOURCES + f"WDPA_WDOECM_marine.gpkg",
gpkg=protected("data/WDPA_WDOECM_marine.gpkg"),
run:
shell("cp {input} {params.zip}")
shell("unzip -o {params.zip} -d {params.folder}")
Expand Down

0 comments on commit a54d00d

Please sign in to comment.