public ValueTuple<int,int> GetFileCounts()
Public Function GetFileCounts() As ValueTuple(Of Integer,Integer)
Return Value
The number of LAS and ZLAS files that comprise this LAS dataset.
public ValueTuple<int,int> GetFileCounts()
Public Function GetFileCounts() As ValueTuple(Of Integer,Integer)
Exception | Description |
---|---|
ArcGIS.Core.Data.Exceptions.GeodatabaseException | A geodatabase-related exception has occurred. |
ArcGIS.Core.CalledOnWrongThreadException | This method or property must be called within the lambda passed to QueuedTask.Run |
var (lasFileCount, zLasFileCount) = lasDataset.GetFileCounts(); IReadOnlyList<ArcGIS.Core.Data.Analyst3D.LasFile> fileInfo = lasDataset.GetFiles(); foreach (var file in fileInfo) { var path = file.FilePath; var name = file.FileName; var ptCount = file.PointCount; var zMin = file.ZMin; var zMax = file.ZMax; }
Target Platforms: Windows 11, Windows 10