Tagged Questions

1
vote
1answer
59 views

Is it possible to implement the Haversine formula in Objective-C and call it from SQLite?

As I understand, SQLite doesn't have the math functions to properly implement the Haversine formula in straight SQL. I'm thinking this should be possible using an external functio …
1
vote
2answers
204 views

Distance from Point To Line great circle functino not working right. Need help

Howdy. I need to get the distance from a lat/lng point to a line. Of course needs to follow the Great Circle. I found a great article on this at http://www.movable-type.co.uk/sc …
1
vote
2answers
1k views

MySQL Great Circle Distance (Haversine formula)

Hello All, 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 …
3
votes
5answers
480 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)) …
2
votes
5answers
475 views

If I am here and heading towards there and I’ve covered this much ground, where am I?

I need help writing the following method: def get_new_location(current_location, target_location, distance_travelled): ... ... return new_location where all location …