28 releases

0.7.13 Feb 24, 2024
0.7.12 Nov 14, 2023
0.7.11 Jul 13, 2023
0.7.9 Mar 7, 2023
0.1.1 May 15, 2018

#12 in Geospatial

Download history 39373/week @ 2023-11-27 37935/week @ 2023-12-04 39211/week @ 2023-12-11 32846/week @ 2023-12-18 14800/week @ 2023-12-25 28361/week @ 2024-01-01 37830/week @ 2024-01-08 37088/week @ 2024-01-15 37130/week @ 2024-01-22 36333/week @ 2024-01-29 43803/week @ 2024-02-05 51876/week @ 2024-02-12 54174/week @ 2024-02-19 54900/week @ 2024-02-26 55069/week @ 2024-03-04 20594/week @ 2024-03-11

189,241 downloads per month
Used in 314 crates (133 directly)

MIT/Apache

195KB
3.5K SLoC

geo

geo on Crates.io Coverage Status Documentation Discord

geo

Geospatial Primitives, Algorithms, and Utilities

Chat or ask questions on Discord

The geo crate provides geospatial primitive types such as Point, LineString, and Polygon, and provides algorithms and operations such as:

  • Area and centroid calculation
  • Simplification and convex hull operations
  • Euclidean and Haversine distance measurement
  • Intersection checks
  • Affine transforms such as rotation and translation
  • All DE-9IM spatial predicates such as contains, crosses, and touches.

Please refer to the documentation for a complete list.

The primitive types also provide the basis for other functionality in the Geo ecosystem, including:

Example

// primitives
use geo::{line_string, polygon};

// algorithms
use geo::ConvexHull;

// An L shape
let poly = polygon![
    (x: 0.0, y: 0.0),
    (x: 4.0, y: 0.0),
    (x: 4.0, y: 1.0),
    (x: 1.0, y: 1.0),
    (x: 1.0, y: 4.0),
    (x: 0.0, y: 4.0),
    (x: 0.0, y: 0.0),
];

// Calculate the polygon's convex hull
let hull = poly.convex_hull();

assert_eq!(
    hull.exterior(),
    &line_string![
        (x: 4.0, y: 0.0),
        (x: 4.0, y: 1.0),
        (x: 1.0, y: 4.0),
        (x: 0.0, y: 4.0),
        (x: 0.0, y: 0.0),
        (x: 4.0, y: 0.0),
    ]
);

Contributing

Contributions are welcome! Have a look at the issues, and open a pull request if you'd like to add an algorithm or some functionality.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~0.5–1MB
~20K SLoC