Socket
Socket
Sign inDemoInstall

python-geocoder

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

python-geocoder

A simple geocoding library using Google Maps APIs


Maintainers
1

About =====

    Python-Geocoder is a simple library that uses Google Maps API for geocoding.
    
    
    Usage
    =====
    
    As python library::
    
        >>> from geocode.google import GoogleGeocoderClient
        
        >>> geocoder = GoogleGeocoderClient(False) # must specify sensor parameter explicitely
        >>> result = geocoder.geocode("massasauga park")
        
        >>> result.is_success()
        True
        
        >>> len(result)
        3
        
        # by default all get_*() methods will fetch the first result:
        >>> result.get_formatted_address()
        u'The Massasauga Provincial Park, The Archipelago, ON, Canada'
        
        # but you can also pass it an index parameter:
        >>> result.get_formatted_address(2)
        u'Massasauga Prairie Nature Preserve, Roseville, IL 61417, USA'
        
        >>> result.get_location()
        (Decimal('45.19526590'), Decimal('-80.05372229999999'))
        
        >>> result.get_location_type()
        u'APPROXIMATE'
        
        # each result object is an iterator containing nested dictionaries according to
        # Google geocoding specifications (http://code.google.com/apis/maps/documentation/geocoding/)
        >>> for r in result: print r["formatted_address"]
        The Massasauga Provincial Park, The Archipelago, ON, Canada
        The Massasauga Provincial Park, RR 2, Parry Sound, ON P0G, Canada
        Massasauga Prairie Nature Preserve, Berwick, IL 61417, USA
    
    
    If you are using Google Maps API for business pass your key and client id when
    initializing GoogleGeocoderClient::
    
        >>> geocoder = GoogleGeocoderClient(False, my_client_id, my_key)
        
    
    geocode/google-geocoder.py is a command line tool. A sample usage::
    
        $ python geocode/google.py -a "massasauga park"
        The Massasauga Provincial Park, The Archipelago, ON, Canada (45.19526590, -80.05372229999999) - APPROXIMATE
        The Massasauga Provincial Park, RR 2, Parry Sound, ON P0G, Canada (45.1969970, -80.0398220) - APPROXIMATE
        Massasauga Prairie Nature Preserve, Roseville, IL 61417, USA (40.76002530, -90.57780330) - APPROXIMATE
    
    For more usage information run::
    
        $ python geocode/google.py --help

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc