Popularity
0.9
Declining
Activity
0.0
Stable
4
3
2

Description

The OpenCage geocoding API supports forward and reverse geocoding for the entire world and is based on various open datasources like OpenStreetMap.

Programming language: Go
Tags: Geocoding     OpenCage     Opendata    

README

opencagedata - Go bindings for OpenCage Geocoder

Build Status GoDoc

https://opencagedata.com/

Installation

go get github.com/rubenv/opencagedata

Import into your application with:

import "github.com/rubenv/opencagedata"

Usage

geocoder := opencagedata.NewGeocoder("my-api-key")

Simple queries:

result, err := geocoder.Geocode("Fonteinstraat, Leuven", nil)
if err != nil {
    // Handle error
}
// Do something with result

Extra options can be passed as well:

result, err := geocoder.Geocode("Fonteinstraat, Leuven", &opencagedata.GeocodeParams{
    CountryCode: "be",
})
if err != nil {
    // Handle error
}
// Do something with result

License

(The MIT License)

Copyright (C) 2015-2018 by Ruben Vermeersch <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.


*Note that all licence references and agreements mentioned in the opencagedata README section above are relevant to that project's source code only.