Class LasPointReader
A reader for points in LAZ or LAS format
Inheritance
System.Object
LasPointReader
Implements
System.IDisposable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: Fusee.PointCloud.Las.Desktop.dll
Syntax
public class LasPointReader : IDisposable, IPointReader
Constructors
LasPointReader()
A LASPointReader can open point files encoded by the las format v. 1.4 with the following extensions:
- *.asc
- *.bil
- *.bin
- *.dtm
- *.las
- *.ply
- *.qfit
- *.shp
- *.txt
- *.laz
Declaration
LasPointReader(String)
A LASPointReader can open point files encoded by the las format v. 1.4 with the following extensions:
- *.asc
- *.bil
- *.bin
- *.dtm
- *.las
- *.ply
- *.qfit
- *.shp
- *.txt
- *.laz
Declaration
public LasPointReader(string filePath)
Parameters
Type |
Name |
Description |
System.String |
filePath |
The path to a las encoded file.
|
Properties
The point cloud meta data, usually stored in the header of the las file.
Declaration
public LasMetaInfo MetaInfo { get; }
Property Value
PointAccessor
Declaration
public IPointAccessor PointAccessor { get; }
Property Value
PointType
Declaration
public PointType PointType { get; }
Property Value
Methods
Dispose()
Declaration
Dispose(Boolean)
Declaration
protected virtual void Dispose(bool disposing)
Parameters
Type |
Name |
Description |
System.Boolean |
disposing |
|
Finalize()
Declaration
protected void Finalize()
GetOctree()
Declaration
public IPointCloudOctree GetOctree()
Returns
GetPointCloudComponent(RenderMode)
Declaration
public IPointCloud GetPointCloudComponent(RenderMode renderMode)
Parameters
Returns
LoadNodeData<TPoint>(OctantId)
Declaration
public TPoint[] LoadNodeData<TPoint>(OctantId id)
where TPoint : new()
Parameters
Returns
Type |
Description |
TPoint[] |
|
Type Parameters
LoadNodeData<TPoint>(String, IPointAccessor)
Declaration
public TPoint[] LoadNodeData<TPoint>(string id, IPointAccessor pointAccessor)
where TPoint : new()
Parameters
Returns
Type |
Description |
TPoint[] |
|
Type Parameters
LoadPointsForNodeAsync<TPoint>(String, IPointAccessor)
Declaration
public Task<TPoint[]> LoadPointsForNodeAsync<TPoint>(string guid, IPointAccessor pointAccessor)
where TPoint : new()
Parameters
Returns
Type |
Description |
System.Threading.Tasks.Task<TPoint[]> |
|
Type Parameters
ReadNextPoint<TPoint>(ref TPoint, IPointAccessor)
Reads the next point and writes it to the given point
Declaration
public bool ReadNextPoint<TPoint>(ref TPoint point, IPointAccessor pa)
where TPoint : new()
Parameters
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
ReadNPoints<TPoint>(Int32, IPointAccessor)
Reads the given amount of points from stream
Declaration
public TPoint[] ReadNPoints<TPoint>(int n, IPointAccessor pa)
where TPoint : new()
Parameters
Returns
Type |
Description |
TPoint[] |
|
Type Parameters
Exceptions
Type |
Condition |
System.IO.FileNotFoundException |
|
Implements
System.IDisposable