pbf-craft 1.0.2

A Rust library for reading and writing OpenSteetMap PBF file format.
Documentation
1
2
3
4
5
6
7
8
//! Writers for PBF data.
//!
//! [`crate::writers::PbfWriter`] streams elements into zlib-compressed PBF blobs, with dense-node support
//! and optional bounding-box metadata.

mod raw_writer;

pub use raw_writer::PbfWriter;