Tagged Questions

1
vote
1answer
75 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 function, with the …
0
votes
1answer
342 views

Distance between two locations using Latitude and Longitude way off what Google says.

I've spent a few days trying to figure this one out and can't seem to pinpoint the problems. I have a SQL 2005 database storing latitude and longitude as Decimal(18,8), all of which I received by …
0
votes
1answer
24 views

How to Return Additional Columns With Values Generated in Stored Procedures On the ‘Fly’?

This is one of those questions where I'm having a hard time figuring out how to ask it so bare with me. I have a stored procedure in SQL 2005 that calculates distance using the Haversine formula. …
2
votes
3answers
270 views

Best method for working out locations within a radius of starting point

I'm aiming to create a feature in my latest project preferably using PHP. When each user signs up they are going to input their postcode. Then hopefully I will be converting this to lat/long using …
7
votes
2answers
491 views

Is Google Maps calculating the wrong distance?

I've managed to get two functions working to calculate distances between two point on a google map. One that I gleaned(stole) from various places on the web and the other using the …