Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 648 Bytes

README.md

File metadata and controls

18 lines (10 loc) · 648 Bytes

OfflineReverseGeocodeOSM

Offline reverse geocoding using OSM datasets.

Similar to https://github.com/AReallyGoodName/OfflineReverseGeocode but instead of using geonames it uses openmaps.

Current usage:

List nodes = OSMReader.openPBFFile("C:\Projects\offlinereversegeocode\Sydney.osm.pbf");

KDTree kdTree = new KDTree(nodes);

System.out.println(kdTree.findNearest( new GeoNode( -33.79, 151.202 ) )); // North Willoughby

System.out.println(kdTree.findNearest( new GeoNode( -34.56, 152.345 ) )); // Little Bay

Uses osm pdf datasets. Currently only does suburbs but will do streets soon.