Convert coor to NED (North East Down) coordinate using the reference coordinate refCoor

Namespace: Emgu.CV.Geodetic
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public MCvPoint3D64f Geodetic2NED(
	GeodeticCoordinate coor,
	GeodeticCoordinate refCoor,
	MCvPoint3D64f refEcef
)
Public Function Geodetic2NED ( _
	coor As GeodeticCoordinate, _
	refCoor As GeodeticCoordinate, _
	refEcef As MCvPoint3D64f _
) As MCvPoint3D64f
public:
MCvPoint3D64f Geodetic2NED(
	GeodeticCoordinate coor, 
	GeodeticCoordinate refCoor, 
	MCvPoint3D64f refEcef
)

Parameters

coor
GeodeticCoordinate
The Geodetic Coordinate to be converted
refCoor
GeodeticCoordinate
The reference Geodetic coordinate
refEcef
MCvPoint3D64f
refCoor in ECEF format. If this is provided, it speeds up the computation

Return Value

The NED (North East Down) coordinate related to the reference coordinate

See Also