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

#43 in Geospatial

Download history 21/week @ 2024-07-21 30/week @ 2024-07-28 136/week @ 2024-08-04 109/week @ 2024-08-11 158/week @ 2024-08-18 72/week @ 2024-08-25 76/week @ 2024-09-01 362/week @ 2024-09-08 170/week @ 2024-09-15 114/week @ 2024-09-22 64/week @ 2024-09-29 42/week @ 2024-10-06 22/week @ 2024-10-13 9/week @ 2024-10-20 11/week @ 2024-10-27 14/week @ 2024-11-03

58 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