pbfhogg 0.3.0

Fast OpenStreetMap PBF reader and writer for Rust. Read, write, and merge .osm.pbf files with pipelined parallel decoding.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Lightweight wire-format scanners that bypass full PrimitiveBlock construction.
//!
//! Used by performance-critical paths that need only a subset of element data
//! (e.g. ID + coordinate tuples for nodes, or ID + ref list for ways) and
//! cannot afford the string-table parsing and group allocation overhead of
//! the standard read pipeline.

pub(crate) mod classify;
pub(crate) mod node;
pub(crate) mod way;