Tagged Questions

6
votes
1answer
900 views

CLLocation Category for Calculating Bearing w/ Haversine function

I'm trying to write a category for CLLocation to return the bearing to another CLLocation. I believe I'm doing something wrong with the formula (calculous is not my strong suit). The returned bearing ...
5
votes
2answers
1k 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 ...
2
votes
3answers
293 views

Implementing a Haversine function for sqlite into an iPhone project

So after an hour of research, I've found that most people seem to agree that the function at http://www.thismuchiknow.co.uk/?p=71 is the way to go for implementing a Haversine function into an iPhone ...
2
votes
2answers
650 views

Calculate compass heading to a CLLocation - Haversine functions for iOS

I understand how to get the distance between 2 CLLocations. I need to determine the generalized compass bearing (N, NE, E etc.) from a CLLocation to another CLLocation. Before I implement something ...
0
votes
2answers
183 views

How to calculate the distance between two places using Haversine Formula in iPhone?

I want to calculate the distance between two places using Haversine formula. Actually i am having the latitude and longitude values of two places. Now i want to calculate the distance between that ...
0
votes
0answers
68 views

MYSQL iPhone Coordinate Problem

i have my mySQL server working fine with my iphone app. and i can do standard retrieves etc. but am having a problem implementing a solution i found on this website for obtaining the distance between ...