-
Notifications
You must be signed in to change notification settings - Fork 6
/
master.makefile
42 lines (39 loc) · 1.36 KB
/
master.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#---- RUN
# make -f master.makefile NAME=India ISO2=IN WEST=67.0 NORTH=37.5 EAST=99.0 SOUTH=05.0 PLACES=15 SLICE=6
# make -f master.makefile administrative NAME=India ISO2=IN WEST=67.0 NORTH=37.5 EAST=99.0 SOUTH=05.0 PLACES=15 SLICE=6
#---- DEFAULT VALUES (customizable):
# Geo data
export NAME=India
export ISO2=IN
#export escaped_A = $(subst $e ,_,$(NAME))
export WEST=67.0
export NORTH=37.5
export EAST=99.0
export SOUTH=05.0
export WIDTH=1280
export AREA_SIZE=etopo
# Pseudo-Mercator|GoogleMaps|OSM=EPSG:3857 (m)
# World Mercator=EPSG:3395 (m)
# WGS84-WGS84=EPSG:4326 (⁰) -------- GIS raw default
export PROJECTION=EPSG:3857
export PLACES=15
export SLICE=8
# script data
export VERSION=0.8
#---- MAKE SCRIPT
end: topography hillshade administrative water d3
topography:
$(MAKE) -C 01_topography -f topography.makefile #works
hillshade:
$(MAKE) -C 02_hillshade -f hillshade.makefile #works
administrative:
$(MAKE) -C 03_administrative -f administrative.makefile #works
admgadm:
$(MAKE) -C 03_administrative -f adm-gadm.makefile #works
water:
$(MAKE) -C 04_water -f water.makefile #works
grouping:
#$(MAKE) -C 07_move -f merge.makefile # what is this for ?
d3:
$(MAKE) -C 09_d3 -f d3.makefile #works
# Note: d3.makefile and js/wikiatlas.js requires to http-server on http://127.0.0.1:8080 the resources files, staring at project root.