您的位置 首页 php技术

php 根据经纬度获取附近50km的信息,并计算距离

// 查询附近50km的信息 $longitude = ‘113.2425’; $latitude= ’23.…

// 查询附近50km的信息
$longitude = '113.2425';
$latitude= '23.16993';
$point = $this->returnSquarePoint($longitude, $latitude, 50000); // 得到四个点
// sql语句查询组合
$where = ' latitude > ' . $point['minLat'] . ' AND latitude < ' . $point['maxLat'];
$where .= ' AND longitude > ' . $point['minLon'] . ' AND longitude < ' . $point['maxLon'];
 
// 查询距离
$distance = $this->getDistance('23.16993', '23.15564', '113.2425', '113.221893');
 
/**
 * @param $lng float 经度
 * @param $lat float 纬度
 * @param $distance float 该点所在圆的半径,该圆与此正方形内切,默认值为单位米
 * @return array 正方形的四个点的经纬度坐标
 */
private function returnSquarePoint($lng, $lat, $distance)
{
	$PI = 3.14159265;
	$longitude = $lng;
	$latitude = $lat;
 
	$degree = (24901 * 1609) / 360.0;
	$raidusMile = $distance;
 
	$dpmLat = 1 / $degree;
	$radiusLat = $dpmLat * $raidusMile;
	$minLat = $latitude - $radiusLat;       //拿到最小纬度
	$maxLat = $latitude + $radiusLat;       //拿到最大纬度
 
	$mpdLng = $degree * cos($latitude * ($PI / 180));
	$dpmLng = 1 / $mpdLng;
	$radiusLng = $dpmLng * $raidusMile;
	$minLng = $longitude - $radiusLng;     //拿到最小经度
	$maxLng = $longitude + $radiusLng;     //拿到最大经度
	$range = array(
		'minLat' => $minLat,
		'maxLat' => $maxLat,
		'minLon' => $minLng,
		'maxLon' => $maxLng
	);
	return $range;
}
 
// 根据经纬度计算距离方法
private function getDistance($latitude1, $latitude2, $longitude1, $longitude2)
{
	$EARTH_RADIUS = 6378.137;	// 地球半径(单位km)
	$PI = 3.1415926;			//
 
	$radLat1 = $latitude1 * $PI / 180.0;
	$radLat2 = $latitude2 * $PI / 180.0;
 
	$radLng1 = $longitude1 * $PI / 180.0;
	$radLng2 = $longitude2 * $PI /180.0;
 
	$a = $radLat1 - $radLat2;
	$b = $radLng1 - $radLng2;
 
	$distance = 2 * asin(sqrt(pow(sin($a/2),2) + cos($radLat1) * cos($radLat2) * pow(sin($b/2),2)));
	$distance = abs(round($distance * $EARTH_RADIUS, 2));
 
	return $distance;
}

PHP通过计算经纬度获取附近的数据信息

/**
*计算某个经纬度的周围某段距离的正方形的四个点
*
*@param lng float 经度
*@param lat float 纬度
*@param distance float 该点所在圆的半径,该圆与此正方形内切,默认值为0.5千米
*@return array 正方形的四个点的经纬度坐标
*/
function returnSquarePoint($lng, $lat,$distance = 0.5){
define(EARTH_RADIUS, 6371);//地球半径,平均半径为6371km
$dlng = 2 * asin(sin($distance / (2 * EARTH_RADIUS)) / cos(deg2rad($lat)));
$dlng = rad2deg($dlng);

$dlat = $distance/EARTH_RADIUS;
$dlat = rad2deg($dlat);

return array(
'left-top'=>array('lat'=>$lat + $dlat,'lng'=>$lng-$dlng),
'right-top'=>array('lat'=>$lat + $dlat, 'lng'=>$lng + $dlng),
'left-bottom'=>array('lat'=>$lat - $dlat, 'lng'=>$lng - $dlng),
'right-bottom'=>array('lat'=>$lat - $dlat, 'lng'=>$lng + $dlng)
);
}

function getdistance($lng1,$lat1,$lng2,$lat2){//根据经纬度计算距离 单位为公里
//将角度转为狐度
$radLat1=deg2rad($lat1);
$radLat2=deg2rad($lat2);
$radLng1=deg2rad($lng1);
$radLng2=deg2rad($lng2);
$a=$radLat1-$radLat2;//两纬度之差,纬度<90
$b=$radLng1-$radLng2;//两经度之差纬度<180
$s=2*asin(sqrt(pow(sin($a/2),2)+cos($radLat1)*cos($radLat2)*pow(sin($b/2),2)))*6378.137;
return $s;
}

函数 returnSquarePoint 是用来获取某个坐标点附近0.5KM之内的正方形的四个点,通过此办法获取附近的面积,并通过此函数组合出所需的SQL语句,如:

 

$squares = returnSquarePoint($lng, $lat, 100);
$condition = "location_x<>0 and location_x>{$squares['right-bottom']['lat']} and location_x<{$squares['left-top']['lat']} and location_y>{$squares['left-top']['lng']} and location_y<{$squares['right-bottom']['lng']}";
本文来自网络,不代表MuKe网站资源立场,转载请注明出处:https://www.somke.cn/archives/56

作者: delon

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注

联系我们

联系我们

在线咨询: QQ交谈

邮箱: lon_mail@qq.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部