vote up 3 vote down star
4

Hello,

I'm writing a mapping application that I am writing in python and I need to get the lat/lon centroid of N points. Say I have two locations

a.lat = 101
a.lon = 230

b.lat = 146
b.lon = 200

Getting the center of two points is fairly easy using a euclidean formula. I would like to be able to do it for more then two points.

Fundamentally I'm looking to do something like http://a.placebetween.us/ where one can enter multiple addresses and find a the spot that is equidistant for everyone.

flag

7 Answers

vote up 4 vote down check

Have a look at this pdf. It explains how to apply the plane figure algorithm that Bill the Lizard mentions, but on the surface of a sphere.

link|flag
This is a definite improvement. I've been doing a lot of work with GIS lately, so I just assumed that this was understood. That's a terrible assumption in a general forum. +1 – Bill the Lizard Dec 9 '08 at 19:03
Thank you. Let's just hope it is all worthwile for chews. – eJames Dec 9 '08 at 19:26
vote up 0 vote down

Separately average the latitudes and longitudes.

link|flag
vote up 1 vote down

If you are averaging angles and have to deal with them crossing the 0/360 then it is safer to sum the sin and cos of each value and then Average = atan2(sum of sines,sum of cosines)
(be careful of the argument order in your atan2 function)

link|flag
vote up -1 vote down

Average them. First sum all points using p1+p2 = Point(p1.x+p2.x, p1.y+p2.y). Then divide the x and y by the number of points.

link|flag
vote up 0 vote down

Adding to Andrew Rollings' answer.

You will also need to make sure that if you have points on either side of the 0/360 longitude line that you are measuring in the "right direction"

Is the center of (0,359) and (0, 1) at (0,0) or (0,180)?
link|flag
This is the main reason why my app treats the east hemisphere completely separately from the west hemisphere. For instance, there isn't a "extents of the United States", there is a "US-E" and "US-W" and I combine them as needed. – Paul Tomblin Dec 9 '08 at 18:32
vote up -2 vote down

What do you mean by "centroid" if you simply mean the point in the middle of the smallest area that contains all the points, then just average the latitude of the farthest north and south points, and the longitudes of the farthest East and West points...

if you want a "weighted" centroid, then average all the latitudes, and all the longitudes...

link|flag
vote up 1 vote down

The math is pretty simple if the points form a plane figure. There's no guarantee, however, that a set of latitudes and longitudes are that simple, so it may first be necessary to find the convex hull of the points.

EDIT: As eJames points out, you have to make corrections for the surface of a sphere. My fault for assuming (without thinking) that this was understood. +1 to him.

link|flag

Your Answer

Get an OpenID
or

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