All Projects → akhenakh → regionagogo

akhenakh / regionagogo

Licence: MIT license
A worldwide regions or fences database, give it coordinates it answers back with informations for the fence like country and state

Programming Languages

go
31211 projects - #10 most used programming language
Makefile
30231 projects

wercker status Go Report Card GoDoc

Region à gogo is a microservice, it's a simple database that returns metadata associated to a fence for a given location.

It uses S2 and a segment tree to create a fast geo shape database, details of implementation are described in this blog post.

It can also be used directly from docker docker run -P akhenakh/regionagogo

Data

You can use any geo data but the provided GeoJSON comes from who's on first.

It works too with Gadm Data but the data are not free for commercial use.

Regionagogo is using a BoltDB datafile to store the fences and a small segment tree as index lives in memory.

Build & Install

go get github.com/akhenakh/regionagogo
cd $GOPATH/src/github.com/akhenakh/regionagogo
make

To generate the database from GeoJSON use the provided ragogenfromjson command, you can specify the fields you want from the GeoJSON properties to be saved into the DB:

ragogenfromjson -filename testdata/world_region.geojson -importFields iso -dbpath ./region.db

Usage

Run regionagogo -dbpath ./region.db, it will listen on port 8082.

You can query via HTTP GET:

GET /query?lat=19.542915&lng=-155.665857

{
    "code": "US",
    "name": "Hawaii"
}

Using it as a library

You can use it in your own code without the HTTP interface:

gs := regionagogo.NewGeoSearch("region.db")
r := gs.StabbingQuery(msg.Latitude, msg.Longitude)

TODO

  • create a struct for data import, change the default coverer ...
  • move the cache outside of boltdb storage to make it generic
  • implement an in memory storage
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].