We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ae3eab commit c41190cCopy full SHA for c41190c
README.md
@@ -20,8 +20,12 @@ Tested on Debian/Ubuntu systems. Ensure you have Docker installed. See [official
20
# - europe/germany/baden-wuerttemberg
21
export REGION=europe/andorra
22
export DATE=$(date --date="3 days ago" +"%y%m%d")
23
+export OSM_FILE_IDENTIFIER=${REGION}-${DATE}.osm.pbf
24
-wget -O data/sample.pbf https://download.geofabrik.de/${REGION}-${DATE}.osm.pbf
25
+# download file
26
+wget -O ./data/sample.pbf https://download.geofabrik.de/${OSM_FILE_IDENTIFIER}
27
+# copy to root directory of project
28
+cp ./data/sample.pbf $(basename $OSM_FILE_IDENTIFIER)
29
30
# [optional] shut down existing compose stack
31
docker compose down --volumes --remove-orphans
0 commit comments