Package pygeodesy :: Module ltpTuples :: Class Enu
[frames] | no frames]

Class Enu

       object --+                        
                |                        
     named._Named --+                    
                    |                    
     named._NamedBase --+                
                        |                
vector3dBase.Vector3dBase --+            
                            |            
            vector3d.Vector3d --+        
                                |        
                        _Vector3d --+    
                                    |    
                             XyzLocal --+
                                        |
                                       Enu

Local Eeast-North-Up (ENU) location in a local tangent plane.


See Also: East, North, Up (ENU) coordinates.

Instance Methods
 
__init__(self, east_enu, north=0, up=0, ltp=None, name='')
New Enu.
 
toUvw(self, location, Uvw=None, **Uvw_kwds)
Get the u, v, w (UVW) components at a location.

Inherited from XyzLocal: __str__, classof, toAer, toCartesian, toEnu, toLatLon, toLocal9Tuple, toNed, toXyz

Inherited from _Vector3d: toRepr, toStr

Inherited from vector3d.Vector3d: bearing, circin6, circum3, circum4_, iscolinearWith, meeus2, nearestOn, nearestOn6, parse, radii11, soddy4, trilaterate2d2, trilaterate3d2

Inherited from vector3dBase.Vector3dBase: __abs__, __add__, __bool__, __ceil__, __cmp__, __div__, __divmod__, __eq__, __float__, __floor__, __floordiv__, __format__, __ge__, __gt__, __hash__, __iadd__, __idiv__, __ifloordiv__, __imatmul__, __imod__, __imul__, __int__, __ipow__, __isub__, __itruediv__, __le__, __long__, __lt__, __matmul__, __mod__, __mul__, __ne__, __neg__, __nonzero__, __pos__, __pow__, __radd__, __rdiv__, __rdivmod__, __rfloordiv__, __rmatmul__, __rmod__, __rmul__, __round__, __rpow__, __rsub__, __rtruediv__, __sub__, __truediv__, __trunc__, angleTo, apply, cmp, cross, dividedBy, dot, equals, equirectangular, intermediateTo, isconjugateTo, isequalTo, minus, minus_, negate, others, plus, plus_, rotate, rotateAround, sum, times, times_, to3xyz, unit

Inherited from named._NamedBase: __repr__

Inherited from named._Named: attrs, copy, dup, methodname, rename, toStr2

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

Properties
  xyzLocal
Get this ENU as an XyzLocal.

Inherited from XyzLocal: aer4, azimuth, down, east, ecef, elevation, enu4, groundrange, ltp, ned4, north, slantrange, up, xyz4

Inherited from vector3dBase.Vector3dBase: crosserrors, euclid, homogeneous, length, length2, x, x2y2z2, xyz, y, z

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

Inherited from object: __class__

Method Details

__init__ (self, east_enu, north=0, up=0, ltp=None, name='')
(Constructor)

 

New Enu.

Arguments:
  • east_enu - Scalar East component (meter) or a previous local instance (Enu, Enu4Tuple, Aer, Aer4Tuple, Local9Tuple, Ned, Ned4Tuple, XyzLocal or Xyz4Tuple).
  • north - Scalar North component (meter) only used with scalar east_enu.
  • up - Scalar Up component only used with scalar east_enu, normal from the surface of the ellipsoid or sphere (meter).
  • ltp - The local tangent plane, (geodetic) origin (Ltp, LocalCartesian).
  • name - Optional name (str).
Raises:
  • TypeError - Invalid east_enu or ltp.
  • UnitError - Invalid east_enu, north or up.
Overrides: object.__init__

toUvw (self, location, Uvw=None, **Uvw_kwds)

 

Get the u, v, w (UVW) components at a location.

Arguments:
  • location - The geodetic (LatLon) or geocentric (Cartesian, Vector3d) location, like a Point-Of-View.
  • Uvw - Class to return UWV (Uvw) or None.
  • Uvw_kwds - Optional, additional Uvw keyword arguments, ignored if Uvw is None.
Returns:
UVW as a Uvw instance or if Uvw is None, a Uvw3Tuple(u, v, w).
Raises:
  • TypeError - Invalidlocation.

See Also: Function lookAtSpheroid.


Property Details

xyzLocal

Get this ENU as an XyzLocal.

Get method:
xyzLocal(self) - Get this ENU as an XyzLocal.
Set method:
_fset_error(inst, val) - Throws an AttributeError, always.
Delete Method:
_fdel(inst) - Zap the cached/memoized property value.