美文网首页
地图坐标转换

地图坐标转换

作者: 冰霜海胆 | 来源:发表于2017-07-19 22:26 被阅读18次

https://github.com/Zane6w/CoordinateTransformation

import UIKit
import MapKit

/** 坐标标准转换 */
open class CoordinateTransformation: NSObject {

    static let a: Double = 6378245.0
    static let ee: Double = 0.00669342162296594323
    
    
    private override init() {
        super.init()
    }
    
    
    /// 坐标是否在境外
    open class func isOutOfChina(coordinate: CLLocationCoordinate2D) -> Bool {
        if coordinate.longitude < 72.004 || coordinate.longitude > 137.8347 {
            return true
        }
        
        if coordinate.latitude < 0.8293 || coordinate.latitude > 55.8271 {
            return true
        }
        
        return false
    }
    
    
    // MARK:- 坐标转换
    
    /// "地球坐标(国际标准-WGS84)" -->> "火星坐标(GCJ-02 国测局坐标系)"
    open class func WGS84_To_CGJ02(coordinate: CLLocationCoordinate2D) -> CLLocationCoordinate2D {
        if isOutOfChina(coordinate: coordinate) {
            return coordinate
        }
        
        var dLat: Double = transformLat(x: coordinate.longitude - 105.0, y: coordinate.latitude - 35.0)
        var dLon: Double = transformLon(x: coordinate.longitude - 105.0, y: coordinate.latitude - 35.0)
        
        let radLat = coordinate.latitude / 180.0 * .pi
        
        var magic = sin(radLat)
        magic = 1 - ee * magic * magic
        
        let sqrtMagic = sqrt(magic)
        
        dLat = (dLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * .pi)
        dLon = (dLon * 180.0) / (a / sqrtMagic * cos(radLat) * .pi)
        
        let cgj02Lat: CLLocationDegrees = coordinate.latitude + dLat
        let cgj02Lon: CLLocationDegrees = coordinate.longitude + dLon
        
        return CLLocationCoordinate2D(latitude: cgj02Lat, longitude: cgj02Lon)
    }
    
    /// "火星坐标(GCJ-02 国测局坐标系)" -->> "地球坐标(国际标准-WGS84)"
    open class func CGJ02_To_WGS84(coordinate: CLLocationCoordinate2D) -> CLLocationCoordinate2D {
        if isOutOfChina(coordinate: coordinate) {
            return coordinate
        }
        
        var dLat: Double = transformLat(x: coordinate.longitude - 105.0, y: coordinate.latitude - 35.0)
        var dLon: Double = transformLon(x: coordinate.longitude - 105.0, y: coordinate.latitude - 35.0)
        
        let radLat = coordinate.latitude / 180.0 * .pi
        
        var magic = sin(radLat)
        magic = 1 - ee * magic * magic
        
        let sqrtMagic = sqrt(magic)
        
        dLat = (dLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * .pi)
        dLon = (dLon * 180.0) / (a / sqrtMagic * cos(radLat) * .pi)
        
        let wgs84Lat: CLLocationDegrees = coordinate.latitude * 2 - (coordinate.latitude + dLat)
        let wgs84Lon: CLLocationDegrees = coordinate.longitude * 2 - (coordinate.longitude + dLon)
        
        return CLLocationCoordinate2D(latitude: wgs84Lat, longitude: wgs84Lon)
    }
    
    
    class func transformLat(x: Double, y: Double) -> Double {
        var ret = -100.0 + 2.0 * x + 3.0 * y + 0.2 * y * y + 0.1 * x * y + 0.2 * sqrt(abs(x))
        ret += (20.0 * sin(6.0 * x * .pi) + 20.0 * sin(2.0 * x * .pi)) * 2.0 / 3.0
        ret += (20.0 * sin(y * .pi) + 40.0 * sin(y / 3.0 * .pi)) * 2.0 / 3.0
        ret += (160.0 * sin(y / 12.0 * .pi) + 320 * sin(y * .pi / 30.0)) * 2.0 / 3.0
        
        return ret
    }
    
    class func transformLon(x: Double, y: Double) -> Double {
        var ret = 300.0 + x + 2.0 * y + 0.1 * x * x + 0.1 * x * y + 0.1 * sqrt(abs(x))
        ret += (20.0 * sin(6.0 * x * .pi) + 20.0 * sin(2.0 * x * .pi)) * 2.0 / 3.0
        ret += (20.0 * sin(x * .pi) + 40.0 * sin(x / 3.0 * .pi)) * 2.0 / 3.0
        ret += (150.0 * sin(x / 12.0 * .pi) + 300.0 * sin(x / 30.0 * .pi)) * 2.0 / 3.0
        
        return ret
    }
    
}

相关文章

  • 百度地图坐标转高德地图

    百度地图坐标和高德地图坐标转换代码 Java实现 最近做项目需要百度地图坐标转换到高德地图坐标,高德官方也给出了转...

  • 地图坐标转换

    百度地图转换腾讯坐标 腾讯转百度坐标 百度转腾讯火星坐标

  • 地图坐标转换

    https://github.com/Zane6w/CoordinateTransformation

  • 地图坐标转换

    地图坐标转换 简介 各地图API坐标系统比较与转换; WGS84坐标系:即地球坐标系,国际上通用的坐标系。设备一般...

  • 利用百度地图坐标转换API实现gcj02转bd09

    百度地图坐标转换API 功能 将常用的非百度坐标转换成百度地图中使用的坐标,如:GPS设备获取的坐标、google...

  • 坐标转换与拾取

    1. 百度API坐标转换 可实现WGS-84坐标、国测局坐标等转换至百度地图坐标 方法(点击直达 -百度坐标转换A...

  • 百度地图和高德地图的坐标互相转换

    百度地图和高德地图的坐标互相转换 一、知识扩展:地图中的坐标体系体系常用分类 1、GPS,WGS-84,原始坐标体...

  • 百度地图坐标转换

    /** * 地图位置计算工具(将GPS坐标转换成百度地图坐标) * 参考文档:http://bbs.lbsyu...

  • 【Android】地图坐标转换

    检查地图应用是否安装 经纬度互相转换 打开地图应用导航功能

  • Shp文件在高德地图展示

    前言 本文的目标是将shp空间数据展示在高德地图上,这里面涉及了火星坐标转换,WMS地图图层发布,坐标系转换等问题...

网友评论

      本文标题:地图坐标转换

      本文链接:https://www.haomeiwen.com/subject/zwurkxtx.html