Package pygeodesy :: Module bases
[frames] | no frames]

Module bases

DEPRECATED, use module latlonBase instead.


Version: 19.10.20

Classes
  LatLonHeightBase
(INTERNAL) Base class for LatLon points on spherical or ellipsoidal earth models.
Functions
 
points2(points, closed=True, base=None, Error=<type 'exceptions.ValueError'>)
Check a path or polygon represented by points.
Function Details

points2(points, closed=True, base=None, Error=<type 'exceptions.ValueError'>)

 

Check a path or polygon represented by points.

Parameters:
  • points - The path or polygon points (LatLon[])
  • closed - Optionally, consider the polygon closed, ignoring any duplicate or closing final points (bool).
  • base - Optionally, check all points against this base class, if None don't check.
  • Error - Exception to raise (ValueError).
Returns:
A Points2Tuple(number, points) with the number of points and the points list or tuple.
Raises:
  • TypeError - Some points are not LatLon.
  • Error - Insufficient number of points.