Written by Peter Rosenmai on 27 Sep 2014. Last revised 12 Oct 2014.
Given two GPS points recorded as being d metres apart with circular error probable (CEP) of c1 and c2 metres respectively, the true distance between the recorded points has the distribution
where:
(I give a proof of this easy result below.)
This yields a handful of useful functions:
For example, if d=10, c1=6 and c2=8 (metres), the dcepdistance() function shows that distribution of the actual distances (in metres) looks like:
And we can estimate the mean and median:
In this case the mean and median distances (14.1 and 13.4 metres, respectively) are quite a lot more than the distance (d=10 metres) from which the points were generated. This can happen when d is small relative to c1 and c2.
If that seems strange, imagine that d=10 metres and that c1 and c2 are 1000 metres. In this case, even though the GPS points are recorded as being only 10 metres apart, the innacuracy of the GPS devices is so high that it is very likely that the distance between the actual points (the points at which the GPS data was recorded) is a lot more than 10 metres.
Here's a graph that shows how d becomes an increasingly poor estimator of the mean and median of D as sqrt(c12 + c22) increases relative to d:
For example, for d=10, c1=6 and c2=8 (metres), we have sqrt(c12 + c22)/d = 1. The above graph indicates that the median and mean of D is therefore about 13.5 metres and 14 metres respectively—which corresponds to the values of 13.5 and 14.1, respectively, that we calculated above.
All this assumes that the north-south errors and the east-west errors of the GPS devices are uncorrelated and have the same standard deviation—which is, I believe, a reasonable assumption.
Consider two bivariate-normal random variables, the covariance matrices of which are scalar multiples of the identity matrix:
We have that the distance between a point from B1 and a point from B2 has the distribution:
Where
Hence
where C has a non-central chi-square distribution with 2 degrees of freedom and non-centrality parameter
where d is the Euclidean distance between the means of the two distributions.
We then use the constant
to convert between standard deviations and CEP (Levi, Sakitt and Hobson, 1989, p. 125).
Levi, B., Sakitt, M. and Hobson, A. (1989). The Future of land-based strategic missiles. 1st ed. New York: American Institute of Physics.