-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
34 lines (28 loc) · 1.17 KB
/
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
# To install the tilemill project
install:
mkdir -p ${HOME}/Documents/MapBox/project
ln -sf "`pwd`" ${HOME}/Documents/MapBox/project/transit-star-maps
bc_skytrain:
rm -f output.png
cp -f bc_skytrain.mml project.mml
../tilemill/index.js export transit-star-maps output.png --format=png --static_zoom=13 --width=3000 --height=3000
bart:
rm -f output.png
cp -f bart.mml project.mml
../tilemill/index.js export transit-star-maps output.png --format=png --static_zoom=13 --width=3000 --height=3000
la_metro:
rm -f output.png
cp -f la_metro.mml project.mml
../tilemill/index.js export transit-star-maps output.png --format=png --static_zoom=13 --width=3000 --height=3000
montreal:
rm -f output.png
cp -f montreal.mml project.mml
../tilemill/index.js export transit-star-maps output.png --format=png --static_zoom=13 --width=3000 --height=3000
toronto:
rm -f output.png
cp -f toronto.mml project.mml
../tilemill/index.js export transit-star-maps output.png --format=png --static_zoom=13 --width=3000 --height=3000
trimet:
rm -f output.png
cp -f trimet.mml project.mml
../tilemill/index.js export transit-star-maps output.png --format=png --static_zoom=13 --width=3000 --height=3000