hi I want to find the car speed on my iPhone when driving so what should i use & how? Core Motion or Core Location? any documentation or sample code?

Thanx in advance :)

link|improve this question

65% accept rate
You will need CoreLocation. The theory is tho calculate the distance between to GPS coordinates. Then take the time between the two points and see how much distance is travled in that time. – rckoenes Apr 12 '11 at 7:29
thank u so much thats the original logic – Mashhadi Apr 12 '11 at 9:20
feedback

2 Answers

up vote 4 down vote accepted

Hey - You'll want core location for this.

There is a really good tutorial here - http://www.vellios.com/2010/08/16/core-location-gps-tutorial/ that I followed once. There is a whole series but this one shows you how to calculate the position and speed of your device. There is a sample project to download too. Hope this helps!

link|improve this answer
oh thank u so much so nice of u. that is exactly the thing i really need.!!! – Mashhadi Apr 12 '11 at 9:18
Thanks Mashhadi. If you are happy with it could you mark my post as the answer by clicking the tick please? Thanks. – Chris Grant Apr 12 '11 at 10:36
awwwh! sure :-) – Mashhadi Apr 12 '11 at 11:32
Thanks, hope you find the tutorial useful. – Chris Grant Apr 12 '11 at 14:24
@chris: this code is not finding the accurate speed & i am unable to find the bug, do you have any idea? – Mashhadi May 9 '11 at 7:05
show 2 more comments
feedback

CoreMotion would not help you much, because it is an abstraction of the device's accelerometer and the gyroscope. You could measure acceleration and deceleration and computing the speed from basic physics, but I would not do so.

I would use the CoreLocation frameworkd and rely on GPS positioning. There is a ton of sample code out there and a WWDC10 video as well, so go ahead and look it up.

link|improve this answer
thank u so much sir i'll use it – Mashhadi Apr 12 '11 at 9:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.