|
Geohash
Geohash class, a named str .
|
|
Geohashed
A cache of en- and decoded geohashes of one precision.
|
|
GeohashError
Geohash encode, decode or other Geohash issue.
|
|
Neighbors8Dict
8-Dict (N, NE, E, SE, S, SW, W, NW) of Geohashes, providing key and attribute
access to the items.
|
|
Resolutions2Tuple
2-Tuple (res1, res2) with the primary
(longitudinal) and secondary (latitudinal)
resolution, both in degrees .
|
|
Sizes3Tuple
3-Tuple (height, width, radius) with latitudinal
height , longitudinal width and area
radius , all in meter .
|
|
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_error2(geohash)
Return the lat- and longitude decoding error for a geohash. |
|
|
|
distance_(geohash1,
geohash2)
Estimate the distance between two geohash (from the cell sizes). |
|
|
|
encode(lat,
lon,
precision=None,
eps=2.220446049250313e-16)
Encode a lat-/longitude as a geohash , either to the
specified precision or if not provided, to an inferred precision. |
|
|
|
|
|
|
|
|
|
|
|
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. |
|
|
|
|
|
sizes3(geohash)
Return the lat-, longitudinal and radial size of this Geohash
cell. |
|
|
|
|