GM_Utility .ProjectPointAtElev Method
Projects a point from one projection to another at a fixed elevation above the ellipsoid.

Namespace:GlobalMapper
Assembly:  GlobalMapperWrapperNET (in GlobalMapperWrapperNET.dll) Version: 18.0.0.0 (18.0.0.0)

Syntax
C#
Copy
public static GM_Error_t32 ProjectPointAtElev(
    double aXIn,
    double aYIn,
    out double aXOut,
    out double aYOut,
    GM_Projection_t aProjIn,
    GM_Projection_t aProjOut,
    double aElev
)

Parameters

aXIn
Type:  System . Double
IN: X coordinate of input point
aYIn
Type:  System . Double
IN: Y coordinate of input point
aXOut
Type:  System . Double
OUT: X coordinate of output point
aYOut
Type:  System . Double
OUT: Y coordinate of output point
aProjIn
Type:  GlobalMapper . GM_Projection_t
(GM_Projection_t*) IN: projection to convert from (NULL for current)
aProjOut
Type:  GlobalMapper . GM_Projection_t
(GM_Projection_t*)IN: projection to convert to (NULL for current)
aElev
Type:  System . Double
IN: elevation in meters above ellipsoid surface to do conversion at

Return Value

Type:  GM_Error_t32
A GM Error Code
See Also