Click or drag to resize
XDL

XDMBandPointsToGridSearchBoundInfo Method

입력 파일 경로의 데이터를 읽어 데이터의 공간 좌표값 중 최대값과 최소값을 계산한다. 현재는 확장자가 LAS파일인 경우만 지원한다.

Namespace:  Pixoneer.NXDL.NRS
Assembly:  NXDLrs (in NXDLrs.dll) Version: 1.2.817.72
Syntax
C#
public static bool SearchBoundInfo(
	string strFilename,
	ref double minx,
	ref double maxx,
	ref double miny,
	ref double maxy,
	ref string strError,
	XThread thd
)

Parameters

strFilename
Type: SystemString
[In] 점좌표 데이터 파일 경로.
minx
Type: SystemDouble
[In] X축 방향 최소 경계값
maxx
Type: SystemDouble
[In] X축 방향 최대 경계값
miny
Type: SystemDouble
[In] Y축 방향 최소 경계값
maxy
Type: SystemDouble
[In] Y축 방향 최대 경계값
strError
Type: SystemString
[In] 내부 에러 발생시 Error값을 얻는다.
thd
Type: Pixoneer.NXDLXThread
[In] XThread 객체.

Return Value

Type: Boolean
성공이면 true, 실패이면 false.
See Also