Package pygeodesy :: Module ellipsoidalKarney :: Class Cartesian
[frames] | no frames]

Class Cartesian

              object --+                    
                       |                    
            named._Named --+                
                           |                
            named._NamedBase --+            
                               |            
               vector3d.Vector3d --+        
                                   |        
         cartesianBase.CartesianBase --+    
                                       |    
ellipsoidalBase.CartesianEllipsoidalBase --+
                                           |
                                          Cartesian

Extended to convert Karney-based Cartesian to Karney-based LatLon points.

Instance Methods
 
toLatLon(self, **LatLon_datum_kwds)
Convert this cartesian point to a Karney-based geodetic point.

Inherited from ellipsoidalBase.CartesianEllipsoidalBase: convertRefFrame

Inherited from cartesianBase.CartesianBase: __init__, convertDatum, to3llh, toEcef, toNvector, toStr, toVector

Inherited from vector3d.Vector3d: __abs__, __add__, __cmp__, __div__, __eq__, __ge__, __gt__, __le__, __lt__, __matmul__, __mul__, __ne__, __neg__, __pos__, __radd__, __rmatmul__, __rsub__, __sub__, __truediv__, angleTo, cmp, cross, dividedBy, dot, equals, iscolinearWith, isequalTo, minus, nearestOn, negate, others, parse, plus, rotate, rotateAround, sum, times, to2ab, to2ll, to3xyz, trilaterate3d2, unit

Inherited from named._NamedBase: __repr__, __str__, toRepr

Inherited from named._Named: _dot_, attrs, classof, copy, toStr2

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

Properties

Inherited from cartesianBase.CartesianBase: Ecef, datum, height, isEllipsoidal, isSpherical, latlon, latlonheight, latlonheightdatum, philam, philamheight, philamheightdatum

Inherited from vector3d.Vector3d: crosserrors, euclid, length, length2, x, xyz, y, z

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

Inherited from object: __class__

Method Details

toLatLon (self, **LatLon_datum_kwds)

 

Convert this cartesian point to a Karney-based geodetic point.

Arguments:
  • LatLon_datum_kwds - Optional LatLon, datum and other keyword arguments, ignored if LatLon=None. Use LatLon=... to override this LatLon class or specify LatLon=None.
Returns:
The geodetic point (LatLon) or if LatLon is None, an Ecef9Tuple(x, y, z, lat, lon, height, C, M, datum) with C and M if available.
Raises:
  • TypeError - Invalid LatLon, datum or other LatLon_datum_kwds.
Overrides: cartesianBase.CartesianBase.toLatLon