Package pygeodesy :: Module geohash :: Class Geohash
[frames] | no frames]

Class Geohash

object --+        
         |        
basestring --+    
             |    
           str --+
                 |
    object --+   |
             |   |
   bases.Named --+
                 |
                Geohash

Geohash class, sub-class of str.

Instance Methods
 
__repr__(self)
repr(x)
 
adjacent(self, direction)
Determine the adjacent cell in given compass direction.
 
bounds(self, LatLon, **kwds)
Return the SW and NE bounds of this geohash cell.
 
distance1(self, other)
DEPRECATED, use method distance1To.
 
distance1To(self, other)
Estimate the distance between this and an other geohash (from the cell sizes).
 
distance2(self, other, radius=6371008.77141, adjust=False, wrap=False)
DEPRECATED, use method distance2To.
 
distance2To(self, other, radius=6371008.77141, adjust=False, wrap=False)
Compute the distance between this and an other geohash using the Equirectangular Approximation / Projection.
 
distance3(self, other, radius=6371008.77141, wrap=False)
DEPRECATED, use method distance3To.
 
distance3To(self, other, radius=6371008.77141, wrap=False)
Compute the great-circle distance between this and an other geohash using the Haversine formula.
 
toLatLon(self, LatLon, **kwds)
Return (the approximate center of) this geohash cell as an instance of the supplied LatLon class.

Inherited from str: __add__, __contains__, __eq__, __format__, __ge__, __getattribute__, __getitem__, __getnewargs__, __getslice__, __gt__, __hash__, __le__, __len__, __lt__, __mod__, __mul__, __ne__, __rmod__, __rmul__, __sizeof__, __str__, capitalize, center, count, decode, encode, endswith, expandtabs, find, format, index, isalnum, isalpha, isdigit, islower, isspace, istitle, isupper, join, ljust, lower, lstrip, partition, replace, rfind, rindex, rjust, rpartition, rsplit, rstrip, split, splitlines, startswith, strip, swapcase, title, translate, upper, zfill

Inherited from bases.Named: copy

Inherited from object: __delattr__, __init__, __reduce__, __reduce_ex__, __setattr__, __subclasshook__

Static Methods
a new object with type S, a subtype of T
__new__(cls, cll, precision=None, name='')
New Geohash from a Geohash instance or str or from a LatLon instance or str.
Properties
  ab
Get the lat- and longitude of (the approximate center of) this geohash as a 2-tuple (lat, lon) in radians.
  latlon
Get the lat- and longitude of (the approximate center of) this geohash as a 2-tuple (lat, lon) in degrees.
  neighbors
Get all 8 adjacent cells as a dict(N=, NE=, E= ..., SW=) of Geohashes.
  sizes
Get the lat- and longitudinal size of this cell as a 2-tuple (latHeight, lonWidth) in meter.
  N
Get the cell North of this (Geohash).
  S
Get the cell South of this (Geohash).
  E
Get the cell East of this (Geohash).
  W
Get the cell West of this (Geohash).
  NE
Get the cell NorthEast of this (Geohash).
  NW
Get the cell NorthWest of this (Geohash).
  SE
Get the cell SouthEast of this (Geohash).
  SW
Get the cell SouthWest of this (Geohash).

Inherited from bases.Named: classname, classnaming, name

Inherited from object: __class__

Method Details

__new__(cls, cll, precision=None, name='')
Static Method

 

New Geohash from a Geohash instance or str or from a LatLon instance or str.

Parameters:
  • cll - Cell or location (Geohash or str, LatLon or str).
  • precision - Optional, desired geohash length (int), see function geohash.encode for more details.
  • name - Optional name (str).
Returns: a new object with type S, a subtype of T
New Geohash.
Overrides: object.__new__

__repr__(self)
(Representation operator)

 

repr(x)

Overrides: object.__repr__
(inherited documentation)

adjacent(self, direction)

 

Determine the adjacent cell in given compass direction.

Parameters:
  • direction - Compass direction ('N', 'S', 'E' or 'W').
Returns:
Geohash of adjacent cell (Geohash).
Raises:
  • ValueError - If this geohash or direction invalid.

bounds(self, LatLon, **kwds)

 

Return the SW and NE bounds of this geohash cell.

Parameters:
  • LatLon - Class to use (LatLon).
  • kwds - Optional keyword arguments for LatLon.
Returns:
2-Tuple (LatLonSW, LatLonNE) of LatLon for the lower-left respectively upper-right corner.

distance1To(self, other)

 

Estimate the distance between this and an other geohash (from the cell sizes).

Parameters:
  • other - The other geohash (Geohash).
Returns:
Approximate distance (meter).
Raises:
  • TypeError - The other is not a Geohash, LatLon or str.

distance2To(self, other, radius=6371008.77141, adjust=False, wrap=False)

 

Compute the distance between this and an other geohash using the Equirectangular Approximation / Projection.

Parameters:
  • other - The other geohash (Geohash).
  • radius - Optional, mean earth radius (meter) or None.
  • adjust - Adjust the wrapped, unrolled longitudinal delta by the cosine of the mean latitude (bool).
  • wrap - Wrap and unroll longitudes (bool).
Returns:
Approximate distance (meter, same units as radius) or distance squared (degrees squared) if radius is None or 0.
Raises:
  • TypeError - The other is not a Geohash, LatLon or str.

See Also: Local, flat earth approximation, functions

distance3To(self, other, radius=6371008.77141, wrap=False)

 

Compute the great-circle distance between this and an other geohash using the Haversine formula.

Parameters:
  • other - The other geohash (Geohash).
  • radius - Optional, mean earth radius (meter).
  • wrap - Wrap and unroll longitudes (bool).
Returns:
Great-circle distance (meter, same units as radius).
Raises:
  • TypeError - The other is not a Geohash, LatLon or str.

toLatLon(self, LatLon, **kwds)

 

Return (the approximate center of) this geohash cell as an instance of the supplied LatLon class.

Parameters:
  • LatLon - Class to use (LatLon).
  • kwds - Optional keyword arguments for LatLon.
Returns:
This geohash location (LatLon).

Example:

>>> from sphericalTrigonometry import LatLon
>>> ll = Geohash('u120fxw').toLatLon(LatLon)
>>> print(repr(ll))  # LatLon(52°12′17.9″N, 000°07′07.64″E)
>>> print(ll)  # 52.204971°N, 000.11879°E


Property Details

ab

Get the lat- and longitude of (the approximate center of) this geohash as a 2-tuple (lat, lon) in radians.

Get Method:
ab(self) - Get the lat- and longitude of (the approximate center of) this geohash as a 2-tuple (lat, lon) in radians.
Set Method:
Read_Only(self, ignored) - Throws an AttributeError, always.

latlon

Get the lat- and longitude of (the approximate center of) this geohash as a 2-tuple (lat, lon) in degrees.

Example:

>>> geohash.Geohash('geek').latlon  # 65.478515625, -17.75390625
>>> geohash.decode('geek')  # '65.48', '-17.75'
Get Method:
latlon(self) - Get the lat- and longitude of (the approximate center of) this geohash as a 2-tuple (lat, lon) in degrees.
Set Method:
Read_Only(self, ignored) - Throws an AttributeError, always.

neighbors

Get all 8 adjacent cells as a dict(N=, NE=, E= ..., SW=) of Geohashes.

JSname: neighbours.

Get Method:
neighbors(self) - Get all 8 adjacent cells as a dict(N=, NE=, E= ..., SW=) of Geohashes.
Set Method:
Read_Only(self, ignored) - Throws an AttributeError, always.

sizes

Get the lat- and longitudinal size of this cell as a 2-tuple (latHeight, lonWidth) in meter.

Get Method:
sizes(self) - Get the lat- and longitudinal size of this cell as a 2-tuple (latHeight, lonWidth) in meter.
Set Method:
Read_Only(self, ignored) - Throws an AttributeError, always.

N

Get the cell North of this (Geohash).

Get Method:
N(self) - Get the cell North of this (Geohash).
Set Method:
Read_Only(self, ignored) - Throws an AttributeError, always.

S

Get the cell South of this (Geohash).

Get Method:
S(self) - Get the cell South of this (Geohash).
Set Method:
Read_Only(self, ignored) - Throws an AttributeError, always.

E

Get the cell East of this (Geohash).

Get Method:
E(self) - Get the cell East of this (Geohash).
Set Method:
Read_Only(self, ignored) - Throws an AttributeError, always.

W

Get the cell West of this (Geohash).

Get Method:
W(self) - Get the cell West of this (Geohash).
Set Method:
Read_Only(self, ignored) - Throws an AttributeError, always.

NE

Get the cell NorthEast of this (Geohash).

Get Method:
NE(self) - Get the cell NorthEast of this (Geohash).
Set Method:
Read_Only(self, ignored) - Throws an AttributeError, always.

NW

Get the cell NorthWest of this (Geohash).

Get Method:
NW(self) - Get the cell NorthWest of this (Geohash).
Set Method:
Read_Only(self, ignored) - Throws an AttributeError, always.

SE

Get the cell SouthEast of this (Geohash).

Get Method:
SE(self) - Get the cell SouthEast of this (Geohash).
Set Method:
Read_Only(self, ignored) - Throws an AttributeError, always.

SW

Get the cell SouthWest of this (Geohash).

Get Method:
SW(self) - Get the cell SouthWest of this (Geohash).
Set Method:
Read_Only(self, ignored) - Throws an AttributeError, always.