Home

Awesome

osmx-rs

This is a Rust port of OSMExpress, a fast storage format for OpenStreetMap data created by Brandon Liu for Protomaps. The format supports random access (looking up nodes, ways and relations by ID), spatial indexing of node locations, and in-place updates.

Usage

See the docs for API documentation and the examples directory for commented example programs.

The README, Manual, and Programming Guide of the OSMExpress C++ reference implementation may also be helpful.

Features

This crate supports reading from .osmx database files, including:

It does not yet support:

Pull requests for these missing features are welcome.

Safety

osmx-rs is not designed for reading untrusted input files. Using this crate to read a malformed .osmx file may cause the process to panic, or worse. Pull requests to improve safety or prevent panics are welcome.

Also worth noting that osmx-rs depends on the lmdb crate, which wraps the LMDB C API and therefore requires the use of unsafe.

CLI command

This repository also contains a CLI tool for interacting with .osmx files.

Usage: osmx-rs [COMMAND] [ARGS...]

Commands:

The command is intended to be useful tool, but also to be an illustrative example of how to use the osmx-rs crate to create and interact with .osmx files. The source code can be found in the bin/ directory.

License

This code can be used under the terms of either the MIT license or Apache-2.0 license, at your option.