liblas

Crates.ioliblas
lib.rsliblas
version0.0.1
created_at2025-07-15 01:20:26.952887+00
updated_at2025-07-15 01:20:26.952887+00
descriptionShort description of your crate
homepagehttps://github.com/matthewoestreich/liblas#README.md
repositoryhttps://github.com/matthewoestreich/liblas
max_upload_size
id1752383
size56,790
Matt Oestreich (matthewoestreich)

documentation

README

liblas

Parse .las Files in Rust

Canadian Well Logging Society LAS File 2.0 Specification

Installation

To use programmatically

cargo add liblas

To use CLI globally

cargo install liblas

Usage

let my_las_file = LasFile::parse("/some/file.las".into())?;
// To json string?
let json_str = my_las_file.to_json_str()?;
Commit count: 0

cargo fmt