vote up 1 vote down star

Say you have n GPS coordinates how could you work out the central gps point between them?

flag

55% accept rate
Defined "central point"? Do you want any point within a convex hull around the points, the geometric center, or what? – Paul Tomblin Feb 24 at 21:05
I am just trying to estimate my position based upon known gps coordinates of wifi access points and the signals i can get from them. – Malachi Feb 24 at 21:15
In that case, you probably want to do a least squares fit, just like the GPS does itself. But it's complicated. – Paul Tomblin Feb 24 at 21:31
Over the distance you get wifi, you can just assume a flat plane through each gps point. – Pete Kirkham Feb 25 at 17:38

3 Answers

vote up 5 vote down check

In case it helps anyone now or in the future, here's an algorithm that's valid even for points near the poles (if it's valid at all, i.e. if I haven't made a silly math mistake ;-):

  1. Convert the latitude/longitude coordinates to 3D Cartesian coordinates:

    x = cos(lat) * cos(lon)
    y = cos(lat) * sin(lon)
    z = sin(lat)
    
  2. Compute the average of x, the average of y, and the average of z:

    x_avg = sum(x) / count(x)
    y_avg = sum(y) / count(y)
    z_avg = sum(z) / count(z)
    
  3. Convert that direction back to latitude and longitude:

    lat_avg = arctan(z_avg / sqrt(x_avg ** 2 + y_avg ** 2))
    lon_avg = arctan(y_avg / x_avg)
    
link|flag
Division by zero! – Gareth Rees Feb 25 at 17:38
arctan(x/0) = pi/2 * sign(x) – David Feb 25 at 18:22
But I guess you do raise a point, an actual implementation would probably use an arctan2(num, denom) function. – David Feb 25 at 18:24
I just tried implementing this and longitude is fine but latitude is way out. Keep going back over my code and it seems ok, am I tired or is there a mistake in the algorithm? – Adam Taylor Mar 10 at 0:30
I just rechecked it (implemented in Mathematica) and it seems to work fine for me... make sure that pi/2 radians (or +90 degrees) latitude is the north pole, 0 is the equation, and -pi/2 (or -90) is the south pole. – David Mar 10 at 1:17
show 4 more comments
vote up 4 vote down

Depends on what you mean by the central GPS point. You could simply take the average of all the points, as suggested by Stephen - but keep in mind that GPS coordinates are not continuous - this will fail spectacularly around discontinuities such as the poles.

In most cases you'll need to convert to a coordinate system that doesn't have this issue.

You could also look at all the points bounded by it, calculated all the distances to each GPS point, and minimize the sum of the distances to all the GPS points. You'll need to look into great circle calculations for this.

Further, each GPS might have a higher or lower degree of uncertainty, you should take that into account and weight them accordingly.

What exactly are you trying to find out?

-Adam

link|flag
vote up 1 vote down

This is a 3 dimensional problem. If the points are close enough together, you might be able to pretend it isn't and the error introduced might not be too bad. If you want to do it right, this is one of the magic formulas. Here is some good background material. As to off she shelf software packages for this problem space, I've only heard of Hipparchus, but I'm sure there are many others.

link|flag

Your Answer

Get an OpenID
or

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