From 635fd7eff0acb6bc0633ccb2ae7e78166de9e6bc Mon Sep 17 00:00:00 2001 From: danieldegroot2 <67521919+danieldegroot2@users.noreply.github.com> Date: Wed, 11 Oct 2023 23:32:14 +0200 Subject: [PATCH] Update get_osm_boundaries.sh --- scripts/get_osm_boundaries.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/get_osm_boundaries.sh b/scripts/get_osm_boundaries.sh index 89d8735..6c6a900 100755 --- a/scripts/get_osm_boundaries.sh +++ b/scripts/get_osm_boundaries.sh @@ -10,7 +10,7 @@ get_osm_boundary_by_id() { local name="$1" local id="$2" - wget -O "$name.osm" "https://www.openstreetmap.org/api/0.6/relation/$id/full" + wget -O "$name.osm" "https://api.openstreetmap.org/api/0.6/relation/$id/full" osmium getid --remove-tags --add-referenced "$name.osm" "r$id" --output-format=opl \ | sed -e "s/ T[^ ]\+ / Ttype=multipolygon,cc=$name /" >"$name.opl"