#postgis #geospatial #gis #geography

geo-postgis

Conversion between geo-types and postgis types

4 releases

0.2.2 Aug 4, 2022
0.2.1 Apr 19, 2021
0.2.0 Jan 13, 2021
0.1.0 Jun 21, 2020

#240 in Geospatial

Download history 70/week @ 2023-11-20 34/week @ 2023-11-27 70/week @ 2023-12-04 42/week @ 2023-12-11 52/week @ 2023-12-18 25/week @ 2023-12-25 143/week @ 2024-01-01 31/week @ 2024-01-08 29/week @ 2024-01-15 75/week @ 2024-01-22 134/week @ 2024-01-29 50/week @ 2024-02-05 26/week @ 2024-02-12 88/week @ 2024-02-19 70/week @ 2024-02-26 37/week @ 2024-03-04

224 downloads per month
Used in catenary-backend

MIT/Apache

205KB
4K SLoC

geo

geo on Crates.io Coverage Status Documentation

geo

Geospatial Primitives, Algorithms, and Utilities

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.

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

~5MB
~175K SLoC