osmpbf icon indicating copy to clipboard operation
osmpbf copied to clipboard

A Rust library for reading the OpenStreetMap PBF file format (*.osm.pbf).

Results 19 osmpbf issues
Sort by recently updated
recently updated
newest added

Would be good to be able to get a ParallelIterator directly for cases where more control is needed.

I would like to implement PBF write support. My initial thoughts are to have two structs: * `BlockBuilder` struct equivalent to `PrimitiveBlock`, contains shared state and a list of `GroupBuilder`s...

This makes the code a bit more performant by removing the wrapping RelMemberType as a separate enum. No point now with protobuf3 as it gets generated as is. I had...

I just wrote a delta encoding/decoding crate that takes care of some edge cases and has a lot of testing and perf benchmarking, and this PR makes use of that...

Would it make sense to consolidate all CI in a single github workflows platform? Seems weird to have multiple near-identical testing infrastructures that require contributors to understand?

Hi @b-r-u , would you be interested in transferring this repo to the https://github.com/georust community? This way we could have many more people working on it at the same time,...

Hi, I just started down the Rusty road, and would love to get some suggestions on the best usage of osmpbf. I would like to re-implement [Sophox parser](https://github.com/Sophox/sophox/tree/main/osm2rdf) -- a...

When iterating over the references of nodes in a way the first and last node id reference has the same id, in almost all ways (there are exceptions, but they...

Adds new methods to HeaderBlock for retrieving the protobuf fields used by Osmosis for [replication](https://wiki.openstreetmap.org/wiki/Osmosis/Replication). For context, I'm working on [a Rust port of OSMExpress](https://github.com/jake-low/osmx-rs). I'm hoping to use your...