Package pygeodesy :: Package deprecated :: Module nvector :: Class Nvector
[frames] | no frames]

Class Nvector

       object --+                    
                |                    
     named._Named --+                
                    |                
     named._NamedBase --+            
                        |            
vector3dBase.Vector3dBase --+        
                            |        
            vector3d.Vector3d --+    
                                |    
          nvectorBase.NvectorBase --+
                                    |
                                   Nvector

DEPRECATED, see class NvectorBase.

Instance Methods
 
__init__(self, x, y=None, z=None, h=0, ll=None, datum=None, name='')
New n-vector normal to the earth's surface.

Inherited from nvectorBase.NvectorBase: hStr, to2ab, to2ll, to3abh, to3llh, to4xyzh, toCartesian, toLatLon, toStr, toVector3d, unit

Inherited from vector3d.Vector3d: iscolinearWith, nearestOn, parse, trilaterate3d2

Inherited from vector3dBase.Vector3dBase: __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, isequalTo, minus, negate, others, plus, rotate, rotateAround, sum, times, to3xyz

Inherited from named._NamedBase: __repr__, __str__, 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 nvectorBase.NvectorBase: Ecef, H, datum, h, isEllipsoidal, isSpherical, lam, lat, latlon, latlonheight, latlonheightdatum, lon, phi, philam, philamheight, philamheightdatum, xyzh

Inherited from vector3dBase.Vector3dBase: 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

__init__ (self, x, y=None, z=None, h=0, ll=None, datum=None, name='')
(Constructor)

 

New n-vector normal to the earth's surface.

Arguments:
  • x - An Nvector, Vector3Tuple, Vector4Tuple or the X coordinate (scalar).
  • y - The Y coordinate (scalar) if x scalar.
  • z - The Z coordinate (scalar) if x scalar.
  • h - Optional height above surface (meter).
  • ll - Optional, original latlon (LatLon).
  • datum - Optional, pass-thru datum (Datum).
  • name - Optional name (str).
Raises:
Overrides: object.__init__
(inherited documentation)