Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS location significant change accuracy and distance

Tags:

ios

location

I want to know the accuracy and the distance filter of the low-power significant change location service (i.e if I use startMonitoringSignificantLocationChanges how much it's accurate, and what is the distance of the significant change)?

I need some experimental (non documentary) info from real time apps

like image 355
Ahmed Said Avatar asked Nov 11 '12 09:11

Ahmed Said


1 Answers

I had a chance to speak with the Apple Location Engineers at WWDC this past year and this is how it was explained to me.

The significant location change is the least accurate of all the location monitoring types. It only gets its updates when there is a cell tower transition or change. This can mean a varying level of accuracy and updates based on where the user is. City area, more updates with more towers. Out of town, interstate, fewer towers and changes.

This is also the hardest location type to test for since you can't use the simulator either. I'm not sure if they have fixed it to work with the GPX files for 6.0, but the significant location change api did not work at all in the simulator prior to iOS 6.

I have tried to avoid using the signification location change for many of these reasons. Sometimes it can't be helped. I ended up using the region monitoring API's as they are far more accurate and just as good on battery life. Hope this helps.

like image 174
Bill Burgess Avatar answered Nov 13 '22 18:11

Bill Burgess