Last active
March 13, 2024 11:23
-
-
Save aramonc/6680152 to your computer and use it in GitHub Desktop.
MySQL function to calculate the bearing between two points
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DELIMITER $$ | |
CREATE FUNCTION `bearing` (lat1 DECIMAL(8,6), lng1 DECIMAL(9,6), lat2 DECIMAL(8,6), lng2 DECIMAL(9,6)) RETURNS DECIMAL(9,6) | |
BEGIN | |
DECLARE dLng DECIMAL(30,15); | |
DECLARE y DECIMAL(30,15); | |
DECLARE x DECIMAL(30,15); | |
DECLARE bearing DECIMAL(30,15); | |
SET dLng = RADIANS( lng2 ) - RADIANS( lng1 ); | |
SET y = SIN( dLng ) * COS( RADIANS( lat2 ) ); | |
SET x = ( COS( RADIANS( lat1 ) ) * SIN ( RADIANS( lat2 ) ) ) - ( SIN( RADIANS( lat1 ) ) * COS( RADIANS( lat2 ) ) * COS( dLng ) ); | |
SET bearing = DEGREES( ATAN2( y, x ) ); | |
RETURN bearing; | |
END$$ | |
DELIMITER ; |
Fixed, thanks again & thank you for the alternative 👍 😄
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
While at it, this is a version for when you use POINT datatypes. It also contains (disabled) statements to have a bearing between 0 and 360 degrees.