kopia lustrzana https://github.com/onthegomap/planetiler
15 wiersze
412 B
Bash
Executable File
15 wiersze
412 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
cd "$(git rev-parse --show-cdup)"
|
|
|
|
mkdir -p data/sources
|
|
cd data/sources
|
|
|
|
wget -nc https://naciscdn.org/naturalearth/packages/natural_earth_vector.sqlite.zip
|
|
wget -nc https://osmdata.openstreetmap.de/download/water-polygons-split-3857.zip
|
|
wget -nc https://github.com/lukasmartinelli/osm-lakelines/releases/download/v0.9/lake_centerline.shp.zip
|