Click or drag to resize
XDL

XVectorIOGetFileInfo(String, String, XSpatialReference, Int32, ArrayList, ArrayList, ArrayList, ArrayList, ArrayList, ArrayList, ArrayList) Method

표준 및 상용 포맷의 벡터 파일 정보를 로딩한다.

Namespace: Pixoneer.NXDL.NIO
Assembly: NXDLio (in NXDLio.dll) Version: 2.0.3.38
Syntax
C#
public bool GetFileInfo(
	string strFileName,
	ref string strDriverName,
	ref XSpatialReference sr,
	ref int numLayer,
	ref ArrayList arrLayerName,
	ref ArrayList arrGeoName,
	ref ArrayList arrNumFeature,
	ref ArrayList arrMinx,
	ref ArrayList arrMiny,
	ref ArrayList arrMaxx,
	ref ArrayList arrMaxy
)

Parameters

strFileName  String
[In] 파일 경로
strDriverName  String
[Out] GDAL Vector Driver
sr  XSpatialReference
[Out] 벡터 파일의 좌표계
numLayer  Int32
[Out] 벡터 파일의 Layer 개수
arrLayerName  ArrayList
[Out] Layer 이름 (string array)
arrGeoName  ArrayList
[Out] Layer의 Geometry Type (string array)
arrNumFeature  ArrayList
[Out] Layer에 포함된 Feature 개수 (long array)
arrMinx  ArrayList
[Out] Layer의 바운더리 최소 X 좌표값 (double array)
arrMiny  ArrayList
[Out] Layer의 바운더리 최소 Y 좌표값 (double array)
arrMaxx  ArrayList
[Out] Layer의 바운더리 최대 X 좌표값 (double array)
arrMaxy  ArrayList
[Out] Layer의 바운더리 최대 Y 좌표값 (double array)

Return Value

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