toNed (distance,
bearing,
elevation,
Ned=<class 'pygeodesy.ellipsoidalNvector.Ned'>,
**name)
|
|
DEPRECATED, use pygeodesy.Aer(bearing, elevation,
distance).xyzLocal.toNed(Ned, name=name) or XyzLocal(pygeodesy.Aer(bearing, elevation,
distance)).toNed(Ned, name=name) .
Create an NED vector from distance, bearing and elevation (in local
coordinate system).
- Arguments:
distance - NED vector length (meter ).
bearing - NED vector bearing (compass degrees360 ).
elevation - NED vector elevation from local coordinate frame horizontal
(degrees ).
Ned - Optional class to return the NED (Ned ) or
None .
name - Optional name=NN (str ).
- Returns:
- An NED vector equivalent to this
distance ,
bearing and elevation
(DEPRECATED Ned) or a DEPRECATED Ned3Tuple(north, east, down) if
Ned is None .
- Decorators:
- Raises:
ValueError - Invalid distance , bearing
or elevation .
|