Skip to main content

copc_writer/
lib.rs

1//! Pure-Rust COPC writer.
2
3mod spill;
4mod writer;
5
6pub use spill::{SpillReader, SpillWriter};
7pub use writer::{
8    convert_las_to_copc_streaming, write_source, write_source_with_cancel,
9    write_streaming_with_cancel, ColumnBatchSource, CopcPointFields, CopcPointSource,
10    CopcWriterParams,
11};