8000 GitHub - shishirk/geopy: A Geocoding Toolbox for Python. Official git repo.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ geopy Public
forked from geopy/geopy

A Geocoding Toolbox for Python. Official git repo.

License

Notifications You must be signed in to change notification settings

shishirk/geopy

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

geopy

© GeoPy Project and individual contributors, MIT License

geopy is a Python client for several popular geocoding web services.

This is a fork of geopy for updating geopy and adding some capabilities for display of data on google maps.

Current geocoder classes for the Google Geocoding API (V3), geocoder.us, Bing Maps API, [Nokia Here][nokia], and several more Geocoder API services. The various geocoder classes are located in geopy.geocoders. Note that Yahoo has shut its geocoding service.

Basic Geocoding

Examples

from geopy import geocoders

b = geocoders.Bing(api_key)

n = geocoders.Nokia(api_id, app_code)

g = geocoders.GoogleV3()

b.geocode("Doak nagar, madurai, india")

(u'Doak Nagar, Tamil Nadu, India', (9.935750007629395, 78.08531951904297))

n.geocode("Doak nagar madurai india", (9.9, 78))

(u'Doak Nagar Madurai TN', (9.93575, 78.08532))

g.geocode("Doak nagar madurai india")

(u'Doak Nagar, Madurai, Tamil Nadu 625016, India', (9.935720600000002, 78.0844477))

About

A Geocoding Toolbox for Python. Official git repo.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%
0