-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
25 lines (19 loc) · 863 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
network: output/neretva.grd
vector: output/neretva.gpkg
map: ouput/neretva.jpg
ca: output/catchment.tif
pixels: output/neretva_pixels.rds
ws: output/neretva_ws.rds
all: network map ca pixels vector ws
output/neretva.grd: r/delineate.r data/dem.tif
Rscript r/delineate.r
output/neretva.gpkg: r/stream_vector.r output/neretva.grd data/dem.tif data/neretva_lc.gpkg data/neretva_geology.gpkg
Rscript r/stream_vector.r
ouput/neretva.jpg: r/map.r output/neretva.gpkg data/dem.tif
Rscript r/map.r
output/catchment.tif: r/catchment.r output/neretva.grd
Rscript r/catchment.r
output/neretva_pixels.rds: r/neretva_table.r output/catchment.tif output/neretva.grd output/neretva.gpkg output/neretva_ws.rds
Rscript r/neretva_table.r
output/neretva_ws.rds: r/watershed.r data/dem.tif output/neretva.grd output/catchment.tif output/neretva.gpkg
Rscript r/watershed.r