shapefile 0.1.0

Read & Write shapefiles in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate shapefile;
/*
use std::io::Cursor;

#[test]
fn write_polyline() {
    let mut polys = Vec::<shapefile::record::Polyline>::with_capacity(1);
    polys.push(shapefile::record::Polyline::default());

    let v = Vec::<u8>::new();
    let cursor = Cursor::new(v);
    let mut writer = shapefile::writer::Writer::new(cursor);
    writer.write_shapes(polys).unwrap();
}*/