Is there a way to access and export previous versions of the map, for a specific country and date? asked 14 Jun '21, 12:49 Mert Su |
Use overpass turbo (https://overpass-turbo.eu/). Create a bounding box over your desired area, then use the following code and/or use the examples and resources on the webpage to tailor the code to isolate the data that you want (the below code loads all drinking water objects as they existed on 2016-01-01). Export the data to kml and upload to qgis! [date:"2016-01-01T00:00:00Z"]; ( node [amenity=drinking_water] ({{bbox}}); way [amenity=drinking_water] ({{bbox}}); relation [amenity=drinking_water] ({{bbox}}); ); out body;
answered 02 Aug '22, 12:37 lee1234566666 |
Previous versions of the data, yes; previous versions of the map, no. This means you can get the data but making it into a map is your own responsibility. For getting the data for a specific point in time,
If you then want to make a map from the resulting file, you'd basically follow standard instructions for a tile server setup e.g. switch2osm.org. If you want to generate a map that looks exactly like the map on OSM looked at the time, you will want to check out a suitable older version of the answered 14 Jun '21, 12:56 Frederik Ramm ♦ Thank you, have a nice day.
(14 Jun '21, 14:24)
Mert Su
|