├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.rst ├── conflate ├── __init__.py ├── __main__.py ├── conflate.py ├── conflator.py ├── data.py ├── dataset.py ├── geocoder.py ├── osm.py ├── places.bin ├── profile.py └── version.py ├── filter ├── CMakeLists.txt ├── FindOsmium.cmake ├── FindProtozero.cmake ├── README.md ├── RTree.h ├── filter_planet_by_cats.cpp └── xml_centers_output.hpp ├── profiles ├── auchan_moscow.py ├── azbuka.py ├── burgerking.py ├── minkult.py ├── moscow_addr.py ├── moscow_parkomats.py ├── navads_shell.py ├── navads_shell_json.py ├── rosinter.py ├── schocoladnitsa.py ├── velobike.py └── yandex_parser.py ├── scripts ├── README.md └── pack_places.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/README.rst -------------------------------------------------------------------------------- /conflate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/conflate/__init__.py -------------------------------------------------------------------------------- /conflate/__main__.py: -------------------------------------------------------------------------------- 1 | from . import run 2 | 3 | run() 4 | -------------------------------------------------------------------------------- /conflate/conflate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/conflate/conflate.py -------------------------------------------------------------------------------- /conflate/conflator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/conflate/conflator.py -------------------------------------------------------------------------------- /conflate/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/conflate/data.py -------------------------------------------------------------------------------- /conflate/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/conflate/dataset.py -------------------------------------------------------------------------------- /conflate/geocoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/conflate/geocoder.py -------------------------------------------------------------------------------- /conflate/osm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/conflate/osm.py -------------------------------------------------------------------------------- /conflate/places.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/conflate/places.bin -------------------------------------------------------------------------------- /conflate/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/conflate/profile.py -------------------------------------------------------------------------------- /conflate/version.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.4.1' 2 | -------------------------------------------------------------------------------- /filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/filter/CMakeLists.txt -------------------------------------------------------------------------------- /filter/FindOsmium.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/filter/FindOsmium.cmake -------------------------------------------------------------------------------- /filter/FindProtozero.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/filter/FindProtozero.cmake -------------------------------------------------------------------------------- /filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/filter/README.md -------------------------------------------------------------------------------- /filter/RTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/filter/RTree.h -------------------------------------------------------------------------------- /filter/filter_planet_by_cats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/filter/filter_planet_by_cats.cpp -------------------------------------------------------------------------------- /filter/xml_centers_output.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/filter/xml_centers_output.hpp -------------------------------------------------------------------------------- /profiles/auchan_moscow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/profiles/auchan_moscow.py -------------------------------------------------------------------------------- /profiles/azbuka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/profiles/azbuka.py -------------------------------------------------------------------------------- /profiles/burgerking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/profiles/burgerking.py -------------------------------------------------------------------------------- /profiles/minkult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/profiles/minkult.py -------------------------------------------------------------------------------- /profiles/moscow_addr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/profiles/moscow_addr.py -------------------------------------------------------------------------------- /profiles/moscow_parkomats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/profiles/moscow_parkomats.py -------------------------------------------------------------------------------- /profiles/navads_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/profiles/navads_shell.py -------------------------------------------------------------------------------- /profiles/navads_shell_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/profiles/navads_shell_json.py -------------------------------------------------------------------------------- /profiles/rosinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/profiles/rosinter.py -------------------------------------------------------------------------------- /profiles/schocoladnitsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/profiles/schocoladnitsa.py -------------------------------------------------------------------------------- /profiles/velobike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/profiles/velobike.py -------------------------------------------------------------------------------- /profiles/yandex_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/profiles/yandex_parser.py -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/pack_places.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/scripts/pack_places.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapsme/osm_conflate/HEAD/setup.py --------------------------------------------------------------------------------