Package pygeodesy :: Module heights :: Class HeightIDWvincentys
[frames] | no frames]

Class HeightIDWvincentys

  object --+            
           |            
named._Named --+        
               |        
     _HeightBase --+    
                   |    
          _HeightIDW --+
                       |
                      HeightIDWvincentys

Height interpolator using Inverse Distance Weighting (IDW) and the angular distance in radians from function pygeodesy.vincentys_.


Note: See note at function pygeodesy.vincentys_.

Instance Methods
 
__init__(self, knots, beta=2, name='', **radius_wrap)
New HeightIDWvincentys interpolator.
 
__call__(self, *llis, **wrap)
Interpolate the height for one or several locations.
 
height(self, lats, lons, **wrap)
Interpolate the height for one or several lat-/longitudes.

Inherited from named._Named: __imatmul__, __matmul__, __repr__, __rmatmul__, __str__, attrs, classof, copy, dup, methodname, rename, toRepr, toStr, toStr2

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Properties

Inherited from _HeightIDW: adjust, beta, datum, hypot, knots, kwds, limit, radius, scaled, wrap

Inherited from _HeightBase: kmin

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

Inherited from object: __class__

Method Details

__init__ (self, knots, beta=2, name='', **radius_wrap)
(Constructor)

 

New HeightIDWvincentys interpolator.

Arguments:
Raises:
  • HeightError - Insufficient number of knots or an invalid knot or beta.
Overrides: object.__init__

See Also: Here for other details.

__call__ (self, *llis, **wrap)
(Call operator)

 

Interpolate the height for one or several locations.

Arguments:
  • llis - One or more locations (LatLons), all positional.
  • wrap - If True, wrap or normalize all llis locations (bool).
Returns:
A single interpolated height (float) or a list or tuple of interpolated heights (floats).
Raises:
Overrides: _HeightIDW.__call__

height (self, lats, lons, **wrap)

 

Interpolate the height for one or several lat-/longitudes.

Arguments:
  • lats - Latitude or latitudes (degrees or degreess).
  • lons - Longitude or longitudes (degrees or degreess).
  • wrap - If True, wrap or normalize all lats and lons (bool).
Returns:
A single interpolated height (float) or a list of interpolated heights (floats).
Raises:
Overrides: _HeightIDW.height