Rust implementation of FlatGeobuf.
FlatGeobuf is a performant binary encoding for geographic data based on flatbuffers that can hold a collection of Simple Features including circular interpolations as defined by SQL-MM Part 3.
```rust use flatgeobuf::*;
let mut reader = Reader::new(File::open("countries.fgb")?); let header = reader.readheader()?; let columnsmeta = columns_meta(&header);
reader.selectbbox(8.8, 47.2, 9.5, 55.3)?; while let Ok(feature) = reader.next() { let props = readallproperties(&feature, &columnsmeta); println!("{}", props["name"]); } ```
cargo doc --open
See tests
cargo test