8 releases (breaking)

Uses old Rust 2015

0.7.1 Apr 24, 2021
0.7.0 Sep 23, 2020
0.6.0 Aug 29, 2020
0.5.0 Apr 25, 2020
0.1.0 Aug 4, 2017

#126 in Geospatial

Download history 161/week @ 2024-03-03 171/week @ 2024-03-10 124/week @ 2024-03-17 118/week @ 2024-03-24 147/week @ 2024-03-31 58/week @ 2024-04-07 65/week @ 2024-04-14 126/week @ 2024-04-21 144/week @ 2024-04-28 117/week @ 2024-05-05 186/week @ 2024-05-12 172/week @ 2024-05-19 216/week @ 2024-05-26 157/week @ 2024-06-02 134/week @ 2024-06-09 102/week @ 2024-06-16

648 downloads per month
Used in 6 crates (5 directly)

AGPL-3.0+

34KB
683 lines

rust-wkb

This crate provides functions to convert rust-geo geometry types to and from Well Known Binary format, i.e. ISO 19125

Examples

use geo_types::*;
use wkb::*;

let p: Geometry<f64> = Geometry::Point(Point::new(2., 4.));
let res = geom_to_wkb(&p);
assert_eq!(res, vec![1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 16, 64]);

You can also 'read' a Geometry from a std::io::Read:

use geo_types::*;
use wkb::*;

let bytes: Vec<u8> = vec![1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 16, 64];
let p: Geometry<f64> = wkb_to_geom(&mut bytes.as_slice()).unwrap();
assert_eq!(p, Geometry::Point(Point::new(2., 4.)));

Adding proper *Ext traits is planned.


lib.rs:

This crate provides functions to convert rust-geo geometry types to and from Well Known Binary format.

Examples

use geo_types::*;
use wkb::*;

let p: Geometry<f64> = Geometry::Point(Point::new(2., 4.));
let res = geom_to_wkb(&p).unwrap();
assert_eq!(res, vec![1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 16, 64]);

You can also 'read' a Geometry from a std::io::Read:

use std::io::prelude::*;
use std::io::Cursor;
use geo_types::*;
use wkb::*;

let bytes: Vec<u8> = vec![1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 16, 64];
let mut bytes_cursor = Cursor::new(bytes);
let p = bytes_cursor.read_wkb().unwrap();
assert_eq!(p, Geometry::Point(Point::new(2., 4.)));

.write_wkb(Geometry<Into<f64>>) works similar:


let mut bytes: Vec<u8> = vec![];
bytes.write_wkb(&Geometry::Point(Point::new(2_f64, 4.))).unwrap();
assert_eq!(bytes, vec![1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 0, 0, 16, 64]);

Dependencies

~750KB
~15K SLoC