https://github.com/yageek/lambert-rust
:earth_africa: Crate helping to convert Lambert coordinates to WGS84
https://github.com/yageek/lambert-rust
coordinates lambert rust wgs84
Last synced: about 2 months ago
JSON representation
:earth_africa: Crate helping to convert Lambert coordinates to WGS84
- Host: GitHub
- URL: https://github.com/yageek/lambert-rust
- Owner: yageek
- License: other
- Created: 2016-01-05T15:07:09.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-27T13:17:58.000Z (almost 7 years ago)
- Last Synced: 2025-02-28T09:07:49.881Z (3 months ago)
- Topics: coordinates, lambert, rust, wgs84
- Language: Rust
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- License: LICENSE.md
Awesome Lists containing this project
README
# lambert-rust
[](https://crates.io/crates/lambert)
[](https://travis-ci.org/yageek/lambert-rust)
[](LICENSE.md)lambert-rust is a crate helping to convert Lambert coordinates to WGS84.
# Usage
```rust
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);
```