Skip to main content

Geocoder is a simple and consistent geocoding library.

Project description

image0 image1 image2 image3

Simple and consistent geocoding library written in Python.

Many online providers such as Google & Bing have geocoding services, these providers do not include Python libraries and have different JSON responses between each other.

It can be very difficult sometimes to parse a particular geocoding provider since each one of them have their own JSON schema.

Here is a typical example of retrieving a Lat & Lng from Google using Python, things shouldn’t be this hard.

>>> import requests
>>> url = 'https://maps.googleapis.com/maps/api/geocode/json'
>>> params = {'sensor': 'false', 'address': 'Mountain View, CA'}
>>> r = requests.get(url, params=params)
>>> results = r.json()['results']
>>> location = results[0]['geometry']['location']
>>> location['lat'], location['lng']
(37.3860517, -122.0838511)

Now lets use Geocoder to do the same task.

>>> import geocoder
>>> g = geocoder.google('Mountain View, CA')
>>> g.latlng
(37.3860517, -122.0838511)

Documentation

https://geocoder.readthedocs.org/

API Overview

Many properties are available once the geocoder object is created.

Forward

>>> import geocoder
>>> g = geocoder.google('Mountain View, CA')
>>> g.geojson
>>> g.json
>>> g.wkt
>>> g.osm

Reverse

>>> g = geocoder.google([45.15, -75.14], method='reverse')
>>> g.city
>>> g.state
>>> g.state_long
>>> g.country
>>> g.country_long

House Addresses

>>> g = geocoder.google("453 Booth Street, Ottawa ON")
>>> g.housenumber
>>> g.postal
>>> g.street
>>> g.street_long

IP Addresses

>>> g = geocoder.ip('199.7.157.0')
>>> g = geocoder.ip('me')
>>> g.latlng
>>> g.city

Bounding Box

Accessing the JSON & GeoJSON attributes will be different

>>> g = geocoder.google("Ottawa")
>>> g.bbox
{"northeast": [45.53453, -75.2465979], "southwest": [44.962733, -76.3539158]}

>>> g.geojson['bbox']
[-76.3539158, 44.962733, -75.2465979, 45.53453]

>>> g.southwest
[44.962733, -76.3539158]

Command Line Interface

$ geocode "Ottawa, ON"  >> ottawa.geojson
$ geocode "Ottawa, ON" \
    --provide google \
    --out geojson \
    --method geocode

Providers

Provider

Optimal

Usage Policy

ArcGIS

World

Baidu

China

API key

Bing

World

API key

CanadaPost

Canada

API key

FreeGeoIP

World

Geocoder.ca

CA & US

Rate Limit

GeoNames

World

Username

GeoOttawa

Ottawa

Google

World

Rate Limit, Policy

HERE

World

API key

IPInfo

World

Mapbox

World

API key

MapQuest

World

API key

Mapzen

World

API key

MaxMind

World

OpenCage

World

API key

OpenStreetMap

World

Policy

Tamu

US

API key

TomTom

World

API key

What3Words

World

API key

Yahoo

World

Yandex

Russia

Installation

PyPi Install

To install Geocoder, simply:

$ pip install geocoder

GitHub Install

Installing the latest version from Github:

$ git clone https://github.com/DenisCarriere/geocoder
$ cd geocoder
$ python setup.py install

Twitter

Speak up on Twitter [@DenisCarriere](https://twitter.com/DenisCarriere) and tell me how you use this Python Geocoder. New updates will be pushed to Twitter Hashtags #python.

Feedback

Please feel free to give any feedback on this module. If you find any bugs or any enhancements to recommend please send some of your comments/suggestions to the Github Issues Page.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

geocoder-1.13.0.tar.gz (39.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

geocoder-1.13.0-py2.py3-none-any.whl (189.0 kB view details)

Uploaded Python 2Python 3

File details

Details for the file geocoder-1.13.0.tar.gz.

File metadata

  • Download URL: geocoder-1.13.0.tar.gz
  • Upload date:
  • Size: 39.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for geocoder-1.13.0.tar.gz
Algorithm Hash digest
SHA256 a99c8b0a1a1194005207b191249b4876668df15a873e4ac73b08e377109ba786
MD5 3b34bfe993cad4ea54553ed39527ecbc
BLAKE2b-256 efed870ec22b5b3152a8bb15675aac494980109d763fbe23657326d00c425b83

See more details on using hashes here.

File details

Details for the file geocoder-1.13.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for geocoder-1.13.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 62718d621b8965649b1e43d9888f220de33196a47597cc6898300e47b7a0aff5
MD5 caaf35e8d8f529ba1323908855e458ac
BLAKE2b-256 1a764c7a67b22ad50ba2394fdcd94bd0095854559f06ccff2e34919d8e2c1f27

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page