解决中国特色的火星坐标 附Swift代码
自己翻译的Swift代码如下,需要的朋友可以收藏,
//这个判断也可直接用(location.longitude < 72.004 || location.longitude > 137.8347 || location.latitude < 0.8293 || location.latitude > 55.8271)条件判断该位置是否在国内 location.latitude和location.longitude是你获得的位置坐标
func isLocationOutOfChina(location: CLLocationCoordinate2D) -> Bool {
if (location.longitude < 72.004 || location.longitude > 137.8347 || location.latitude < 0.8293 || location.latitude > 55.8271) {
return true //在国外
}
return false //在国内,需要对坐标进行调整
}
如果坐标在国内,需要将获得的坐标进行调整才能对应到正确的坐标( 否则会有几百到几千米的误差, 相信你已经经历过,不然不会来搜这个文章, 括弧笑)
下面这段代码对坐标调整, 两个func分别返回调整后的latitude和longitude
//x,y分别是获取到的longitude和latitude
//几个使用的常数
let π: Double = 3.14159265358979324
let ee: Double = 0.00669342162296594323
let a: Double = 6378245.0
func transformLatWith(x: Double, y: Double) -> Double {
var tempSqrtLat = 0.2 * sqrt(abs(x))
var lat: Double = -100.0 + 2.0 * x + 3.0 * y + 0.2 * y * y + 0.1 * x * y + tempSqrtLat
lat += (20.0 * sin(6.0 * x * π) + 20.0 * sin(2.0 * x * π)) * 2.0 / 3.0
lat += (20.0 * sin(y * π) + 40.0 * sin(y / 3.0 * π)) * 2.0 / 3.0;
lat += (160.0 * sin(y / 12.0 * π) + 320 * sin(y * π / 30.0)) * 2.0 / 3.0;
return lat
}
func transformLonWith(x: Double, y: Double) -> Double {
var tempSqrtLon = 0.1 * sqrt(abs(x))
var lon: Double = 300.0 + x + 2.0 * y + 0.1 * x * x + 0.1 * x * y + tempSqrtLon
lon += (20.0 * sin(6.0 * x * π) + 20.0 * sin(2.0 * x * π)) * 2.0 / 3.0
lon += (20.0 * sin(x * π) + 40.0 * sin(x / 3.0 * π)) * 2.0 / 3.0
lon += (150.0 * sin(x / 12.0 * π) + 300.0 * sin(x / 30.0 * π)) * 2.0 / 3.0
return lon
}
下面的判断句在上面有写,这个是偏转的算法,其实没有必要理解原理,我都是拿来直接用的, 所以我也不懂原理啊XD,当然有兴趣的可以研究下.
if 在国外 { //GPS获取的位置也就是WGS坐标
wgsLocation = CLLocation(latitude: GPSLatitude, longitude: GPSLongitude)
} else { //在国内
//经纬偏移
var adjustLat: Double = transformLatWith(GPSLongitude - 105.0, y: GPSLatitude - 35.0)
var adjustLon: Double = transformLonWith(GPSLongitude - 105.0, y: GPSLatitude - 35.0)
var radLat = wgsLocationLatitude / 180.0 * π
var magic = sin(radLat)
magic = 1 - ee * magic * magic
var sqrtMagic: Double = sqrt(magic)
adjustLat = (adjustLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * π)
adjustLon = (adjustLon * 180.0) / (a / sqrtMagic * cos(radLat) * π)
var gcjLat = GPSLatitude + adjustLat
var gcjLon =GPSLongitude + adjustLon
//传值给逆地理func处理
wgsLocation = CLLocation(latitude: gcjLat, longitude: gcjLon)
}
PS:由于直接从自己代码粘过来的,改了变量名,难免会有漏改和错改的,发现问题请通知我,谢谢
我的CocoChina原文布局可能更清楚点,内容一样: 位置偏移 将WGS-84转为GCJ-02(火星坐标) Swift
另外,感谢提供正确算法的前辈们.致敬
我参考的这位前辈的OC版: ju.outofmemory.cn/entry/22783