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

#118 in Geospatial

Download history 92/week @ 2024-07-24 141/week @ 2024-07-31 147/week @ 2024-08-07 249/week @ 2024-08-14 200/week @ 2024-08-21 290/week @ 2024-08-28 729/week @ 2024-09-04 509/week @ 2024-09-11 523/week @ 2024-09-18 517/week @ 2024-09-25 574/week @ 2024-10-02 492/week @ 2024-10-09 394/week @ 2024-10-16 445/week @ 2024-10-23 522/week @ 2024-10-30 171/week @ 2024-11-06

1,606 downloads per month
Used in 7 crates (6 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

~735KB
~14K SLoC