Click or drag to resize
XDL

XccUTM2WGP Method

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

Namespace: Pixoneer.NXDL.NCC
Assembly: NXDLcc (in NXDLcc.dll) Version: 2.0.3.38
Syntax
C#
public static bool UTM2WGP(
	XVertex2d pos,
	int Zone,
	ref XAngle lon,
	ref XAngle lat
)

Parameters

pos  XVertex2d
[In] UTM 좌표점. 남반구일 경우, y값에서 10000000.0을 빼준 값을 설정한다. (pos.y = pos.y - 10000000.0)
Zone  Int32
[In] UTM 좌표계의 입력 좌표점의 Zone number
lon  XAngle
[Out] 변환 후의 경도
lat  XAngle
[Out] 변환 후의 위도

Return Value

Boolean
성공이면 true, 실패면 false를 리턴
Example
C#
XVertex2d pos = new XVertex2d(434565, 4458652); 
int nZone = 52;
XAngle angLon = new XAngle();
XAngle angLat = new XAngle();

Xcc.UTM2WGP(pos, nZone, ref angLon, ref angLat);
See Also