mirror of
https://github.com/systemed/tilemaker
synced 2026-03-20 02:53:00 +01:00
17 lines
319 B
Bash
Executable file
17 lines
319 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
|
|
mkdir -p coastline
|
|
pushd coastline
|
|
|
|
if ! [ -f "water-polygons-split-4326.zip" ]; then
|
|
curl --proto '=https' --tlsv1.3 -sSfO https://osmdata.openstreetmap.de/download/water-polygons-split-4326.zip
|
|
fi
|
|
|
|
unzip -o -j water-polygons-split-4326.zip
|
|
|
|
popd
|