Click or drag to resize
XDL

XccMGRS2WGP Method

MGRS 좌표계로부터 Geographic좌표계로 변환한다.

Namespace:  Pixoneer.NXDL.NCC
Assembly:  NXDLcc (in NXDLcc.dll) Version: 1.2.817.72
Syntax
C#
public static bool MGRS2WGP(
	string strMGRS,
	ref XAngle lon,
	ref XAngle lat
)

Parameters

strMGRS
Type: SystemString
[In] MGRS 좌표점
lon
Type: Pixoneer.NXDLXAngle
[Out] 경도
lat
Type: Pixoneer.NXDLXAngle
[Out] 위도

Return Value

Type: Boolean
성공이면 true, 실패면 false를 리턴
Examples
XVertex2d pos = new XVertex2d();
XAngle lon = new XAngle();
XAngle lat = new XAngle();
Xcc.MGRS2WGP("52SCE3112199266", ref lon, ref lat);
See Also