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 ...
4
votes
4answers
2k views

Great Circle Distance question

I am familiar with the formula to calculate the Great Circle Distance between two points. i.e. <?php $theta = $lon1 - $lon2; $dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) + ...
1
vote
3answers
130 views

How to calculate shortest route?

I have a list of 80 towns each with their geographical longitude and latitude. I need to find the shortest closed route (taking into account the curvature of the earth). I was thinking I could ...
0
votes
3answers
712 views

complex math with great circle formula

I have a from location (latitude, longitude) and to location (latitude, longitude). After calculating, it should show me what would be the nearest way to go from using a compass. The following is PHP ...