Geocoder is a simple and consistent geocoding library.
Project description
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)
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
>>> import geocoder
>>> g = geocoder.ip('199.7.157.0')
>>> g = geocoder.ip('me')
>>> g.latlng
>>> g.city
Command Line Interface
$ geocode "Ottawa, ON" >> ottawa.geojson
$ geocode "Ottawa, ON" \
--provide google \
--out geojson \
--method geocode
Providers
Provider |
Optimal |
Access |
---|---|---|
World |
||
China |
API key |
|
World |
API key |
|
Canada |
API key |
|
World |
||
North America |
Rate Limit |
|
World |
Username |
|
Ottawa |
||
World |
Rate Limit |
|
World |
API key |
|
World |
||
World |
API key |
|
World |
API key |
|
World |
||
World |
API key |
|
World |
||
World |
API key |
|
World |
API key |
|
World |
||
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
Documentation
https://geocoder.readthedocs.org/
Speak up on Twitter DenisCarriere and tell me how you use this Python Geocoder. New updates will be pushed to Twitter Hashtags python.
Topic not available?
If you cannot find a topic you are looking for, please feel free to ask me DenisCarriere or post them on the Github Issues Page.
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
Built Distribution
Hashes for geocoder-1.8.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cfaea8b5b4587065a78004de88d3312d73da1cab4b09f422db70537aaf5f4f89 |
|
MD5 | 217fc036ab764142951c916a923e2029 |
|
BLAKE2b-256 | a30164725f01acc6c255861480e52da455de7fabab3dc5ba0dd268dd9e24f1e4 |