Click or drag to resize
XDL

XccUTM2WGP Method

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

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

Parameters

pos
Type: Pixoneer.NXDLXVertex2d
[In] UTM 좌표점
Zone
Type: SystemInt32
[In] UTM 좌표계의 입력 좌표점의 Zone number
lon
Type: Pixoneer.NXDLXAngle
[Out] 변환 후의 경도
lat
Type: Pixoneer.NXDLXAngle
[Out] 변환 후의 위도

Return Value

Type: Boolean
성공이면 true, 실패면 false를 리턴
Examples
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