Home | Trees | Indices | Help |
|
---|
|
Geometric and other utility functions and constants.
After (C) Chris Veness 2011-2015 published under the same MIT Licence**, see Latitude/Longitude and Vector-based geodesy.
Version: 20.10.02
Functions | |||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
Variables | |
__all__ = _ALL_LAZY.utily
|
Function Details |
Compute See Also: Function atan2d. |
Compute See Also: Karney's C++ function Math.atan2d. |
Convert radians to degrees and wrap [-270..+90].
|
Convert radians to degrees and wrap [-180..+180].
|
Convert radians to degrees and wrap [0..+360).
|
Convert angle to distance along the equator or along a parallel at an other latitude.
See Also: Function m2degrees. |
Convert International or US Survey feet to meter.
|
Check for an
|
Check for an
|
Check for an
|
Iterate over Numpy2 wrappers or other sequences exceeding the threshold.
|
Get or set the iterNumpy2 threshold.
|
Convert distance to angle along equator or along a parallel at an other latitude.
See Also: Function degrees2m. |
Convert meter to International or US Survey feet
(
|
Convert meter to kilo meter (km).
|
Convert meter to nautical miles (NM).
|
Convert meter to statute miles (SM).
|
Convert and wrap degrees to radians [-PI..+PI].
|
Convert and wrap degrees to radians [0..+2PI).
|
Convert and wrap degrees to radians [-3PI/2..+PI/2].
|
Return the
See Also: GeographicLib function sincosd and C++ sincosd. |
Return the
See Also: GeographicLib function sincosd and C++ sincosd. |
Split an iterable into
Note:
Each generated slice is a Example: >>> from pygeodesy import splice >>> a, b = splice(range(10)) >>> a, b ((0, 2, 4, 6, 8), (1, 3, 5, 7, 9)) >>> a, b, c = splice(range(10), n=3) >>> a, b, c ((0, 3, 6, 9), (1, 4, 7), (2, 5, 8)) >>> a, b, c = splice(range(10), n=3, fill=-1) >>> a, b, c ((0, 3, 6, 9), (1, 4, 7, -1), (2, 5, 8, -1)) >>> tuple(splice(list(range(9)), n=5)) ([0, 5], [1, 6], [2, 7], [3, 8], [4]) >>> splice(range(9), n=1) <generator object splice at 0x0...> |
Compute the tangent of half angle.
|
Compute the tangent of half angle, 90 degrees rotated.
|
Unroll longitudinal delta and wrap longitude in degrees.
See Also:
Capability |
Unroll longitudinal delta and wrap longitude in radians.
See Also:
Capability |
Wrap degrees to [-270..+90].
|
Wrap degrees to [-180..+180].
|
Wrap degrees to [0..+360).
|
Wrap radians to [-PI..+PI].
|
Wrap radians to [0..+2PI).
|
Wrap radians to [-3PI/2..+PI/2].
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Oct 12 20:49:56 2020 | http://epydoc.sourceforge.net |