Geohash en-/decoding.
|
bounds(geohash,
LatLon=None,
**LatLon_kwds)
Returns the lower-left SW and upper-right NE corners of a geohash. |
|
|
|
decode(geohash)
Decode a geohash to lat-/longitude of the (approximate centre of)
geohash cell to reasonable precision. |
|
|
|
decode2(geohash,
LatLon=None,
**LatLon_kwds)
Decode a geohash to lat-/longitude of the (approximate centre of)
geohash cell to reasonable precision. |
|
|
|
decode_error(geohash)
Return the relative lat-/longitude decoding errors for this geohash. |
|
|
|
distance_(geohash1,
geohash2)
Estimate the distance between two geohash (from the cell sizes). |
|
|
|
encode(lat,
lon,
precision=None)
Encode a lat-/longitude as a geohash , either to the
specified precision or if not provided, to an automatically evaluated
precision. |
|
|
|
|
|
haversine_(geohash1,
geohash2,
radius=6371008.771415)
Compute the great-circle distance between two geohashes using the pygeodesy.haversine formula. |
|
|
|
|
|
precision(res1,
res2=None)
Determine the Geohash precisions to meet a or both given
(geographic) resolutions. |
|
|
|
resolution2(prec1,
prec2=None)
Determine the (geographic) resolutions of given Geohash
precisions. |
|
|
|
sizes(geohash)
Return the lat- and longitudinal size of this Geohash
cell. |
|
|