@@ -10,6 +10,8 @@ rule download_cutout_slope:
1010 vector = "resources/user/shapes/{shape}.parquet" ,
1111 output :
1212 path = "resources/automatic/cutout/{shape}/slope.tif" ,
13+ log :
14+ "logs/{shape}/download_cutout_slope.log" ,
1315 wrapper :
1416 "v7.2.0/geo/rasterio/clip-geotiff"
1517
@@ -23,6 +25,8 @@ rule download_cutout_bathymetry:
2325 vector = "resources/user/shapes/{shape}.parquet" ,
2426 output :
2527 path = "resources/automatic/cutout/{shape}/bathymetry.tif" ,
28+ log :
29+ "logs/{shape}/download_cutout_bathymetry.log" ,
2630 wrapper :
2731 "v7.2.0/geo/rasterio/clip-geotiff"
2832
@@ -34,6 +38,8 @@ rule download_globcover:
3438 url = internal ["resources" ]["automatic" ]["globcover" ],
3539 output :
3640 "resources/automatic/global/globcover.zip" ,
41+ log :
42+ "logs/download_globcover.log" ,
3743 conda :
3844 "../envs/shell.yaml"
3945 shell :
@@ -70,6 +76,8 @@ rule download_ghsl:
7076 url = internal ["resources" ]["automatic" ]["ghsl" ],
7177 output :
7278 "resources/automatic/global/ghsl_built_s.zip" ,
79+ log :
80+ "logs/download_ghsl.log" ,
7381 conda :
7482 "../envs/shell.yaml"
7583 shell :
@@ -86,6 +94,8 @@ rule unzip_ghsl:
8694 zipfile = rules .download_ghsl .output ,
8795 output :
8896 "resources/automatic/global/ghsl_built_s.tif" ,
97+ log :
98+ "logs/unzip_ghsl.log" ,
8999 conda :
90100 "../envs/shell.yaml"
91101 shell :
0 commit comments