lambert 1.0.0

lamber-rust is a crate helping to convert Lambert coordinates to WGS84
Documentation
  • Coverage
  • 23.53%
    4 out of 17 items documented1 out of 1 items with examples
  • Size
  • Source code size: 18.71 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.09 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • yageek/lambert-rust
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • yageek

lambert-rust

Crates version Build Status MIT License

lambert-rust is a crate helping to convert Lambert coordinates to WGS84.

Usage

let point = Point::new(369419.0, 1986498.0, 0.0)
                    .wgs84_from_meter(Zone::Lambert93)
                    .convert_unit(AngleUnit::Radian, AngleUnit::Degree);
println!("WGS84 Lat:{}, Lon:{}", point.y, point.x);