Metadata-Version: 1.1
Name: pygeohash
Version: 1.2.0
Summary: Python module for interacting with geohashes
Home-page: https://github.com/wdm0006/pygeohash
Author: Will McGinnis
Author-email: will@pedalwrencher.com
License: GPL3
Download-URL: https://github.com/wdm0006/pygeohash/tarball/1.2.0
Description: =========
        pygeohash
        =========
        
        [![Coverage Status](https://coveralls.io/repos/wdm0006/pygeohash/badge.svg?branch=master&service=github)](https://coveralls.io/github/wdm0006/pygeohash?branch=master)  ![travis status](https://travis-ci.org/wdm0006/pygeohash.svg?branch=master) 
        
        Pygeohash is a Python module that provides functions for decoding and encoding geohashes to and from latitude and 
        longitude coordinates, and doing basic calculations and approximations with them.
        
        It is based off of Leonard Norrgård's [geohash](https://github.com/vinsci/geohash) module, but aims to add more 
        functionality while supporting python 3 as well.
        
        
        Usage
        =====
        
        To use pygeohash:
        
            import pygeohash as pgh
            
            pgh.encode(42.6, -5.6)
            # >>> 'ezs42e44yx96'
            
            pgh.encode(42.6, -5.6, precision=5)
            # >>> 'ezs42'
            
            pgh.decode('ezs42')
            # >>> ('42.6', '-5.6')
            
            pgh.geohash_approximate_distance('bcd3u', 'bc83n')
            # >>> 625441
        
        Installation
        ============
        
        Pygeohash has no requirements outside of the python stdlib, and aims to keep it that way if at all possible. To install:
        
            pip install pygeohash
           
        Liscense
        ========
        
        A portion of this codebase (geohash.py), is from Leonard Norrgard's module, which carries the following license:
        
        Copyright (C) 2015 [Leonard Norrgard](leonard.norrgard@gmail.com)
        
        Geohash is free software: you can redistribute it and/or modify it
        under the terms of the GNU Affero General Public License as published
        by the Free Software Foundation, either version 3 of the License, or
        (at your option) any later version.
        
        Geohash is distributed in the hope that it will be useful, but WITHOUT
        ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
        FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public
        License for more details.
        
        You should have received a copy of the GNU Affero General Public
        License along with Geohash.  If not, see
        [gnu.org](http://www.gnu.org/licenses/).
        
        This derivative work likewise carries the same license:
        
        Copyright (C) 2015 [Will McGinnis](will@pedalwrencher.com)
        
Keywords: geohash gis
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
