Skip to content

Commit 06b9a72

Browse files
committed
Merge branch 'master' of github.com:developmentseed/skynet-data
2 parents c1fc88f + dfd2a0a commit 06b9a72

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ LABEL_RATIO ?= 0
1010
ZOOM_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+
1317
data/osm/planet.mbtiles:
1418
mkdir -p $(dir $@)
1519
curl https://s3.amazonaws.com/mapbox/osm-qa-tiles/latest.planet.mbtiles.gz | gunzip > $@
@@ -18,9 +22,6 @@ data/osm/%.mbtiles:
1822
mkdir -p $(dir $@)
1923
curl 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
2627
data/all_tiles.txt:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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.)

0 commit comments

Comments
 (0)