Click or drag to resize
XDL

XccMGRS2UTM Method

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

Namespace: Pixoneer.NXDL.NCC
Assembly: NXDLcc (in NXDLcc.dll) Version: 2.0.3.38
Syntax
C#
public static bool MGRS2UTM(
	string strMGRS,
	ref XVertex2d pos,
	ref int Zone
)

Parameters

strMGRS  String
[In] 입력 MGRS 좌표점
pos  XVertex2d
[Out] 출력 UTM 좌표점
Zone  Int32
[Out] 출력 UTM좌표계의 Zone number

Return Value

Boolean
성공이면 true, 실패면 false를 리턴
Example
C#
XVertex2d pos = new XVertex2d();
int nZone = 0;

Xcc.MGRS2UTM("52SCE3112199266", ref pos, ref nZone);
See Also