geomorph 2.0.2

Simple conversion between different coordinate systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]

mod coord;
mod datum;
mod math;
mod mgrs;
mod utm;

pub use coord::Coord;
pub use datum::Datum;
pub use mgrs::{Mgrs, MgrsPrecision};
pub use utm::Utm;