Convert coor to ENU (East North UP) 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 Geodetic2ENU(
	GeodeticCoordinate coor,
	GeodeticCoordinate refCoor,
	MCvPoint3D64f refEcef
)
Public Function Geodetic2ENU ( _
	coor As GeodeticCoordinate, _
	refCoor As GeodeticCoordinate, _
	refEcef As MCvPoint3D64f _
) As MCvPoint3D64f
public:
MCvPoint3D64f Geodetic2ENU(
	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 ENU (East North UP) coordinate related to the reference coordinate

See Also