Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i've a gps tracker that now works great, except when iphone lost gps connection. When the connection is lost the track make one or more point to a random location (as you can see in this image:

track

In which way i can discard this bad values? I've think to do in this way: before save my data i can do a sum of my integer values of current latitude and longitude and compare with integer values of my old latutude and longitude; if the difference is > somevalue i discard my data.

It will be a good thing? There's some other nice tricks to do this?

Thank's

share|improve this question
Could you tell me how often do you save the location and how do you save it (data structure) ? – art Aug 22 '11 at 4:40
hi, i discard the first 3 values, after save each data. For now i save my data in .csv file – zebra Aug 25 '11 at 18:08
I have problem on the size of datas on one 50min trip it consume about 600 kb space just for coordinate. Would your csv will help me on this, can I save csv from core data? – art Aug 26 '11 at 1:53

3 Answers

up vote 1 down vote accepted

maybe i've found my fault:

in

locationManager:didFailWithError:

when i receive a kCLErrorNetwork or any other error except kCLErrorDenied i perform a stopupdatinglocation and a startupdatinglocation.

Now the app works good, i make some other test tomorrow and post here the result.

share|improve this answer
my fault was stopping and starting locationmanager on any error, now tracks are very accurate! – zebra Sep 7 '10 at 15:43

Try to check the time of the location update while the GPS has no signal (the time is provided within the location parameter if I recall correctly).

Maybe the time is some constant , and that way you can check if the difference between the current time and the location time is more then some value, to know if the location is real or not.

share|improve this answer
mhmmmm i just check this parameter when locationManager:didUpdateToLocation:fromLocation: is call, if a bad value i discard it in this way – zebra Aug 30 '10 at 12:20
So, you got it fixed ? if so please check my answer as the accepted one. – Idan Aug 30 '10 at 13:06
nono, is not fixed. i just check timestamp in this way (is the first thing i do in that delegate method). – zebra Aug 30 '10 at 13:14
can you post to code to show me how you do it ? – Idan Aug 30 '10 at 13:24
i do something like this (recentLoc < -0.0 && recentLoc > -15.0) && ( (newLocation.horizontalAccuracy < (oldLocation.horizontalAccuracy - 10.0)) || (newLocation.horizontalAccuracy < 50.0) recent location is an NSTimeInterval – zebra Aug 30 '10 at 18:13

You can sanity check points before using them. If the accuracy level suddenly jumps up and then back down again, you can throw away that one point. If the timestamp says the user is suddenly moving at supersonic speeds to get to the new location after calculating the distance over time from any previous points, then the point is likely bogus. etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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