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 Vincenty distance from function vincentys_.


Note: See note under vincentys_.

See Also: HeightIDWequirectangular, HeightIDWeuclidean, HeightIDWhaversine, HeightIDWkarney, Inverse distance weighting, IDW and SHEPARD_INTERP_2D.

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

Inherited from named._Named: __repr__, __str__, classof, copy, toStr, toStr2

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

Properties

Inherited from _HeightIDW: beta

Inherited from named._Named: classname, classnaming, name, named, named2

Inherited from object: __class__

Method Details

__init__(self, knots, beta=2, wrap=False, name='')
(Constructor)

 

New HeightIDWvincentys interpolator.

Parameters:
  • knots - The points with known height (LatLons).
  • beta - Inverse distance power (int 1, 2, or 3).
  • wrap - Wrap and unroll180 longitudes (bool).
  • name - Optional height interpolator name (str).
Raises:
  • HeightError - Insufficient number of knots or invalid knot or beta.
Overrides: object.__init__

__call__(self, *llis)
(Call operator)

 

Interpolate the height for one or several locations.

Parameters:
  • llis - The location or locations (LatLon, ... or LatLons).
Returns:
A single interpolated height (float) or a list or tuple of interpolated heights (floats).
Raises:
Overrides: _HeightBase.__call__

height(self, lats, lons)

 

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

Parameters:
  • lats - Latitude or latitudes (degrees or degreess).
  • lons - Longitude or longitudes (degrees or degreess).
Returns:
A single interpolated height (float) or a list of interpolated heights (floats).
Raises:
  • HeightError - Insufficient or non-matching number of lats and lons or an fidw issue.
Overrides: _HeightIDW.height