Home  >  Article  >  Backend Development  >  PHP uses the longitude and latitude between two points to calculate the straight-line distance between two points

PHP uses the longitude and latitude between two points to calculate the straight-line distance between two points

不言
不言Original
2018-04-08 15:41:573924browse

The content of this article introduces how PHP uses the longitude and latitude between two points to calculate the straight-line distance between two points. Now I share it with everyone. Friends in need can refer to it

Recommend a small tool (Coordinate picking, including Baidu Map, Amap, Tencent Map, Google Map), convenient for testing: http://www.gpsspg.com/maps.htm

    /**
     *  计算两组经纬度坐标 之间的距离
     *   params :lat1 纬度1; lng1 经度1; lat2 纬度2; lng2 经度2; len_type (1:m or 2:km);
     *   return m or km
     */
	 
     function GetDistance($lat1, $lng1, $lat2, $lng2, $len_type = 1, $decimal = 2)
    {
       $radLat1 = $lat1 * PI ()/ 180.0;   //PI()圆周率
       $radLat2 = $lat2 * PI() / 180.0;
       $a = $radLat1 - $radLat2;
       $b = ($lng1 * PI() / 180.0) - ($lng2 * PI() / 180.0);
       $s = 2 * asin(sqrt(pow(sin($a/2),2) + cos($radLat1) * cos($radLat2) * pow(sin($b/2),2)));
       $s = $s * 6378.137;
       $s = round($s * 1000);
       if ($len_type --> 1)
       {
           $s /= 1000;
       }
   return round($s, $decimal);
	}
	$Xian = array(
			'lat'=>'34.2620480000',
			'lng'=>'108.9408590000'
			);
	$Chengdu = array(
			'lat'=>'30.6736560000',
			'lng'=>'104.0107450000'
			);
	echo '西安距成都'.GetDistance($Xian['lat'],$Xian['lng'],$Chengdu['lat'],$Chengdu['lng'],2).'km';



The above is the detailed content of PHP uses the longitude and latitude between two points to calculate the straight-line distance between two points. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP session controlNext article:PHP session control