Click or drag to resize
XDL

XccMGRS2UTM Method

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

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

Parameters

strMGRS
Type: SystemString
[In] 입력 MGRS 좌표점
pos
Type: Pixoneer.NXDLXVertex2d
[Out] 출력 UTM 좌표점
Zone
Type: SystemInt32
[Out] 출력 UTM좌표계의 Zone number

Return Value

Type: Boolean
성공이면 true, 실패면 false를 리턴
Examples
XVertex2d pos = new XVertex2d();
int nZone = 0;

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