Home
Softono

Shapefile Rs

Open source MIT Rust
76
Stars
28
Forks
2
Issues
7
Watchers
5 months
Last Commit

 About Shapefile Rs

Rust library to read & write shapefiles

Platforms

Web Self-hosted

Languages

Rust

Links

Need Help Installing Shapefile Rs?

We provide expert installation service for this software. Our team will install, configure, and secure Shapefile Rs on your server. plans start at just $30.

Shapefile Rs

View on GitHub

shapefile-rs

Rust library to read & write shapefiles .dbf files supported via the dbase crate

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 folder