1. 程式人生 > >GPS座標互轉、測距:WGS-84(GPS)、GCJ-02(Google地圖)、BD-09(百度地圖)

GPS座標互轉、測距:WGS-84(GPS)、GCJ-02(Google地圖)、BD-09(百度地圖)

GPS轉換類,BD-09(百度GPS標準)、GCJ-02(中國國家測繪局標準)、WGS-84(全球GPS標準)相互轉換
WGS-84:是國際標準,GPS座標(Google Earth使用、或者GPS模組)
GCJ-02:中國座標偏移標準,Google Map、高德、騰訊使用
BD-09:百度座標偏移標準,Baidu Map使用


 //兩個百度座標間的距離
GPS.bd_distance();

 //百度座標轉國際gps
 GPS.bd2gps();
 
 //WGS-84 to GCJ-02
 GPS.gcj_encrypt();


 //GCJ-02 to WGS-84 粗略
 GPS.gcj_decrypt();


 //GCJ-02 to WGS-84 精確(二分極限法)
 // var threshold = 0.000000001; 目前設定的是精確到小數點後9位,這個值越小,越精確,但是javascript中,浮點運算本身就不太精確,九位在GPS裡也偏差不大了
 GSP.gcj_decrypt_exact();


 //GCJ-02 to BD-09
 GPS.bd_encrypt();


 //BD-09 to GCJ-02
 GPS.bd_decrypt();


 //求距離
 GPS.distance();


 示例:
 document.write("GPS: 39.933676862706776,116.35608315379092<br />");
 var arr2 = GPS.gcj_encrypt(39.933676862706776, 116.35608315379092);
 document.write("中國:" + arr2['lat']+","+arr2['lon']+'<br />');
 var arr3 = GPS.gcj_decrypt_exact(arr2['lat'], arr2['lon']);
 document.write('逆算:' + arr3['lat']+","+arr3['lon']+' 需要和第一行相似(目前是小數點後9位相等)');
 本演算法 gcj演算法、bd演算法都非常精確,已經測試通過。
 (BD轉換的結果和百度提供的介面精確到小數點後4位)

 請放心使用

<?php
// +----------------------------------------------------------------------
// | GPS轉換類,BD-09(百度GPS標準)、GCJ-02(中國國家測繪局標準)、WGS-84(全球GPS標準)相互轉換
// +----------------------------------------------------------------------
// | Author: hanzengyi<[email protected]> <http://www.ctvc.tv>
// +----------------------------------------------------------------------
// | CreateDate: 2016-8-4 下午14:20:53
// +----------------------------------------------------------------------
// | UpdateDate: 2016-8-4 下午14:20:53
// +----------------------------------------------------------------------
// | UpdateRemark: [說明本次修改內容]  
// +----------------------------------------------------------------------

/**
 * GPS轉換類,BD-09(百度GPS標準)、GCJ-02(中國國家測繪局標準)、WGS-84(全球GPS標準)相互轉換
 * WGS-84:是國際標準,GPS座標(Google Earth使用、或者GPS模組)
 * GCJ-02:中國座標偏移標準,Google Map、高德、騰訊使用
 * BD-09:百度座標偏移標準,Baidu Map使用

 * //兩個百度座標間的距離
 * GPS.bd_distance();
 * 
 * //百度座標轉國際gps
 * GPS.bd2gps();
 * 
 * //WGS-84 to GCJ-02
 * GPS.gcj_encrypt();

 * //GCJ-02 to WGS-84 粗略
 * GPS.gcj_decrypt();

 * //GCJ-02 to WGS-84 精確(二分極限法)
 * // var threshold = 0.000000001; 目前設定的是精確到小數點後9位,這個值越小,越精確,但是javascript中,浮點運算本身就不太精確,九位在GPS裡也偏差不大了
 * GSP.gcj_decrypt_exact();

 * //GCJ-02 to BD-09
 * GPS.bd_encrypt();

 * //BD-09 to GCJ-02
 * GPS.bd_decrypt();

 * //求距離
 * GPS.distance();

 * 示例:
 * document.write("GPS: 39.933676862706776,116.35608315379092<br />");
 * var arr2 = GPS.gcj_encrypt(39.933676862706776, 116.35608315379092);
 * document.write("中國:" + arr2['lat']+","+arr2['lon']+'<br />');
 * var arr3 = GPS.gcj_decrypt_exact(arr2['lat'], arr2['lon']);
 * document.write('逆算:' + arr3['lat']+","+arr3['lon']+' 需要和第一行相似(目前是小數點後9位相等)');
 * 本演算法 gcj演算法、bd演算法都非常精確,已經測試通過。
 * (BD轉換的結果和百度提供的介面精確到小數點後4位)
 * 請放心使用
 * @author 
[email protected]
* */ class GPS { private $PI = 3.14159265358979324; private $x_pi = 0; public function __construct() { $this->x_pi = 3.14159265358979324 * 3000.0 / 180.0; } //WGS-84 to GCJ-02 public function gcj_encrypt($wgsLat, $wgsLon) { if ($this->outOfChina($wgsLat, $wgsLon)) return array('lat' => $wgsLat, 'lon' => $wgsLon); $d = $this->delta($wgsLat, $wgsLon); return array('lat' => $wgsLat + $d['lat'],'lon' => $wgsLon + $d['lon']); } //GCJ-02 to WGS-84 public function gcj_decrypt($gcjLat, $gcjLon) { if ($this->outOfChina($gcjLat, $gcjLon)) return array('lat' => $gcjLat, 'lon' => $gcjLon); $d = $this->delta($gcjLat, $gcjLon); return array('lat' => $gcjLat - $d['lat'], 'lon' => $gcjLon - $d['lon']); } //GCJ-02 to WGS-84 exactly public function gcj_decrypt_exact($gcjLat, $gcjLon) { $initDelta = 0.01; $threshold = 0.000000001; $dLat = $initDelta; $dLon = $initDelta; $mLat = $gcjLat - $dLat; $mLon = $gcjLon - $dLon; $pLat = $gcjLat + $dLat; $pLon = $gcjLon + $dLon; $wgsLat = 0; $wgsLon = 0; $i = 0; while (TRUE) { $wgsLat = ($mLat + $pLat) / 2; $wgsLon = ($mLon + $pLon) / 2; $tmp = $this->gcj_encrypt($wgsLat, $wgsLon); $dLat = $tmp['lat'] - $gcjLat; $dLon = $tmp['lon'] - $gcjLon; if ((abs($dLat) < $threshold) && (abs($dLon) < $threshold)) break; if ($dLat > 0) $pLat = $wgsLat; else $mLat = $wgsLat; if ($dLon > 0) $pLon = $wgsLon; else $mLon = $wgsLon; if (++$i > 10000) break; } //console.log(i); return array('lat' => $wgsLat, 'lon'=> $wgsLon); } //GCJ-02 to BD-09 public function bd_encrypt($gcjLat, $gcjLon) { $x = $gcjLon; $y = $gcjLat; $z = sqrt($x * $x + $y * $y) + 0.00002 * sin($y * $this->x_pi); $theta = atan2($y, $x) + 0.000003 * cos($x * $this->x_pi); $bdLon = $z * cos($theta) + 0.0065; $bdLat = $z * sin($theta) + 0.006; return array('lat' => $bdLat,'lon' => $bdLon); } //BD-09 to GCJ-02 public function bd_decrypt($bdLat, $bdLon) { $x = $bdLon - 0.0065; $y = $bdLat - 0.006; $z = sqrt($x * $x + $y * $y) - 0.00002 * sin($y * $this->x_pi); $theta = atan2($y, $x) - 0.000003 * cos($x * $this->x_pi); $gcjLon = $z * cos($theta); $gcjLat = $z * sin($theta); return array('lat' => $gcjLat, 'lon' => $gcjLon); } /** * 百度座標轉國際gps經緯度 * @param float $bdLat * @param float $bdLon * @return $array * 返回格式 * $arr{ * ['lat'] = 國際gps緯度 * ['lon'] = 國際gps精度 * } */ public function bd2gps($bdLat, $bdLon){ $gcj02 = $this->bd_decrypt($bdLat, $bdLon); return $this->gcj_decrypt($gcj02['lat'],$gcj02['lon']); } //WGS-84 to Web mercator //$mercatorLat -> y $mercatorLon -> x public function mercator_encrypt($wgsLat, $wgsLon) { $x = $wgsLon * 20037508.34 / 180.; $y = log(tan((90. + $wgsLat) * $this->PI / 360.)) / ($this->PI / 180.); $y = $y * 20037508.34 / 180.; return array('lat' => $y, 'lon' => $x); /* if ((abs($wgsLon) > 180 || abs($wgsLat) > 90)) return NULL; $x = 6378137.0 * $wgsLon * 0.017453292519943295; $a = $wgsLat * 0.017453292519943295; $y = 3189068.5 * log((1.0 + sin($a)) / (1.0 - sin($a))); return array('lat' => $y, 'lon' => $x); //*/ } // Web mercator to WGS-84 // $mercatorLat -> y $mercatorLon -> x public function mercator_decrypt($mercatorLat, $mercatorLon) { $x = $mercatorLon / 20037508.34 * 180.; $y = $mercatorLat / 20037508.34 * 180.; $y = 180 / $this->PI * (2 * atan(exp($y * $this->PI / 180.)) - $this->PI / 2); return array('lat' => $y, 'lon' => $x); /* if (abs($mercatorLon) < 180 && abs($mercatorLat) < 90) return NULL; if ((abs($mercatorLon) > 20037508.3427892) || (abs($mercatorLat) > 20037508.3427892)) return NULL; $a = $mercatorLon / 6378137.0 * 57.295779513082323; $x = $a - (floor((($a + 180.0) / 360.0)) * 360.0); $y = (1.5707963267948966 - (2.0 * atan(exp((-1.0 * $mercatorLat) / 6378137.0)))) * 57.295779513082323; return array('lat' => $y, 'lon' => $x); //*/ } // two point's distance public function distance($latA, $lonA, $latB, $lonB) { $earthR = 6371393.; $x = cos($latA * $this->PI / 180.) * cos($latB * $this->PI / 180.) * cos(($lonA - $lonB) * $this->PI / 180); $y = sin($latA * $this->PI / 180.) * sin($latB * $this->PI / 180.); $s = $x + $y; if ($s > 1) $s = 1; if ($s < -1) $s = -1; $alpha = acos($s); $distance = $alpha * $earthR; return $distance; } public function bd_distance($latA, $lonA, $latB, $lonB){ $gps1 = $this->bd2gps($latA, $lonA); $gps2 = $this->bd2gps($latB, $lonB); return $this->distance($gps1['lat'],$gps1['lon'], $gps2['lat'], $gps2['lon']); } private function delta($lat, $lon) { // Krasovsky 1940 // // a = 6378245.0, 1/f = 298.3 // b = a * (1 - f) // ee = (a^2 - b^2) / a^2; $a = 6378245.0;// a: 衛星橢球座標投影到平面地圖座標系的投影因子。 $ee = 0.00669342162296594323;// ee: 橢球的偏心率。 $dLat = $this->transformLat($lon - 105.0, $lat - 35.0); $dLon = $this->transformLon($lon - 105.0, $lat - 35.0); $radLat = $lat / 180.0 * $this->PI; $magic = sin($radLat); $magic = 1 - $ee * $magic * $magic; $sqrtMagic = sqrt($magic); $dLat = ($dLat * 180.0) / (($a * (1 - $ee)) / ($magic * $sqrtMagic) * $this->PI); $dLon = ($dLon * 180.0) / ($a / $sqrtMagic * cos($radLat) * $this->PI); return array('lat' => $dLat, 'lon' => $dLon); } private function outOfChina($lat, $lon) { if ($lon < 72.004 || $lon > 137.8347) return TRUE; if ($lat < 0.8293 || $lat > 55.8271) return TRUE; return FALSE; } private function transformLat($x, $y) { $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 * $this->PI) + 20.0 * sin(2.0 * $x * $this->PI)) * 2.0 / 3.0; $ret += (20.0 * sin($y * $this->PI) + 40.0 * sin($y / 3.0 * $this->PI)) * 2.0 / 3.0; $ret += (160.0 * sin($y / 12.0 * $this->PI) + 320 * sin($y * $this->PI / 30.0)) * 2.0 / 3.0; return $ret; } private function transformLon($x, $y) { $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 * $this->PI) + 20.0 * sin(2.0 * $x * $this->PI)) * 2.0 / 3.0; $ret += (20.0 * sin($x * $this->PI) + 40.0 * sin($x / 3.0 * $this->PI)) * 2.0 / 3.0; $ret += (150.0 * sin($x / 12.0 * $this->PI) + 300.0 * sin($x / 30.0 * $this->PI)) * 2.0 / 3.0; return $ret; } } ?>


相關推薦

GPS座標測距WGS-84(GPS)GCJ-02(Google地圖)BD-09(地圖)

GPS轉換類,BD-09(百度GPS標準)、GCJ-02(中國國家測繪局標準)、WGS-84(全球GPS標準)相互轉換 WGS-84:是國際標準,GPS座標(Google Earth使用、或者GPS模組) GCJ-02:中國座標偏移標準,Google Map、高德、騰訊使用

谷歌 GPS座標

現已服務500使用者,獨家釋出!專家團隊 本程式庫支援不同地圖座標及真實座標的相互轉換,離線,實時!(支援谷歌、百度等國內地圖服務商)提供動態連結庫DLL及呼叫原始碼; 可根據需求,定製webservice及相關介面;不受環境限制(不再依賴於資料庫、網路或者硬體); 多種語言支援;實時互轉支

GCJ-02(火星,高德) 和BD-09() 座標轉換(PHP)

<?php //GCJ-02(火星,高德) 座標轉換成 BD-09(百度) 座標//@param gg_lon 火星經度//@param gg_lat 火星緯度 functionbd_encrypt($gg_lon,$gg_lat) { $

windows下python3.5安裝setuptools以及座標系(bd-09)火星座標系(國測局座標系gcj02)WGS84座標系之間的座標python實現以及python中exce

本文主要介紹三個內容: 1、windows下python3.5安裝setuptools 2、百度座標系(bd-09)、火星座標系(國測局座標系、gcj02)、WGS84座標系之間的座標互轉python實現 3、 使用python中的xlrd以及xlwt進

THREE.JS 場景世界座標和平面二維座標

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>場景世界座標轉</title>

char * 和string,陷阱char*中包含較多的'\0'

一般來說,char *和string能夠比較容易的進行相互轉換,比如char *轉換成string,可以直接轉,如下:-Cpp 程式碼1char *a = "abcdefg";2std::string

地圖API繪製計程車流向地圖(一)將起始GPS點對映到地圖

打算在年前實現用百度地圖API繪製NYC計程車流向地圖。目前實現了將出租車的起始點的GPS點對映到地圖上,繪製了GPS點的熱力圖。記錄在此。 所用資料:NYC綠色計程車資料 時間:2016.01.01 0:00-24:00 共24小時 GPS點個數:64398 繪圖方式:熱力圖 百度地圖

地圖相關開發顯示定位描點自定義大頭針

一、環境配置 二、地圖顯示與定位 三、根據經緯度描點 四、大頭針與氣泡 五、給大頭針加tag值 六、問題處理 一、環境配置 1. 註冊和獲取金鑰: 2、下載.百度地圖framework包: 3、環

高德地圖地圖經緯度

1、高德經緯度轉百度經緯度: "http://api.map.baidu.com/geoconv/v1/?coords="+endlo+","+endla+"&from=3&to=5&ak="+"Hi7RspVbu9xQNVUi0S7iP0OLLQbNfn"

C#的地圖開發(三)依據座標獲取位置商圈及周邊資訊

在《C#的百度地圖開發(二)轉換JSON資料為相應的類》一文中,我們得到了百度座標,現在依據這一座標來獲取相應的資訊。下面是相應的程式碼 public class BaiduMap { /// <summary> /// 依據座

PHP+地圖API+JAVASCRIPT實現GPS座標座標轉換的例項

<!--小幅的座標轉換點位程式--> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=U

HTML地圖例項google地圖座標地圖的相互轉化

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&g

Android app接入地圖禁用手勢模式切換根據經緯度獲取位置資訊

嗯,沒錯,接入百度地圖後一般可能要用到的一些功能... 1.開啟交通圖 mBaiduMap.setTrafficEnabled(true); 2.模式切換 //衛星地圖 mBaiduMap.setMapType(BaiduMap.MAP_TYPE_SATELLITE)

地圖 座標偏移覆蓋物偏移解決方案

百度地圖定位不準確,這個問題困擾我一整天,想來度娘是強大的,各種查詢總於找到解決方案,其實就是將經緯度轉換為百度地圖識別的經緯度,是不是很扯。 網址 http://developer.baidu.com/map/jsdemo/demo/convertor.js    

android地圖地圖上繪製點多邊形圓形和文字

轉載自:http://blog.csdn.net/rt77777/article/details/9186691 首先介紹一個類:GraphicsOverlay 這是一個在地圖上繪製圖形的overlay。GraphicsOverlay通過呼叫setDa

Android跳開啟地圖高德地圖等第三方地圖導航,最新最全

最近發現開啟第三方的教程五花八門,遂記之     高德:開啟高德地圖API>開發支援>點選開發文件(居然可以點選...)>高德地圖手機版(最下面的其他裡面)>的左側路徑規劃直達

HTML5頁面直接調用地圖API,獲取當前位置,直接導航目的地()

wid dir tle mark utf-8 mil 獲取 open init HTML5頁面直接調用百度地圖API,獲取當前位置,直接導航目的地 我是應用在微信中,自定義菜單,菜單直接鏈接到這個HTML5頁面,獲取當前位置後,頁面中定好目的地,這樣打開頁面後直接進入導航頁

地圖api開發根據坐標獲得地理描述地址

實例 oca str 地理 location api code city api開發 // 創建地理編碼實例 var myGeo = new BMap.Geocoder(); // 根據坐標得到地址描述

地圖API一根據標註點坐標範圍計算顯示縮放級別zoom自適應顯示地圖

var spa get bsp pan nts viewport 百度 getview 百度地圖中根據頁面中的point,自動設置縮放級別和視圖中心,將所有的point在視圖範圍內展示。 var points = [point1, point2,point3];

如何在地圖騰訊地圖標註公司地址信息?

比如百度地圖、騰訊地圖、高德地圖是可以標註公司位置的,不一定是店鋪。所以我們有機會把公司地址在地圖裏標註出來,這樣以後客戶拜訪時就會非常方便。我們遇到很多朋友都是花了幾百塊錢做地圖標註,實際上這一切都是免費的。 首先,我們來看看地圖標註效果。 微信應用場景案例展