rust-geobuf

Crates.io Build Status Coverage Status

Tested with rust 1.60

A port of geobuf encoder and decoder into Rust and WebAssembly

Usage

This crate provides a command line binary, a rust library, and a WebAssembly package. The binary and library are in geobuf and the Rust/WebAssembly code is in geobuf-wasm.

Binary:

geobuf [encode|decode] -i <path-to-input-file> -o <path-to-output-file>

Use geobuf [encode|decode] --help for more info.

Library

``` use geobuf::{decode, encode}; use serde_json;

fn main() { let originalgeojson = serdejson::fromstr(r#"{"type": "Point", "coordinates": [100.0, 0.0]}"#).unwrap(); let geobuf = encode::Encoder::encode(&originalgeojson, 6, 2).unwrap(); let geojson = decode::Decoder::decode(&geobuf).unwrap(); asserteq!(originalgeojson, geojson); } ```

WebAssembly

The www folder contains a sample project showing how the wasm code can be used.

To run the example locally, clone the repo and run the following:

Note: The wasm code is currently slower that the node version and requires some refactoring to improve how data is being passed between the JS and Rust code.