#wkb

wkb

Convert geo-types from georust to/from Well Known Binary

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

#138 in Geospatial

Download history 317/week @ 2023-10-17 446/week @ 2023-10-24 342/week @ 2023-10-31 504/week @ 2023-11-07 311/week @ 2023-11-14 596/week @ 2023-11-21 532/week @ 2023-11-28 535/week @ 2023-12-05 275/week @ 2023-12-12 235/week @ 2023-12-19 285/week @ 2023-12-26 339/week @ 2024-01-02 161/week @ 2024-01-09 99/week @ 2024-01-16 95/week @ 2024-01-23 110/week @ 2024-01-30

504 downloads per month
Used in 5 crates

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