Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 391 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 391 Bytes

geolatlong

geolatlong provides latitude, longitude to city mapping

cities mapping data taken from http://download.geonames.org/export/dump/

Usage Example

try {
	GeoReader reader = new GeoReader.Builder().faster().withDefaultCache(10000000).build();
	Location loc = reader.get(10.0388179, 76.449791);
	System.out.println(loc.getCity() + "/" + loc.getCountry());
}