#codec #encoded #gis #decoding #google #format

polyline

Encoder and decoder for the Google Encoded Polyline format

15 releases (breaking)

new 0.11.0 May 13, 2024
0.10.1 May 10, 2023
0.10.0 Mar 12, 2023
0.9.0 Feb 5, 2021
0.4.0 Jul 17, 2016

#9 in Geospatial

Download history 1482/week @ 2024-01-25 1348/week @ 2024-02-01 1425/week @ 2024-02-08 2031/week @ 2024-02-15 1721/week @ 2024-02-22 1452/week @ 2024-02-29 1061/week @ 2024-03-07 1444/week @ 2024-03-14 1730/week @ 2024-03-21 1625/week @ 2024-03-28 1571/week @ 2024-04-04 1012/week @ 2024-04-11 929/week @ 2024-04-18 767/week @ 2024-04-25 844/week @ 2024-05-02 886/week @ 2024-05-09

3,690 downloads per month
Used in 6 crates

MIT/Apache

32KB
325 lines

polyline

polyline

polyline on Crates.io Documentation Discord

Fast Google Encoded Polyline encoding & decoding in Rust.

Example

use polyline;
use geo_types::line_string;
let coord = line_string![(x: -120.2, y: 38.5), (x: -120.95, y: 40.7), (x: -126.453, y: 43.252)];
let output = "_p~iF~ps|U_ulLnnqC_mqNvxq`@";
let result = polyline::encode_coordinates(coord, 5).unwrap();
assert_eq!(result, output)

A Note on Coordinate Order

This crate uses Coord and LineString types from the geo-types crate, which encodes coordinates in (x, y) / (lon, lat) order. The Polyline algorithm and its first-party documentation assumes the opposite coordinate order. It is thus advisable to pay careful attention to the order of the coordinates you use for encoding and decoding.

Documentation

FFI

C-compatible FFI bindings for this crate are provided by the polyline-ffi crate.

Dependencies

~755KB
~15K SLoC