GM_UtilityProjectPointFromECEF Method |
Projects a point from ECEF (earth-centered earth-fixed) to a projection
Namespace:
GlobalMapper
Assembly:
GlobalMapperWrapperNET45 (in GlobalMapperWrapperNET45.dll) Version: 19.1.0.0 (19.1.0.0)
Syntax 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
)
Public Shared Function ProjectPointFromECEF (
aX As Double,
aY As Double,
aZ As Double,
<OutAttribute> ByRef aXOut As Double,
<OutAttribute> ByRef aYOut As Double,
<OutAttribute> ByRef aZOut As Double,
aDatum As DATUM,
aProjOut As GM_Projection_t
) As GM_Error_t32
public:
static GM_Error_t32 ProjectPointFromECEF(
double aX,
double aY,
double aZ,
[OutAttribute] double% aXOut,
[OutAttribute] double% aYOut,
[OutAttribute] 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: GlobalMapper.TypesDATUM
IN: datum of ECEF coordinate (normally GM_DATUM_WGS_84) - aProjOut
- Type: GlobalMapper.TypesGM_Projection_t
IN: projection to convert to (NULL for current)
Return Value
Type:
GM_Error_t32A GM Error Code
See Also