las 0.9.11

Reads and writes point clouds stored in the ASPRS las file format.
Documentation
1
2
3
4
5
6
7
#[test]
#[cfg(feature = "laz")]
fn read_invalid_file() {
    // https://github.com/gadomski/las-rs/pull/61
    let mut reader = las::Reader::from_path("tests/data/32-1-472-150-76.laz").unwrap();
    let _ = reader.points().next().unwrap().unwrap();
}