An offline reverse geocoding library in C#. As a source of geodata may be used GeoNames.org.
For this library to work offline you need to download in advance the geodata files (from here). You can get file for one country or with all cities of the world with population more than 15k, 5k or 1k.
Also you may need to get country list to be able to get country name by its code.
There are two options:
- Load a geodata from a file
var geocoder = new ReverseGeocoder(@"C:\cities1000.txt");
Console.WriteLine(geocoder.NearestPlaceName(40.730885, -73.997383));
- Load a geodata from a
Stream
using (MemoryStream ms = new MemoryStream(geodata))
{
GeoSharp.ReverseGeoCoder geocoder = new GeoSharp.ReverseGeoCoder(ms);
Console.WriteLine(geocoder.NearestPlaceName(40.730885, -73.997383));
}
The look ups are very fast, O(logn)
, however building the initial KD-Tree is not so fast, O(kn * logn)
, so pre-selecting your datasets and filtering out places or areas that are not of interest (like water bodies) can be used to improve load speed and reduce memory usage.