Click or drag to resize
XDL

XccMGRS2WGP Method

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

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

Parameters

strMGRS  String
[In] MGRS 좌표점
lon  XAngle
[Out] 경도
lat  XAngle
[Out] 위도

Return Value

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