Tagged Questions

30
votes
4answers
16k views

MySQL Great Circle Distance (Haversine formula)

I've got a PHP script that gets Longitude and Latitude values...then inputs them into a MySQL query. I'd really like to make it solely MySQL. Live site can be found at http://MotoListr.com Here's ...
0
votes
2answers
300 views

MySQL Great Circle intersection (do two roads cross?)

MySQL OpenGIS CROSSES doesn't seem to work for me: SET @ls = 'LineString(1 1, 2 2, 3 3)'; SET @xx = 'LineString(0 2, 10 2)'; # SELECT AsText(EndPoint(GeomFromText(@ls))); select ...