Click or drag to resize
XDL

XccUTM2MGRS(XVertex2d, Int32, String) Method

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

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

Parameters

pos  XVertex2d
[In] 입력 UTM 좌표점. 남반구일 경우, y값에서 10000000.0을 빼준 값을 설정한다. (pos.y = pos.y - 10000000.0)
Zone  Int32
[In] 입력 UTM 좌표계의 입력 좌표점의 Zone number.
strMGRS  String
[Out] 출력 MGRS좌표.

Return Value

Boolean
성공이면 true, 실패면 false를 리턴
Example
C#
XVertex2d pos = new XVertex2d(434565, 4458652);
int nZone = 52;
string strMGRS = "";
Xcc.UTM2MGRS(pos, nZone, ref strMGRS);
See Also