POI-Refresh: Abdeckung auf alle 15 Tile-Laender erweitert (war nur DACH)

Der monatliche DSM-Job fragte nur germany/austria/switzerland ab, die Karte
deckt aber TILES_REGIONS (DACH + 12 Anrainer) ab -> POIs fehlten ausserhalb
DACH. Laenderliste jetzt in docker-compose.osm.yml als Env gesetzt (wirkt ohne
Image-Rebuild) und als Default in refresh.sh gespiegelt.
This commit is contained in:
rene 2026-06-06 10:13:56 +02:00
parent 695908f937
commit 30e82b7931
2 changed files with 7 additions and 2 deletions

View file

@ -12,5 +12,8 @@ services:
- ./data:/data # gleiche DB wie die App (/data/banyaro.db) - ./data:/data # gleiche DB wie die App (/data/banyaro.db)
environment: environment:
- DB_PATH=/data/banyaro.db - DB_PATH=/data/banyaro.db
# - COUNTRIES=switzerland austria germany # bei Bedarf überschreiben # Abdeckung = TILES_REGIONS im Makefile — Karten- und POI-Abdeckung
# synchron halten! Env überschreibt den Default in refresh.sh, daher
# wirkt eine Änderung hier OHNE Image-Rebuild.
- COUNTRIES=germany austria switzerland france italy czech-republic poland slovakia hungary slovenia netherlands belgium luxembourg denmark liechtenstein
restart: "no" restart: "no"

View file

@ -11,7 +11,9 @@ set -euo pipefail
DB="${DB_PATH:-/data/banyaro.db}" DB="${DB_PATH:-/data/banyaro.db}"
WORK="${WORK_DIR:-/work}" WORK="${WORK_DIR:-/work}"
COUNTRIES="${COUNTRIES:-switzerland austria germany}" # Default = TILES_REGIONS im Makefile (Karten- und POI-Abdeckung synchron halten).
# Produktiv setzt docker-compose.osm.yml die Liste zusätzlich per Env.
COUNTRIES="${COUNTRIES:-germany austria switzerland france italy czech-republic poland slovakia hungary slovenia netherlands belgium luxembourg denmark liechtenstein}"
GEOFABRIK="${GEOFABRIK_BASE:-https://download.geofabrik.de/europe}" GEOFABRIK="${GEOFABRIK_BASE:-https://download.geofabrik.de/europe}"
KEEP_BACKUPS="${KEEP_BACKUPS:-3}" KEEP_BACKUPS="${KEEP_BACKUPS:-3}"
PREBUILT_SQLITE="${PREBUILT_SQLITE:-}" PREBUILT_SQLITE="${PREBUILT_SQLITE:-}"