Convert ned to Geodetic 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 GeodeticCoordinate NED2Geodetic(
	MCvPoint3D64f ned,
	GeodeticCoordinate refCoor,
	MCvPoint3D64f refEcef
)
Public Function NED2Geodetic ( _
	ned As MCvPoint3D64f, _
	refCoor As GeodeticCoordinate, _
	refEcef As MCvPoint3D64f _
) As GeodeticCoordinate
public:
GeodeticCoordinate NED2Geodetic(
	MCvPoint3D64f ned, 
	GeodeticCoordinate refCoor, 
	MCvPoint3D64f refEcef
)

Parameters

ned
MCvPoint3D64f
The NED (North East Down) 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 Geodetic coordinate

See Also