From ece8c70aa6c19c042bbf68aa13951affcd6e2a41 Mon Sep 17 00:00:00 2001 From: gadgethd <111318106+gadgethd@users.noreply.github.com> Date: Thu, 13 Aug 2026 00:43:57 +0000 Subject: [PATCH] fix(map): fetch DEM z0-4 too (MapLibre 6 pyramid starts at lowest available zoom) --- scripts/fetch-terrain-tiles.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fetch-terrain-tiles.sh b/scripts/fetch-terrain-tiles.sh index 382d5bc..667d737 100755 --- a/scripts/fetch-terrain-tiles.sh +++ b/scripts/fetch-terrain-tiles.sh @@ -12,7 +12,7 @@ set -euo pipefail OUT="${1:-terrain-tiles}" : "${LON_MIN:=-11}"; : "${LON_MAX:=3}"; : "${LAT_MIN:=49.5}"; : "${LAT_MAX:=61}" -: "${Z_MIN:=5}"; : "${Z_MAX:=12}"; : "${JOBS:=32}" +: "${Z_MIN:=0}"; : "${Z_MAX:=12}"; : "${JOBS:=32}" BASE="https://s3.amazonaws.com/elevation-tiles-prod/terrarium" mkdir -p "$OUT"