wblidar 0.1.1

High-performance library for reading and writing LiDAR point cloud data (LAS, LAZ, COPC, PLY, E57)
Documentation
1
2
3
4
5
6
7
8
9
10
//! LAS 1.1 – 1.4 reader and writer.
pub mod header;
pub mod reader;
pub mod vlr;
pub mod writer;

pub use header::{GlobalEncoding, LasHeader, PointDataFormat};
pub use reader::LasReader;
pub use vlr::{Vlr, VlrKey};
pub use writer::{LasWriter, WriterConfig};