Python library for interacting with geohashes.
Project description
libgeohash
A python library for interacting with geohashes.
The library is divided into 3 modules:
- geohash_base: Base functions for interacting with geohashes e.g.
encode
,decode
,neighbors
,bbox
etc. - distance_metrics: Distance related functions e.g.
distance
,dimensions
etc. - geometry: Functions for conversion of a polygon to a list of geohash and vice versa. e.g.
polygon_to_geohash
,geohash_to_polygon
. Useful for approximating geographical regions with geohashes. Makes use of shapely library for geometric calculations.
Installation
Linux and Mac users can install the package via pip.
$ pip install libgeohash
Usage
>>> import libgeohash as gh
>>> gh.encode(57.64911, 10.40744, precision = 10)
'u4pruydqqv'
>>> gh.decode('u4pruydqqv', errors = True)
(57.64911264181137, 10.407437682151794, 2.682209014892578e-06, 5.364418029785156e-06)
>>> gh.neighbors('u4pruydqqv')
{'ne': 'u4pruydqrn', 'e': 'u4pruydqrj', 'n': 'u4pruydqqy', 'se': 'u4pruydqrh',
'w': 'u4pruydqqt', 'sw': 'u4pruydqqs', 'nw': 'u4pruydqqw', 's': 'u4pruydqqu'}
# Returns dimensions of the bounding box referred by the geohash in meters. (width, height)
>>> gh.dimensions('u4pruyd')
(152.9, 152.4)
# Returns the great circle distance (Haversine) between two geohashes or coordinates.
>>> gh.distance('u4pruyd', 'u4pruyg')
173.19066702376304
- For more functions and their usage, please refer to the doc strings.
Known issues
- Fails to approximate a polygon spanning across the International Date Line i.e. 180/-180 longitude. Shouldn't be much of a problem since there aren't any geographical entities that actually span across it due to nature of the line itself.
If you happen to find any other bugs, please report them in the issues section.
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file libgeohash-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: libgeohash-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.3 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7c26afd6a469537facfca4c022c7c2b535cdb05828a0a366275926d77516d46 |
|
MD5 | e37563b164119854d90e76fea04b028f |
|
BLAKE2b-256 | 91622aecefecfeb1d0a80ea60734689fe8e4af611a8b34251ba1acdeb58ad0b4 |