Package pygeodesy :: Module namedTuples :: Class RD4Tuple
[frames] | no frames]

Class RD4Tuple

   object --+        
            |        
        tuple --+    
                |    
   object --+   |    
            |   |    
 named._Named --+    
                |    
named._NamedTuple --+
                    |
                   RD4Tuple

4-Tuple (minRDx, minRDy, maxRDx, maxRDy) with the region bounds' lower-left (minRDx, minRDy) and upper-right (maxRDx, maxRDy) corner in meter, conventionaly.

Instance Methods
 
isinside(self, RDx, RDy, eps=0)
Are RDx and RDy both inside these RD bounds?
 
resize(self, eps)
Get these bounds, over- or undersize by eps.

Inherited from named._NamedTuple: __delattr__, __getattr__, __hash__, __repr__, __setattr__, __str__, dup, items, iteritems, iterunits, reUnit, toRepr, toStr, toUnits, units

Inherited from tuple: __add__, __contains__, __eq__, __ge__, __getattribute__, __getitem__, __getnewargs__, __getslice__, __gt__, __iter__, __le__, __len__, __lt__, __mul__, __ne__, __rmul__, count, index

Inherited from named._Named: __format__, __imatmul__, __matmul__, __rmatmul__, attrs, classof, copy, methodname, rename, renamed, toStr2

Inherited from object: __init__, __reduce__, __reduce_ex__, __sizeof__, __subclasshook__

Static Methods

Inherited from named._NamedTuple: __new__

Properties

Inherited from named._Named: classname, classnaming, iteration, name, named, named2, named3, named4, sizeof, typename

Inherited from object: __class__

Method Details

isinside (self, RDx, RDy, eps=0)

 

Are RDx and RDy both inside these RD bounds?

Arguments:
  • RDx - X coordinate (meter).
  • RDy - Y coordinate (meter).
  • eps - Over-/undersize the RD bounds (meter).
Returns:
False if RDx or RDy is outsize these RD bounds or NAN, True otherwise.

resize (self, eps)

 

Get these bounds, over- or undersize by eps.

Arguments:
  • eps - In- or decrease (degrees).
Returns:
A RD4Tuple(minRDx, minRDy, maxRDx, maxRDy) with all 4 bounds resized.