GM_UtilityProjectPointToECEF Method |
Projects a point from a projection to ECEF (earth-centered earth-fixed)
Namespace:
GlobalMapper
Assembly:
GlobalMapperWrapperNET45 (in GlobalMapperWrapperNET45.dll) Version: 19.1.0.0 (19.1.0.0)
Syntax public static GM_Error_t32 ProjectPointToECEF(
double aXIn,
double aYIn,
double aZIn,
out double aX,
out double aY,
out double aZ,
DATUM aDatum,
GM_Projection_t aProjIn
)
Public Shared Function ProjectPointToECEF (
aXIn As Double,
aYIn As Double,
aZIn As Double,
<OutAttribute> ByRef aX As Double,
<OutAttribute> ByRef aY As Double,
<OutAttribute> ByRef aZ As Double,
aDatum As DATUM,
aProjIn As GM_Projection_t
) As GM_Error_t32
public:
static GM_Error_t32 ProjectPointToECEF(
double aXIn,
double aYIn,
double aZIn,
[OutAttribute] double% aX,
[OutAttribute] double% aY,
[OutAttribute] double% aZ,
DATUM aDatum,
GM_Projection_t^ aProjIn
)
Parameters
- aXIn
- Type: SystemDouble
IN: X coordinate of input point - aYIn
- Type: SystemDouble
IN: Y coordinate of input point - aZIn
- Type: SystemDouble
IN: Z coordinate of input point (meters above ellipsoid), usually 0 - aX
- Type: SystemDouble
OUT: ECEF X coordinate of input - aY
- Type: SystemDouble
OUT: ECEF Y coordinate of input - aZ
- Type: SystemDouble
OUT: ECEF Z coordinate of input - aDatum
- Type: GlobalMapper.TypesDATUM
IN: datum for ECEF conversion (normally GM_DATUM_WGS_84) - aProjIn
- Type: GlobalMapper.TypesGM_Projection_t
IN: projection of input point (NULL for current projection)
Return Value
Type:
GM_Error_t32A GM Error Code
See Also