-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
## [0.2.0] - 2024-08-13 | ||
|
||
### Added | ||
|
||
- `osmx-rs` CLI command, which includes an `extract` subcommand to turn an `.osm.pbf` file into a `.osmx` database, and a `stat` command which prints statistics about the contents of an `.osmx` database. | ||
|
||
## [0.1.0] - 2024-03-06 | ||
|
||
Initial release. | ||
|
||
Supports reading `.osmx` files, including: | ||
|
||
- fetching nodes, ways and relations by ID | ||
- reading an element's tags | ||
- getting a node's location, a way's nodes, or a relation's members | ||
- finding nodes in a region using the spatial index | ||
- getting reverse relationships (finding all ways that a node is part of, or all relations that an element is a member of) | ||
|
||
Does not yet support: | ||
|
||
- reading element metadata (e.g. the version number of an element or the changeset and user that most recently modified it) | ||
- writing data to an .osmx database, or creating a new .osmx database | ||
|
||
|
||
|
||
[unreleased]: https://github.com/jake-low/osmx-rs/compare/v1.1.1...HEAD | ||
[0.2.0]: https://github.com/jake-low/osmx-rs/compare/v0.1.0...v0.2.0 | ||
[0.1.0]: https://github.com/jake-low/osmx-rs/releases/tag/v0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "osmx" | ||
description = "Rust port of OSMExpress - a fast database file format for OpenStreetMap" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Jake Low <[email protected]>"] | ||
homepage = "https://github.com/jake-low/osmx-rs" | ||
repository = "https://github.com/jake-low/osmx-rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters