| Crates.io | liblas |
| lib.rs | liblas |
| version | 0.0.1 |
| created_at | 2025-07-15 01:20:26.952887+00 |
| updated_at | 2025-07-15 01:20:26.952887+00 |
| description | Short description of your crate |
| homepage | https://github.com/matthewoestreich/liblas#README.md |
| repository | https://github.com/matthewoestreich/liblas |
| max_upload_size | |
| id | 1752383 |
| size | 56,790 |
Parse .las Files in Rust
Canadian Well Logging Society LAS File 2.0 Specification
To use programmatically
cargo add liblas
To use CLI globally
cargo install liblas
let my_las_file = LasFile::parse("/some/file.las".into())?;
// To json string?
let json_str = my_las_file.to_json_str()?;