From 1939b3cc2163892f2e603df684e107b7530833f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Beli=C3=ABn?= Date: Fri, 20 Dec 2024 15:26:35 +0100 Subject: [PATCH] Update Wegenregister (Flanders, Belgium) Related to #471 --- .github/workflows/belgium-flanders.yml | 4 ++-- README.md | 2 +- data/belgium/flanders/README.md | 2 +- data/belgium/flanders/process.sh | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/belgium-flanders.yml b/.github/workflows/belgium-flanders.yml index d892650d..cc23ee36 100644 --- a/.github/workflows/belgium-flanders.yml +++ b/.github/workflows/belgium-flanders.yml @@ -54,8 +54,8 @@ jobs: country: europe/belgium - name: Download & Unzip Wegenregister data run: | - wget --content-disposition "https://download.vlaanderen.be/bff/v1/Orders/248409/download/7fae9d05-e147-48d3-8dfa-d66de16a2fb6" - unzip -j "Wegenregister_SHAPE_20240620.zip" "Shapefile/Wegsegment.*" + wget --content-disposition "https://download.vlaanderen.be/bff/v1/Orders/306141/download/65f6195e-d0d7-427e-84f3-c7d7669fad5b" + unzip -j "Wegenregister_SHAPE_20241219.zip" "Shapefile/Wegsegment.*" - name: Convert (and filter) Wegenregister to GeoJSON run: | ogr2ogr -f "GeoJSON" -progress \ diff --git a/README.md b/README.md index 8414bd1c..3e445129 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ OpenStreetMap (OSM) is extremly good at quickly creating a usable map. It is les [be-bru-2]: https://bric.brussels/en/our-solutions/urbis-solutions/urbis-data/urbis-adm [be-bru-3]: https://maproulette.org/browse/challenges/14675 [be-vla-1]: https://github.com/osmbe/road-completion/tree/master/data/belgium/flanders -[be-vla-2]: https://download.vlaanderen.be/product/10481-wegenregister-20062024 +[be-vla-2]: https://download.vlaanderen.be/product/10657-wegenregister-19122024 [be-vla-3]: https://maproulette.org/browse/challenges/24090 [be-wal-1]: https://github.com/osmbe/road-completion/tree/master/data/belgium/wallonia [be-wal-2]: http://geoportail.wallonie.be/catalogue/b795de68-726c-4bdf-a62a-a42686aa5b6f.html diff --git a/data/belgium/flanders/README.md b/data/belgium/flanders/README.md index f7054a97..1bcf769b 100644 --- a/data/belgium/flanders/README.md +++ b/data/belgium/flanders/README.md @@ -2,7 +2,7 @@ [![🇧🇪 Flanders, Belgium](https://github.com/osmbe/road-completion/actions/workflows/belgium-flanders.yml/badge.svg)](https://github.com/osmbe/road-completion/actions/workflows/belgium-flanders.yml) -> Source: +> Source: ## Filters diff --git a/data/belgium/flanders/process.sh b/data/belgium/flanders/process.sh index 59736a02..cbf9b694 100644 --- a/data/belgium/flanders/process.sh +++ b/data/belgium/flanders/process.sh @@ -1,6 +1,6 @@ #!/bin/sh -FILENAME="Wegenregister_SHAPE_20240620" +FILENAME="Wegenregister_SHAPE_20241219" MAPROULETTE_CHALLENGE=24090 # Make script directory working directory @@ -12,7 +12,7 @@ cd `dirname "$(realpath $0)"` mkdir -p "./source/" if [ ! -d "./source/$FILENAME" ]; then - wget -O "./source/$FILENAME.zip" "https://downloadagiv.blob.core.windows.net/wegenregister/$FILENAME.zip" + wget -O "./source/$FILENAME.zip" "https://download.vlaanderen.be/bff/v1/Orders/306141/download/65f6195e-d0d7-427e-84f3-c7d7669fad5b" unzip -j "./source/$FILENAME.zip" -d "./source/$FILENAME/" "$FILENAME/Shapefile/Wegsegment.*" fi