2 个版本 (1 个稳定版)
使用旧的 Rust 2015
1.0.0 | 2018 年 5 月 27 日 |
---|---|
0.1.0 | 2016 年 1 月 11 日 |
#189 in 地理空间
18KB
376 行
lambert-rust
lambert-rust 是一个帮助将朗伯坐标转换为 WGS84 的 crate。
用法
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);
lib.rs
:
朗伯到 WGS84 投影转换 crate
示例
extern crate lambert;
use lambert::{Point, AngleUnit, Zone};
// Enter coordinates in point
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);