11 releases (5 stable)

2.0.2 Sep 13, 2024
1.1.0 Dec 8, 2019
1.0.0 Aug 20, 2018
0.4.0 Jun 19, 2018
0.1.0 Jun 5, 2018

#48 in Geospatial

Download history 80/week @ 2024-08-12 169/week @ 2024-08-19 62/week @ 2024-08-26 81/week @ 2024-09-02 382/week @ 2024-09-09 147/week @ 2024-09-16 113/week @ 2024-09-23 56/week @ 2024-09-30 45/week @ 2024-10-07 20/week @ 2024-10-14 8/week @ 2024-10-21 10/week @ 2024-10-28 22/week @ 2024-11-04 7/week @ 2024-11-11 26/week @ 2024-11-18 8/week @ 2024-11-25

63 downloads per month

MIT license

35KB
950 lines

Geomorph

Build Status Latest version Documentation

Simple conversion between different coordinate systems without external wrappers injection

Example

use geomorph::{Coord, Mgrs, MgrsPrecision, Utm};

let lat: f64 = -23.0095839;
let lon: f64 = -43.4361816;

let coord = Coord::new(lat, lon);
let utm = Utm::from(coord);
let mgrs = Mgrs::from_latlon(lat, lon);

println!("coord: {}", coord);
println!("utm: {}", utm);
println!(
    "mgrs precision 10km: {}",
    mgrs.with_precision(MgrsPrecision::P10km)
)

Dependencies

~270KB