File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ LABEL_RATIO ?= 0
1010ZOOM_LEVEL ?= 17
1111
1212# Download OSM QA tiles
13+ .PHONY : download-osm-tiles
14+ download-osm-tiles : data/osm/$(QA_TILES ) .mbtiles
15+ echo " Downloading $( QA_TILES) extract."
16+
1317data/osm/planet.mbtiles :
1418mkdir -p $(dir $@ )
1519curl https://s3.amazonaws.com/mapbox/osm-qa-tiles/latest.planet.mbtiles.gz | gunzip > $@
@@ -18,9 +22,6 @@ data/osm/%.mbtiles:
1822mkdir -p $(dir $@ )
1923curl https://s3.amazonaws.com/mapbox/osm-qa-tiles/latest.country/$(notdir $@ ) .gz | gunzip > $@
2024
21- .PHONY : download-osm-tiles
22- download-osm-tiles : data/osm/$(QA_TILES ) .mbtiles
23- echo " Downloading $( QA_TILES) extract."
2425
2526# Make a list of all the tiles within BBOX
2627data/all_tiles.txt :
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ Make a full training set according to these params with `make all`.
5757
5858 - Install [ NodeJS v4.6.2] ( https://nodejs.org/dist/v4.6.2/ )
5959 - Install [ tippecanoe] ( https://github.com/mapbox/tippecanoe )
60+ - Install [ GNU Parallel] ( https://www.gnu.org/software/parallel/ )
6061 - Clone this repo and run ` npm install ` . (Note that this includes a
6162 node-mapnik install, which sometimes has trouble building in bleeding-edge
6263 versions of node.)
You can’t perform that action at this time.
0 commit comments