Calculating Distances Between Geographic Points with MySQL 5.7

Calculating Distances Between Geographic Points with MySQL 5.7

Takahiro Iwasa
Takahiro Iwasa
2 min read
GIS MySQL

MySQL 5.7 provides the ST_Distance_Sphere function for calculating the great-circle distance between two geographic points.

Important

The arguments for the ST_Distance_Sphere function should follow the order of longitude first, then latitude.

Short Distance Example

Here, we calculate the distance between two points in Osaka.

SELECT
ST_Distance_Sphere(
GeomFromText('POINT(135.507260 34.693946)'),
GeomFromText('POINT(135.526201 34.687316)')
) AS distance_meter
FROM
dual;
rowdistance_meter
11882.1360099034516

Long Distance Example

For longer distances, let’s calculate the distance between JR Osaka Station and JR Tokyo Station.

SELECT
ST_Distance_Sphere(
GeomFromText('POINT(135.495951 34.702488)'), -- JR Osaka station
GeomFromText('POINT(139.767052 35.681168)') -- JR Tokyo station
) AS distance_meter
FROM
dual;
rowdistance_meter
1403048.2752256764

Near the Poles Example

To demonstrate the accuracy near the poles, let’s measure a distance at Svalbard, a high-latitude region.

SELECT
ST_Distance_Sphere(
GeomFromText('POINT(16.379258 78.655621)'), -- Pyramiden Container Hostel
GeomFromText('POINT(16.328528 78.655143)') -- Hotel Tulpan
) AS distance_meter
FROM
dual;
rowdistance_meter
11110.8932928975748

Benefits of MySQL Spatial Functions

Using MySQL’s spatial analysis functions, developers can easily implement robust geographic data processing capabilities. These functions are highly optimized for performance and accuracy, making them ideal for applications requiring geographic calculations.

Takahiro Iwasa

Takahiro Iwasa

Software Developer
Involved in the requirements definition, design, and development of cloud-native applications using AWS. Japan AWS Top Engineers 2020-2023.