1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
# jgd [](https://crates.io/crates/jgd) Transform geodetic datums used in Japan. ## Getting started ```sh cargo add jgd ``` ## Examples ```rs use jgd::{LatLon, Tokyo}; let LatLon(lat, lon) = Tokyo::new(LatLon(35.0, 135.0)) .to_jgd2000() .to_jgd2011() .degrees(); ``` ## [API documentation](https://docs.rs/jgd/) ## [MIT license](LICENSE.md)