LAS or LAZ file reader
The LAS file format is an industry-standard binary format for storing lidar data, developed and maintained by the American Society for Photogrammetry and Remote Sensing (ASPRS). The LAZ file format is a compressed version of the LAS file format.
A LAS file contains a public header, which has lidar metadata, followed by lidar point records. Each point record contains attributes such as 3-D coordinates, intensity and GPS timestamp.
A lasFileReader object stores the metadata present in the LAS or LAZ file
as read-only properties. The object function, readPointCloud,
uses these properties to read point cloud data from the file.
reads the metadata from a LAS or LAZ file, lasReader = lasFileReader(fileName)fileName, and stores it
as properties of an output lasFileReader object,
lasReader. The fileName input sets the
FileName property.
readPointCloud | Read point cloud data from a LAS or LAZ file |