osmflat-rs
osmflat-rs copied to clipboard
OpenStreetMap flatdata format and compiler
Many OSM tools, such as JSOM, assign negative IDs to OSM entities, this denotes that the given entity has not yet been united with the main OSM dataset. The OSM...
The attributes you find with an OSM entity are invaluable for analysis. For example, keeping track of the OSM user is useful if you are trying to track down a...
Right now, it looks like we can only build a `Vec` by appending. It would be nice to be able to sort our vectors after they have been built. For...
What size does such file have if it holds the data from a planet.pbf file? Are there any other metrics you can give to estimate performance or size? Thank you
Often times there are accessors that transmute the same time into itself such as: https://github.com/boxdot/osmflat-rs/blob/011d70a90f784f8e60b1f4903e1367be454445d4/osmflat/src/osmflat_generated.rs#L494-L497 Is there any reason why this is being done, or is it something odd with...
I thought to add a spatial index to osmflat-rs, and have it partially implemented here (https://github.com/boxdot/osmflat-rs/compare/master...boydjohnson:osmflat-rs:feature/geospatial-archive). It is implemented for Nodes and Ways, but not relations. The index is this...