shapefile 0.6.0

Read & Write shapefiles in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# shapefile-rs

Rust library to read & write shapefiles
.dbf files supported via the [dbase](https://crates.io/crates/dbase) crate

```rust
let mut reader = shapefile::Reader::from_path(filename).unwrap();

for result in reader.iter_shapes_and_records() {
    let (shape, record) = result.unwrap();
    println ! ("Shape: {}, records: ", shape);
    for (name, value) in record {
        println ! ("\t{}: {:?}, ", name, value);
    }
    println ! ();
}
```
You can check out examples in the [examples](https://github.com/tmontaigu/shapefile-rs/tree/master/examples/) folder