Click or drag to resize
XDL

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

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

Namespace:  Pixoneer.NXDL.NIO
Assembly:  NXDLio (in NXDLio.dll) Version: 2.0.3.31
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
Type: SystemString
[In] 파일 경로
strDriverName
Type: SystemString
[Out] GDAL Vector Driver
sr
Type: Pixoneer.NXDL.NCCXSpatialReference
[Out] 벡터 파일의 좌표계
numLayer
Type: SystemInt32
[Out] 벡터 파일의 Layer 개수
arrLayerName
Type: System.CollectionsArrayList
[Out] Layer 이름 (string array)
arrGeoName
Type: System.CollectionsArrayList
[Out] Layer의 Geometry Type (string array)
arrNumFeature
Type: System.CollectionsArrayList
[Out] Layer에 포함된 Feature 개수 (long array)
arrMinx
Type: System.CollectionsArrayList
[Out] Layer의 바운더리 최소 X 좌표값 (double array)
arrMiny
Type: System.CollectionsArrayList
[Out] Layer의 바운더리 최소 Y 좌표값 (double array)
arrMaxx
Type: System.CollectionsArrayList
[Out] Layer의 바운더리 최대 X 좌표값 (double array)
arrMaxy
Type: System.CollectionsArrayList
[Out] Layer의 바운더리 최대 Y 좌표값 (double array)

Return Value

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