Metadata-Version: 1.1
Name: python-omgeo
Version: 1.4.0
Summary: A Python Geocoding Library
Home-page: http://github.com/azavea/python-omgeo
Author: Azavea, Inc.
Author-email: info@azavea.com
License: MIT
Description: **The Oatmeal Geocoder - Python Edition**
        
        ``python-omgeo`` is a geocoding abstraction layer written in python.  Currently
        supported geocoders:
        
        * Bing
        * Citizen Atlas (Washington DC)
        * ESRI North American locator (REST & SOAP)
        * ESRI European address locator (REST & SOAP)
        * MapQuest Licensed Data API
        * MapQuest-hosted Nominatim Open Data API
        
        See the source for more info.  Here's a quick example.
        
        >>> from omgeo import Geocoder 
        >>> g = Geocoder() 
        >>> result = g.geocode('340 12th St, Philadelphia PA')
        >>> candidates = result['candidates']
        >>> for c in candidates:
        ...   print c.x, c.y, c.match_addr
        ...
        -75.15843 39.95872 340 N 12th St, Philadelphia, PA, 19107
        -75.16136 39.94531 340 S 12th St, Philadelphia, PA, 19107
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Scientific/Engineering :: GIS
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2.6
