Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Finden Sie N nächste LineString von einem Punkt mit MySQL Spatial Extensions

Dies war eine sehr nützliche Antwort für mich, aber ich verwende MySQL 5.7.18, das erweiterte oder nur andere Geo-Abfragefunktionen bietet. Die gepostete Entfernungsfunktion wird nicht mehr benötigt - verwenden Sie ST_Distance_Sphere. Hier ist also ein Update des gleichen Codes, um DistanceFromLine kompatibel mit modernem (5.7.6+) MySQL zu machen...

DROP function IF EXISTS `DistanceFromLine`;
delimiter //
    CREATE FUNCTION `DistanceFromLine`(
    route LINESTRING, point1 POINT
    ) RETURNS INT DETERMINISTIC
        BEGIN
        DECLARE a INT Default 0 ;
        DECLARE minDistance INT Default 0;
        DECLARE currentDistance INT Default 0;
        DECLARE currentpoint point ;
        DECLARE size INT Default 0 ;
        SET size =  ST_NumPoints(route);
              simple_loop: LOOP
       SET a = a+1;
       SET currentpoint = ST_PointN(route,a);
       SET currentDistance = ST_Distance_Sphere(point1,currentpoint);

       IF a = 1 THEN
        SET minDistance = currentDistance;
           END IF;

       IF currentDistance < minDistance THEN
        SET minDistance = currentDistance;
       END IF;
       IF a=size THEN
                 LEAVE simple_loop;
       END IF;
          END LOOP simple_loop;
     RETURN (minDistance);
 END//