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 center 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. |
|
|
|
|
|
euclidean_(geohash1,
geohash2,
**radius_adjust_wrap)
Approximate the distance between two geohashes using the euclidean formula. |
|
|
|
haversine_(geohash1,
geohash2,
**radius_wrap)
Compute the distance between two geohashes using the 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. |
|
|
|
vincentys_(geohash1,
geohash2,
**radius_wrap)
Compute the distance between two geohashes using the vincentys formula. |
|
|