Man*_*egi 5 php mysql latitude-longitude
我的本地服务器上有一个 MySQL 表。该表包括用户标记的地点的纬度和经度。我正在尝试获取距离所提供的纬度和经度 1 公里范围内标记其位置的所有 id。但我的结果却出乎我的意料。
表:map_locations
id user_id lat lng place_name
1 1 28.584688 77.31593 Sec 2, Noida
2 2 28.596026 77.314494 Sec 7, Noida
3 5 28.579876 77.356131 Sec 35, Noida
4 1 28.516831 77.487405 Surajpur, Greater Noida
5 1 28.631451 77.216667 Connaught Place, New Delhi
6 2 19.098003 72.83407 Juhu Airport, Mumbai
Run Code Online (Sandbox Code Playgroud)
这是 PHP 脚本
$lat = '28.596026';
$long = '77.314494';
$query = "SELECT id,
(6371 * acos( cos( radians($lat) ) * cos( radians('lat') ) *
cos( radians('lng') - radians($long)) +
sin(radians($lat)) * sin(radians('lat')) )
) as distance
FROM map_locations
HAVING 'distance' < 1
ORDER BY id
LIMIT 25";
$_res = mysqli_query($conn, $query) or die('Error query: '.$query);
$detail = array();
$i=0;
while($row = $_res->fetch_assoc()) {
$detail[$i] = $row['id'];
$i++;
}
print_r($detail);
Run Code Online (Sandbox Code Playgroud)
结果:
Array
(
[0] => 1
[1] => 2
[2] => 3
[3] => 4
[4] => 5
[5] => 6
)
Run Code Online (Sandbox Code Playgroud)
查询返回表中的所有记录。谁能告诉我查询中有什么问题吗?
您的查询包含一些带引号的字符串,例如“lat”、“long”和“distance”,其中应包含列名称,例如“lat”、“long”和“distance”。
特别是它以
HAVING 'distance' < 0.5
Run Code Online (Sandbox Code Playgroud)
这总是正确的,因为在数字上下文中使用字符串时,MySQL 总是将字符串强制转换为数字。对于 MySQL 来说,它看起来像HAVING 0 < 0.5. 你要
HAVING distance < 0.5
Run Code Online (Sandbox Code Playgroud)
尝试这个查询。(http://sqlfiddle.com/#!9/4f5116/5/2)
SELECT id,
(6371 * acos( cos( radians($lat) ) * cos( radians(lat) ) *
cos( radians(lng) - radians($long)) + sin(radians($lat)) *
sin(radians(lat)) )) as distance
FROM map_locations
HAVING distance < 0.5
Run Code Online (Sandbox Code Playgroud)
而且,要小心!当表中有数千行时,map_locations此查询将比纽约交通堵塞时的公共汽车慢。您应该研究使用边界框来加快速度。读这个。