Home | Trees | Indices | Help |
|
---|
|
(INTERNAL) Common base classes.
After (C) Chris Veness 2011-2015 published under the same MIT Licence**, see http://www.movable-type.co.uk/scripts/latlong.html and http://www.movable-type.co.uk/scripts/latlong-vectors.html.
Version: 17.06.04
Classes | |
Base (INTERNAL) Base class. |
|
LatLonHeightBase (INTERNAL) Base class for LatLon points on spherical or ellipsiodal earth models. |
|
Named (INTERNAL) Named base class. |
|
VectorBase (INTERNAL) Used by vector3d. |
Functions | |||
|
|||
|
Function Details |
Determine the direction of a polygon defined by a list, sequence, set or tuple of LatLon points.
Example: >>> f = LatLon(45,1), LatLon(45,2), LatLon(46,2), LatLon(46,1) >>> pygeodesy.isclockwise(f) # False >>> t = LatLon(45,1), LatLon(46,1), LatLon(46,2) >>> pygeodesy.isclockwise(t) # True |
Determine whether a polygon defined by a list, sequence, set or tuple of LatLon points is convex.
Example: >>> t = LatLon(45,1), LatLon(46,1), LatLon(46,2) >>> pygeodesy.isconvex(t) # True >>> f = LatLon(45,1), LatLon(46,2), LatLon(45,2), LatLon(46,1) >>> pygeodesy.isconvex(f) # False |
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Tue Jun 20 12:31:42 2017 | http://epydoc.sourceforge.net |