Package pygeodesy :: Module hausdorff :: Class HausdorffExact
[frames] | no frames]

Class HausdorffExact

  object --+        
           |        
named._Named --+    
               |    
       Hausdorff --+
                   |
                  HausdorffExact

Compute the Hausdorff distance based on the angular distance in degrees from method GeodesicExact.Inverse.

Instance Methods
 
__init__(self, point1s, seed=None, name='', datum=None, **wrap)
New HausdorffKarney calculator.
 
directed(self, point2s, early=True)
Compute only the forward Hausdorff distance.
 
symmetric(self, point2s, early=True)
Compute the combined forward and reverse Hausdorff distance.

Inherited from Hausdorff: distance, point

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 Hausdorff: adjust, datum, kwds, seed, units, wrap

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

Inherited from object: __class__

Method Details

__init__ (self, point1s, seed=None, name='', datum=None, **wrap)
(Constructor)

 

New HausdorffKarney calculator.

Arguments:
Raises:
  • TypeError - Invalid datum.
Overrides: object.__init__

See Also: Hausdorff.__init__ for details about point1s, seed, name and other exceptions.

directed (self, point2s, early=True)

 

Compute only the forward Hausdorff distance.

Arguments:
  • point2s - Second set of points, aka the target (LatLon[], Numpy2LatLon[], Tuple2LatLon[] or other[]).
  • early - Enable or disable early breaking (bool).
Returns:
A Hausdorff6Tuple(hd, i, j, mn, md, units).
Raises:
  • HausdorffError - Insufficient number of point2s or an invalid point2.
Overrides: Hausdorff.directed

Note: See point2s note at HausdorffDistanceTo.

symmetric (self, point2s, early=True)

 

Compute the combined forward and reverse Hausdorff distance.

Arguments:
  • point2s - Second set of points, aka the target (LatLon[], Numpy2LatLon[], Tuple2LatLon[] or other[]).
  • early - Enable or disable early breaking (bool).
Returns:
A Hausdorff6Tuple(hd, i, j, mn, md, units).
Raises:
  • HausdorffError - Insufficient number of point2s or an invalid point2.
Overrides: Hausdorff.symmetric

Note: See point2s note at HausdorffDistanceTo.