osm_conflate/filter
2018-01-16 14:51:42 +03:00
..
CMakeLists.txt Relations work now 2018-01-15 15:54:53 +03:00
filter_planet_by_cats.cpp Tag filter in cpp, better categories matching in conflate 2018-01-15 19:36:32 +03:00
FindOsmium.cmake Initial version of cpp filter 2018-01-12 16:38:41 +03:00
FindProtozero.cmake Initial version of cpp filter 2018-01-12 16:38:41 +03:00
README.md Readme for filtering tool, and fixed the license 2018-01-16 14:51:42 +03:00
RTree.h Initial version of cpp filter 2018-01-12 16:38:41 +03:00
xml_centers_output.hpp Readme for filtering tool, and fixed the license 2018-01-16 14:51:42 +03:00

Filtering OSM by external dataset

When you got points of multiple categories, an Overpass API request may fail from the number of query clauses. For that, you would need to filter the planet file yourself. First, prepare a list of categories and dataset points:

conflate.py profile.py -f points.lst

Then compile the filtering tool:

mkdir build
cmake ..
make

Download a planet file or an extract for the country of import, update it to the minute, and feed it to the filtering tool:

./filter_planet_by_cats points.lst planet-latest.osm.pbf > filtered.osm

This will take an hour or two. The resulting OSM file should be used as an input to the conflation tool:

conflate.py profile.py --osm filtered.osm -c changes.json

Authors and License

The filter_planet_by_cats script was written by Ilya Zverev for MAPS.ME and published under Apache License 2.0.

The xml_centers_output.hpp and *.cmake files are based on libosmium code and hence published under the Boost License terms.

RTree.h is under public domain, downloaded from this repository.