此 MySQL 地理查询中使用什么度量单位来查找距中心点具有特定距离的所有点?

What is the units of measure used in this MySQL geo query that finds all the points having a specific distance from a center point?

我正在处理 MySQL 地理查询。

因此,按照本教程进行操作:http://howto-use-mysql-spatial-ext.blogspot.it/2007/11/using-circular-area-selection.html

我已经实现了这个查询,它找到了与指定点有特定距离的所有点:

SET @center = GeomFromText('POINT(10 10)');
SET @radius = 30;
SET @bbox = CONCAT('POLYGON((',
X(@center) - @radius, ' ', Y(@center) - @radius, ',',
X(@center) + @radius, ' ', Y(@center) - @radius, ',',
X(@center) + @radius, ' ', Y(@center) + @radius, ',',
X(@center) - @radius, ' ', Y(@center) + @radius, ',',
X(@center) - @radius, ' ', Y(@center) - @radius, '))'
); 

通过这段代码,我定义了中心点和半径。

最后,我执行了查询,查找距离由该设置中心点的半径表示的所有点:

SELECT name, AsText(location)
FROM Points
WHERE Intersects( location, GeomFromText(@bbox) )
AND SQRT(POW( ABS( X(location) - X(@center)), 2) + POW( ABS(Y(location) - Y(@center)), 2 )) < @radius; 

好像还不错。

我的疑问是:@radius度量单位是什么?是公里还是什么?

在此示例中,@radius 设置为 30 的值。但是这个值到底代表什么呢?

没有默认的距离度量单位。实际上 MySQL 中的坐标是无量纲的。但是对于笛卡尔坐标,您可能会假装所有距离都具有相同的基本测量单位。它会正常工作,直到使用相同的单位解释所有数据。

例如,您可以选择米作为单位距离。在本例中,GeomFromText('POINT(10 10)') 距离原点 14.14m。当您需要提供半径时,请记住,所有距离均以米为单位,因此 @radius = 30 表示半径为 30 米。

对于其他类型的坐标,所需的单位度量将取决于所使用的距离计算公式。例如,如果您使用球坐标(经度和纬度),Wikipedia 中的距离公式将为您提供单位球体上的距离。所以 @radius 应该在 地球半径 中测量。因此@radius的单位是6371km。