Click or drag to resize

GM_UtilityProjectPointFromECEF Method

Projects a point from ECEF (earth-centered earth-fixed) to a projection

Namespace:  GlobalMapper
Assembly:  GlobalMapperWrapperNET (in GlobalMapperWrapperNET.dll) Version: 19.1.0.0 (19.1.0.0)
Syntax
C#
public static GM_Error_t32 ProjectPointFromECEF(
	double aX,
	double aY,
	double aZ,
	out double aXOut,
	out double aYOut,
	out double aZOut,
	DATUM aDatum,
	GM_Projection_t aProjOut
)

Parameters

aX
Type: SystemDouble
IN: ECEF X coordinate of input
aY
Type: SystemDouble
IN: ECEF Y coordinate of input
aZ
Type: SystemDouble
IN: ECEF Z coordinate of input
aXOut
Type: SystemDouble
OUT: X coordinate of output point
aYOut
Type: SystemDouble
OUT: Y coordinate of output point
aZOut
Type: SystemDouble
OUT: Z coordinate of output point (meters above ellipsoid)
aDatum
Type: GlobalMapperDATUM
IN: datum of ECEF coordinate (normally GM_DATUM_WGS_84)
aProjOut
Type: GlobalMapperGM_Projection_t
IN: projection to convert to (NULL for current)

Return Value

Type: GM_Error_t32
A GM Error Code
See Also