Heim >Backend-Entwicklung >PHP-Tutorial >php做附近的人,根据距离由近到远进行排序

php做附近的人,根据距离由近到远进行排序

WBOY
WBOYOriginal
2016-06-06 20:06:242348Durchsuche

用户登陆的时候会获取到该用户的经纬度,数据库中存有所有用户的经纬度,如何进行由近到远进行排序,并算出距离

回复内容:

用户登陆的时候会获取到该用户的经纬度,数据库中存有所有用户的经纬度,如何进行由近到远进行排序,并算出距离

可以考虑用GeoHASH实现,效率更高,参考这篇http://www.cnblogs.com/LBSer/p/3310455.html

我觉得是时候把这个地址贴上来了。

https://segmentfault.com/q/1010000000345194

用php+redis可以实现 可以参考这个 http://www.wubiao.info/401

PHP安装GeoIP扩展和数据库根据IP获取访客所在国家/城市/经纬度等信息
然后就可以用geoip_record_by_name($_SERVER['REMOTE_ADDR'])获取用户经纬度.
注意:geoip_record_by_name()返回的西经和南纬是负数.

5000米转成经纬度:
纬度 Latitude: 1 deg = 110852 m
经度 Longitude: 1 deg = 111320*cos(lat) m
同一经线上,相差一纬度约为 110852 米
同一纬线上,相差一经度约为 111320*cos(lat) 米 (lat为该纬线的纬度)

<code><?php //以当前用户经纬度为中心,查询5000米内的其他用户
$y = 5000 / 110852; //纬度的范围
$x = 5000 / (111320*cos($lat)); //经度的范围
$sql = '
select * from user where 
    lat > ($lat-$y) and lat  ($lon-$x) and lon </code>

这个范围是一个粗略的范围,后面距离计算后把超过5公里的用户筛掉即可.

根据上面查询出来的用户的经纬度,
用半正矢公式根据经纬度计算两点间距离:

<code><?php function distance($lat1, $lon1, $lat2, $lon2) {
    $R = 6371393; //地球平均半径,单位米
    $dlat = deg2rad($lat2-$lat1);
    $dlon = deg2rad($lon2-$lon1);
    $a = pow(sin($dlat/2), 2) + cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * pow(sin($dlon/2), 2);
    $c = 2 * atan2(sqrt($a), sqrt(1-$a));
    $d = $R * $c;
    return round($d);
}
echo distance(0, 0, -1, 0); // 111202米</code></code>

elasticsearch 得距离搜索,获取最近的20公里数据
GET test/test/_search
{
"query": {

<code>"filtered": {
    "query" : {
        "match_all" : {}
    },
    "filter": {
      "geo_distance": {
        "distance": 20,
        "distance_unit": "km",
        "location": {
          "lat" : 40.11116,
          "lon" : -71.34115
        }
      }
    }
}</code>

}
}

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn