I've setup a local OSM Website instance and ran an experiment with a group during few months and now I want to parse the data. The overall data is less than 10k points and I need to show them in a single image, in a Kernel density map for example. The Website only shows mapped data after a high zoom level, in which the whole area isn't covered. Is there a way to gather this data from my local OSM server? If I could export the data and convert to shp or another GIS-like file I could make that map with 3rd party GIS, but I don't know how to export all the data. asked 22 Sep '20, 20:37 carlosguedes |
If you have a local instance of the OSM web site, then you can use the /map API call to download all of your data as an OSM xml file. This can then be imported into a PostGIS database with osm2pgsql, or directly loaded into QGIS, or converted to shape files with e.g. osmium or ogr2ogr. If the area covered by your points is larger than 0.25 degrees squared you will have to adjust the answered 22 Sep '20, 22:05 Frederik Ramm ♦ |