mysql经纬度计算距离,官方支持方法
先看下官方文档
-
ST_Distance_Sphere(g1,g2[,radius])Returns the mimimum spherical distance between two points and/or multipoints on a sphere, in meters, or
NULLif any geometry argument isNULLor empty.Calculations use a spherical earth and a configurable radius. The optional
radiusargument should be given in meters. If omitted, the default radius is 6,370,986 meters. AnER_WRONG_ARGUMENTSerror occurs if theradiusargument is present but not positive.The geometry arguments should consist of points that specify (longitude, latitude) coordinate values:
Supported argument combinations are (
Point,Point), (Point,MultiPoint), and (MultiPoint,Point). AnER_GIS_UNSUPPORTED_ARGUMENTerror occurs for other combinations.If any geometry argument is not a syntactically well-formed geometry byte string, an
ER_GIS_INVALID_DATAerror occurs.mysql> SET @pt1 = ST_GeomFromText('POINT(0 0)'); mysql> SET @pt2 = ST_GeomFromText('POINT(180 0)'); mysql> SELECT ST_Distance_Sphere(@pt1, @pt2); +--------------------------------+ | ST_Distance_Sphere(@pt1, @pt2) | +--------------------------------+ | 20015042.813723423 | +--------------------------------+-
Longitude and latitude are the first and second coordinates of the point, respectively.
-
Both coordinates are in degrees.
-
Longitude values must be in the range (-180, 180]. Positive values are east of the prime meridian.
-
Latitude values must be in the range [-90, 90]. Positive values are north of the equator.
-
直接上使用方法
此方法时mysql官方支持函数
select
ST_Distance_Sphere(point (目标纬度, 目标经度),point(纬度,经度)) distance
from table
举个例子
select ST_Distance_Sphere(point (113.6350421, 34.7950488),point(113.6051975,34.7418565)) AS distance from demo_table

浙公网安备 33010602011771号