From b2ab969128985afe37d4c4754368fe6dc20e87d5 Mon Sep 17 00:00:00 2001 From: Tomas Pohanka Date: Tue, 26 May 2020 20:50:00 +0200 Subject: [PATCH] Update steps for 'Using your own OSM data' (#889) Add more clear step into quickstart.md for using own OSM data fix #843 --- QUICKSTART.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/QUICKSTART.md b/QUICKSTART.md index 336d1e160..a8b5f9d2d 100644 --- a/QUICKSTART.md +++ b/QUICKSTART.md @@ -363,11 +363,11 @@ This is generating `.mbtiles` for your area : [ MIN_ZOOM: "0" - MAX_ZOOM: "7" ./quickstart.sh yukon # Yukon, Canada ``` ### Using your own OSM data -Mbtiles can be generated from an arbitrary osm.pbf (e.g. for a region that is not covered by an existing extract) by making the `data/` directory and placing an osm.pbf inside/ +Mbtiles can be generated from an arbitrary osm.pbf (e.g. for a region that is not covered by an existing extract) by making the `data/` directory and placing an *-latest.osm.pbf inside. Inside of folder have to be `docker-compose-config.yml` file too, otherwize whole folder `data/` will be deleted and `download-osm` will try to download osm.pbf file from `geofabric`, `osmfr` or `bbbike`. ``` mkdir -p data -mv my.osm.pbf data/ +mv my-latest.osm.pbf data/ ./quickstart.sh my ```