spatialrust_io/las/mod.rs
1//! LAS/LAZ (ASPRS LiDAR) readers and writers for point clouds.
2
3mod reader;
4mod schema;
5mod writer;
6
7#[cfg(feature = "io-copc")]
8pub(crate) use reader::{metadata_from_las_header, point_cloud_from_las_points};
9pub use reader::{read_las, read_las_file, LasReader};
10pub use schema::{
11 infer_las_field_semantic, schema_for_las_header, schema_from_point_cloud,
12 schema_from_point_cloud_for_copc,
13};
14pub use writer::{write_las, write_las_file, LasWriteFormat, LasWriter};