 | XccUTM2MGRS Method |
UTM 좌표계로부터 MGRS 좌표계로 변환한다.
Namespace:
Pixoneer.NXDL.NCC
Assembly:
NXDLcc (in NXDLcc.dll) Version: 1.2.817.72
Syntaxpublic static bool UTM2MGRS(
XVertex2d pos,
int Zone,
ref string strMGRS
)
Parameters
- pos
- Type: Pixoneer.NXDLXVertex2d
[In] 입력 UTM 좌표점. - Zone
- Type: SystemInt32
[In] 입력 UTM 좌표계의 입력 좌표점의 Zone number. - strMGRS
- Type: SystemString
[Out] 출력 MGRS좌표.
Return Value
Type:
Boolean 성공이면 true, 실패면 false를 리턴
ExamplesXVertex2d pos = new XVertex2d(434565, 4458652);
int nZone = 52;
XAngle angLon = new XAngle();
XAngle angLat = new XAngle();
string strMGRS = "";
Xcc.UTM2MGRS(pos, nZone, ref strMGRS);
See Also