我正在尝试获取两点之间的距离,效果很好,但我遇到的问题是这些警告消息:
第 32 行
的“x”列的数据被截断 第 82 行的“x”列
的数据被截断 第 89 行的“x”列的数据被截断
这是我创建的功能:
CREATE FUNCTION `GetDistance`(`lat1` numeric(10, 7), `lon1` numeric(10, 7), `lat2` numeric(10, 7), `lon2` numeric(10, 7))
RETURNS decimal(10,7)
BEGIN
DECLARE x decimal(10, 7);
DECLARE pi decimal(21, 20);
SET pi = 3.14159265358979323846;
SET x = round(sin(lat1 * pi / 180)
* sin(lat2 * pi / 180)
+ cos(lat1 * pi / 180)
* cos(lat2 * pi / 180)
* cos((lon2 * pi / 180) - (lon1 * pi / 180)), 7);
SET x = round(atan((sqrt( 1- power( x, 2))) / x), 7);
RETURN round((1.852 * 60.0 * ((x / pi) * 180)) / 1.609344, 7);
END
这是lat1
,lon1
和lat2
,的两列lon2
CREATE TABLE `world_cities` (
`latitude` DECIMAL(10,7) NULL DEFAULT NULL,
`longitude` DECIMAL(10,7) NULL DEFAULT NULL,
)
以下是最大值/最小值:
"max(latitude)" "min(latitude)" "max(longitude)" "min(longitude)"
"82.4833330" "-54.9333330" "180.0000000" "-179.9833333"
那么,是什么导致了这个警告信息呢?
这是调用该函数的查询:
SELECT city, region, population, latitude, longitude,
GetDistance(@lat, @lon, latitude, longitude) as dist
FROM world_cities
WHERE MBRContains(LineString(Point(@lat + @kmRange / 111.1, @lon + @kmRange / (111.1 / COS(RADIANS(@lat)))), Point(@lat - @kmRange / 111.1, @lon - @kmRange / (111.1 / COS(RADIANS(@lat))))), location)
and city_id != @city_id
order By dist;