When you request a GPS CLLocation
from iOS, it has a horizontalAccuracy
field, which is a radius in meters from the reported location where the user is likely to actually be.
My question is this: With what statistical confidence (i.e. a percentage) can we say that the phone is within the "horizontalAccuracy" distance from the given location?
Some background on why I care:
I'm working with data coming from both Android and iOS and I would like to know how confident I can be about any given piece of location data.
On Android, this data is explicit: 68%. From the docs:
We define accuracy as the radius of 68% confidence. In other words, if you draw a circle centered at this location's latitude and longitude, and with a radius equal to the accuracy, then there is a 68% probability that the true location is inside the circle.
In general, when dealing with GPS data, there are a number of standard error reporting methods including
RMS
(68%, likely the method Android uses),2DRMS
(95%),CEP
(50%),Error Ellipse
(95%). You can read more about these methods here.