geocoder_offline 0.2.1 copy "geocoder_offline: ^0.2.1" to clipboard
geocoder_offline: ^0.2.1 copied to clipboard

Package for super-fast offline reverse geocoding. Search is done in the file of your choice.

Offline Geocoder #

Dart library for super-fast offline reverse geocoding. Package use k-d tree for a search of the nearest location in a given file. One when Geocoder is initialized, search for location is super-fast, about 4-5 milliseconds.

Data #

For using the reverse geocoding library you need to provide а file with data about places among you want to run reverse geocoding. In examples you can see how to use а library with two example files:

  1. GeoNames data file with all world cities with a population above 15 000
  2. USGS data file with USA cities with a population above 5000.

Library allows you to use any other file who has at least data about name, latitude, and longitude of places you want to search.

Usage #

Import #

import 'package:geocoder_offline/geocoder_offline.dart';
copied to clipboard

Initialization #

var geocoder = GeocodeData(
    File('/example/NationalFedCodes_20191101.csv').readAsStringSync(), //input string
    'FEATURE_NAME', // place name header
    'STATE_ALPHA', // state/countery header
    'PRIMARY_LATITUDE', // latitute header
    'PRIMARY_LONGITUDE', // longitude header
    fieldDelimiter: ',', // fields delimiter
    eol: '\n');
copied to clipboard

Reverse geocoding #

List<LocationResult> result = geocoder.search(41.881832, -87.623177);
copied to clipboard

Features and bugs #

If you any problem using library or you have any new needs, please file feature requests and bugs at the issue tracker.

23
likes
140
points
57
downloads

Publisher

unverified uploader

Weekly Downloads

2024.08.20 - 2025.03.04

Package for super-fast offline reverse geocoding. Search is done in the file of your choice.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

csv, kdtree

More

Packages that depend on geocoder_offline