7 releases (4 breaking)

0.5.1 Aug 7, 2022
0.5.0 Jun 10, 2022
0.4.1 Apr 5, 2021
0.4.0 Mar 19, 2020
0.1.0 Dec 1, 2018

#126 in Geospatial

Download history 6595/week @ 2024-06-20 6394/week @ 2024-06-27 5171/week @ 2024-07-04 5789/week @ 2024-07-11 5171/week @ 2024-07-18 5669/week @ 2024-07-25 5344/week @ 2024-08-01 5168/week @ 2024-08-08 3624/week @ 2024-08-15 4836/week @ 2024-08-22 4850/week @ 2024-08-29 6517/week @ 2024-09-05 6256/week @ 2024-09-12 6814/week @ 2024-09-19 5610/week @ 2024-09-26 4218/week @ 2024-10-03

24,240 downloads per month
Used in 5 crates (4 directly)

Apache-2.0

16KB
230 lines

Build Status Documentation

geoutils

Geoutils is a evolving crate to provide several geological computations and utilities. Most computations are based off methods on the Location struct.

Find the full API reference at docs.rs.

Examples

use geoutils::Location;

let berlin = Location::new(52.518611, 13.408056);
let moscow = Location::new(55.751667, 37.617778);
let distance = berlin.distance_to(&moscow).unwrap();

println!("Distance = {}", distance.meters());
use geoutils::Location;

let berlin = Location::new(52.518611, 13.408056);
let moscow = Location::new(55.751667, 37.617778);
let distance = berlin.haversine_distance_to(&moscow);

println!("Distance = {}", distance.meters());
  • Get the center of a list of coordinates.
use geoutils::Location;

let berlin = Location::new(52.518611, 13.408056);
let moscow = Location::new(55.751667, 37.617778);
let center = Location::center(&vec![&berlin, &moscow]);

println!("Center {}, {}", center.latitude(), center.longitude());
  • Check if a point falls in a certain radius of another point.
use geoutils::{Location, Distance};

let berlin = Location::new(52.518611, 13.408056);
let moscow = Location::new(55.751667, 37.617778);
let is_in_radius = berlin.is_in_circle(&moscow, Distance::from_meters(2000.0)).unwrap();

println!("Is Berlin in 2000m of Moscow? {}", is_in_radius);

License

Apache-2.0

Dependencies

~175KB