Simple conversion between different coordinate systems without external wrappers injection
``` extern crate geomorph; use geomorph::*;
fn try_main() -> Result
coord::Coord::new(&lat, &lon)
}
fn trymainutm(coord: coord::Coord) -> Result
fn main() { let coord = trymain().unwrap(); let utm = trymain_utm(&coord).unwrap(); println!("coord: {}", coord); println!("utm: {}", utm); // Will print: // coord: (-23.0095839, -43.4361816) // utm: 23K 660265 7454564 } ```