copc-rs 0.5.0

Cloud Optimized Point Cloud (COPC) reader and writer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Library for reading and writing Cloud Optimized Point Cloud ([COPC](https://copc.io/)) data.

const MIN_NODE_SIZE_DEFAULT: i32 = 256;
const MAX_NODE_SIZE_DEFAULT: i32 = 16384;
const VERSION: &str = env!("CARGO_PKG_VERSION");

mod compressor;
mod copc;
mod decompressor;
mod error;
mod reader;
mod writer;

pub use error::*;
pub use las::{Bounds, Vector};
pub use reader::*;
pub use writer::*;