Added initial version of KML to Tiles converter

This commit is contained in:
2026-07-24 00:06:24 -03:00
commit f2d0917b92
11 changed files with 790 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
script_dir="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
root_dir="$(cd -- "$script_dir/.." && pwd)"
: "${SOURCE_DIR:=$root_dir/source}"
: "${DATA_DIR:=$root_dir}"
: "${MAPS_CONFIG:=$root_dir/config/maps.json}"
export SOURCE_DIR DATA_DIR MAPS_CONFIG
exec python3 "$script_dir/build-tiles.py" "$@"