las-rs

rust library for reading and writing las files. las-rs explicitly supports las versions 1.0, 1.1, and 1.2; your mileage may vary when working with other format versions.

See the documentation for help using the library.

At this point, no executables are provided. In the future las-rs might provide utility programs such as lasinfo, modeled after libLAS.

The data files used for the unit tests were taken from the libLAS repository.

Download and building from source

bash $ git clone https://github.com/gadomski/las-rs $ cd las-rs $ cargo build $ cargo test

To build and view the documentation locally:

bash $ cargo doc --open

Integrating into your project

Add the following to your Cargo.toml:

toml [dependencies.las] git = "https://github.com/gadomski/las-rs"