FLUTTER ECOSYSTEM

JankoLancer/geocoder_offline

用於離線超快速反向地理編碼的 Dart/Flutter 插件

geocoder_offline 專案封面
Stars
30
Forks
8
最近推送(UTC)
2024年1月25日
專案狀態
未封存
Janko Djuric GitHub avatar
GITHUB User

Janko Djuric ↗

Obsessed with learning new things. Currently developing at Flutter/Dart and contributing to its community.

Serbia
語言HTMLCSSDart

此儲存庫發佈的套件

使用的依賴

依賴清單 5 項
  • kdtree^0.2.0
  • csv^5.0.0
  • pedantic開發依賴^1.11.0
  • test開發依賴^1.16.5
  • flutter_test開發依賴{"sdk":"flutter"}

原始 README

以下為英文專案原文快照,最新內容請造訪 GitHub。

展開 / 收合專案 README

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';
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');
Reverse geocoding
List<LocationResult> result = geocoder.search(41.881832, -87.623177);

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.