Click or drag to resize
XDL

XccWGP2UTM Method (XAngle, XAngle, XVertex2d, Int32, String)

Geographic 좌표 시스템으로부터 UTM 좌표계로의 변환을 수행한다.

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

Parameters

lon
Type: Pixoneer.NXDLXAngle
[In] 입력 경도값.
lat
Type: Pixoneer.NXDLXAngle
[In] 입력 위도값.
pos
Type: Pixoneer.NXDLXVertex2d
[Out] 출력 UTM 좌표.
Zone
Type: SystemInt32
[Out] 출력 Zone Number.
latitudeBand
Type: SystemString
[Out] 출력 위도 Band

Return Value

Type: Boolean
성공이면 true, 실패면 false를 리턴
Examples
XAngle angLon = new XAngle();
XAngle angLat = new XAngle();
angLon.deg = 127.1234;
angLat.deg = 36.1234;
int nZone = 0;
string dLatitudeBand = "";
XVertex2d pos = new XVertex2d();

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