copc-rs

Cloud Optimized Point Cloud (COPC) reader.


Keywords
geo, pointcloud, lidar, copc, las
Licenses
MIT/Apache-2.0

Documentation

copc-rs

crates.io version docs.rs docs

copc-rs is a library for reading Cloud Optimized Point Cloud (COPC) data.

Usage example

let laz_file = BufReader::new(File::open("autzen-classified.copc.laz")?);
let mut copc_reader = CopcReader::open(laz_file)?;
for point in copc_reader.points(LodSelection::Level(0), BoundsSelection::All)?.take(5) {
    println!("Point coordinates: ({}, {}, {})", point.x, point.y, point.z);
}