pbfhogg 0.4.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
11
12
13
14
15
//! Inspect PBF file: comprehensive metadata, block breakdown, ordering analysis.
//! Also provides `show_element` for displaying a single element by ID.

mod format;
#[cfg(feature = "commands")]
mod json;
pub mod node_stats;
mod report;
mod scan;
mod show_element;
mod types;

pub use scan::inspect;
pub use show_element::{show_element, ShowElementType};
pub use types::InspectReport;