https://github.com/gadomski/las-rs
Read and write ASPRS las files, Rust edition.
https://github.com/gadomski/las-rs
las lidar pointcloud rust
Last synced: about 1 year ago
JSON representation
Read and write ASPRS las files, Rust edition.
- Host: GitHub
- URL: https://github.com/gadomski/las-rs
- Owner: gadomski
- License: mit
- Created: 2015-05-06T15:16:35.000Z (about 11 years ago)
- Default Branch: main
- Last Pushed: 2025-04-22T00:26:47.000Z (about 1 year ago)
- Last Synced: 2025-05-15T23:02:52.639Z (about 1 year ago)
- Topics: las, lidar, pointcloud, rust
- Language: Rust
- Homepage:
- Size: 668 KB
- Stars: 85
- Watchers: 7
- Forks: 34
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT
Awesome Lists containing this project
- Awesome-Geospatial - las-rs - Read and write ASPRS las files. (Rust)
README
las-rs
======
[](https://github.com/gadomski/las-rs/actions/workflows/continuous-integration.yml)
[](https://crates.io/crates/las)
[](https://docs.rs/las/latest/las/)

[](./CODE_OF_CONDUCT)
Read and write [ASPRS las files](http://www.asprs.org/Committee-General/LASer-LAS-File-Format-Exchange-Activities.html) natively with rust.
```toml
[dependencies]
las = "0.9"
```
To include [laz](https://laszip.org/) support:
```toml
[dependencies]
las = { version = "0.9", features = ["laz"] }
```
To include `laz` support with parallel compression/decompression
to enhance speed (`laz-parallel` implies `laz` so you don't need to specify both):
```toml
[dependencies]
las = { version = "0.9", features = ["laz-parallel"] }
```