Skip to main content

bd_mkt2wgs

Function bd_mkt2wgs 

Source
pub fn bd_mkt2wgs(bdmkt: (f64, f64)) -> (f64, f64)
Expand description

bd_mkt2wgs 将百度墨卡托坐标 转换至 百度经纬度坐标(BD-09)

    let (x, y) = coord_transform::bd_mkt2wgs((13135842.840674074,3740459.445338771));
    assert_eq!(x, 117.99999999999993);
    assert_eq!(y, 32.00000001036519);