gpt4 book ai didi

php - mysql - 选择彼此距离较近的记录

转载 作者:行者123 更新时间:2023-11-29 02:45:10 25 4
gpt4 key购买 nike

我有一个包含位置的 mysql 表,例如:

ID  latitude  longitude  value
1 11.11111 22.22222 1
2 33.33333 44.44444 2
3 11.11112 22.22223 5

我想选择彼此靠近的记录(在上面的示例中,第 1 行和第 3 行),以便我可以将它们作为一条记录插入到新表中。说近,比方说 100 米。我希望新表是:

ID  latitude  longitude  value   
1 11.11111 22.22222 3
2 33.33333 44.44444 2

如您所见,我想保留第一条记录的坐标,并在“值”列中插入两条记录的平均值。

我使用的距离公式如下:

R*SQRT(((lon2*c-lon1*c)*cos(0.5*(lat2*c+lat1*c)))^2 + (lat2*c-lat1*c)^2)

在哪里

[lat1, lon1] the coordinates of the first location,
[lat2, lon2] the coordinates of the second location,
[R] the average radius of Earth in meters,
[c] a number to convert degrees to radians.

该公式适用于短距离。

所以,我的问题不是经纬度到距离的转换,而是我的 SQL。我知道如何选择与特定纬度、经度坐标的最大距离为 100 米的记录,但我不知道如何选择彼此之间的最大距离的记录。

我采用的一种方法(并且有效)是在 PHP 中逐条循环记录,并针对每条记录进行 SQL 查询以选择附近的记录。但是通过这种方式,我在一个循环中执行了一个 SQL 查询,据我所知,这是一种不好的做法,尤其是当记录将达到数千条时。

希望我说的很清楚。如果没有,我很乐意为您提供更多信息。

感谢您的帮助。

最佳答案

这是一个获取范围内所有位置的SQL:

SELECT 
ID,
latitude,
longitude,
(6371 * acos (cos( radians(origin.latitude)) * cos( radians( destination.latitude ))
* cos( radians(destination.longitude) - radians(origin.longitude)) + sin(radians(origin.latitude))
* sin( radians(destination.latitude)))) AS distance
FROM myTable as destination, myTable as origin
WHERE destination.id = myId
HAVING distance < 100 --some value in kilometers

6371 是公里的常数。3959 是英里的常数。

这个话题有更多答案:MySQL Great Circle Distance (Haversine formula)

关于php - mysql - 选择彼此距离较近的记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43667187/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com