Package pygeodesy :: Package deprecated :: Class EcefCartesian
[frames] | no frames]

Class EcefCartesian

  object --+            
           |            
named._Named --+        
               |        
named._NamedBase --+    
                   |    
  ltp.LocalCartesian --+
                       |
                      EcefCartesian

DEPRECATED, use class LocalCartesian.

Instance Methods
 
__init__(self, latlonh0=0, lon0=0, height0=0, ecef=None, name='')
New LocalCartesian converter.

Inherited from ltp.LocalCartesian: forward, reset, reverse, toStr

Inherited from named._NamedBase: __repr__, __str__, others, toRepr

Inherited from named._Named: _DOT_, attrs, classof, copy, rename, toStr2

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

Properties

Inherited from ltp.LocalCartesian: M, datum, ecef, height0, lat0, lon0

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

Inherited from object: __class__

Method Details

__init__ (self, latlonh0=0, lon0=0, height0=0, ecef=None, name='')
(Constructor)

 

New LocalCartesian converter.

Arguments:
  • latlonh0 - Either a LatLon, an Ecef9Tuple or scalar latitude of the origin (degrees).
  • lon0 - Optional scalar longitude of the origin for scalar latlonh0 (degrees).
  • height0 - Optional origin height (meter), vertically above (or below) the surface of the ellipsoid.
  • ecef - An ECEF converter (EcefKarney).
  • name - Optional name (str).
Raises:
  • LocalError - If latlonh0 not LatLon, Ecef9Tuple, scalar or invalid or if lon0 not scalar for scalar latlonh0 or invalid or if height0 invalid.
  • TypeError - Invalid ecef, not EcefKarney.
Overrides: object.__init__
(inherited documentation)