Skip to content

Convert between various coordinate systems: GCJ-02, WGS-84 and BD-09

License

Notifications You must be signed in to change notification settings

hghwng/undrift_gps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Undrift GPS

Traversal between the Earth and the Mars in just 6 functions! Keep it simple and stupid.

Kudos to Zili FENG!

/// Convert a GCJ-02 coordinate into WGS-84
pub fn gcj_to_wgs(lat: f64, lon: f64) -> (f64, f64)

/// Convert a GCJ-02 coordinate into BD-09
pub fn gcj_to_bd(lat: f64, lon: f64) -> (f64, f64)

/// Convert a WGS-84 coordinate into GCJ-02
pub fn wgs_to_gcj(lat: f64, lon: f64) -> (f64, f64)

/// Convert a WGS-84 coordinate into BD-09
pub fn wgs_to_bd(lat: f64, lon: f64) -> (f64, f64)

/// Convert a BD-09 coordinate into GCJ-02
pub fn bd_to_gcj(lat: f64, lon: f64) -> (f64, f64)

/// Convert a BD-09 coordinate into WGS-84
pub fn bd_to_wgs(lat: f64, lon: f64) -> (f64, f64)

Usage

Add this to your Cargo.toml:

[dependencies]
undrift_gps = "0.2.1"

About

Convert between various coordinate systems: GCJ-02, WGS-84 and BD-09

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages