GM_UtilityProjectPoint Method |
Projects a point from one projection to another
Namespace:
GlobalMapper
Assembly:
GlobalMapperWrapperNET45 (in GlobalMapperWrapperNET45.dll) Version: 19.1.0.0 (19.1.0.0)
Syntax public static GM_Error_t32 ProjectPoint(
double aXIn,
double aYIn,
out double aXOut,
out double aYOut,
GM_Projection_t aProjIn,
GM_Projection_t aProjOut
)
Public Shared Function ProjectPoint (
aXIn As Double,
aYIn As Double,
<OutAttribute> ByRef aXOut As Double,
<OutAttribute> ByRef aYOut As Double,
aProjIn As GM_Projection_t,
aProjOut As GM_Projection_t
) As GM_Error_t32
public:
static GM_Error_t32 ProjectPoint(
double aXIn,
double aYIn,
[OutAttribute] double% aXOut,
[OutAttribute] double% aYOut,
GM_Projection_t^ aProjIn,
GM_Projection_t^ aProjOut
)
Parameters
- aXIn
- Type: SystemDouble
IN: X coordinate of input point - aYIn
- Type: SystemDouble
IN: Y coordinate of input point - aXOut
- Type: SystemDouble
OUT: X coordinate of output point - aYOut
- Type: SystemDouble
OUT: Y coordinate of output point - aProjIn
- Type: GlobalMapper.TypesGM_Projection_t
IN: projection to convert from (NULL for current) - 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