How do I find the center of a number of geographic points?

时光毁灭记忆、已成空白 提交于 2019-12-03 05:03:33

Geomidpoint covers 3 different methods for calculating this.

Several people have answered to take the mean of the latitudes and longitudes. This is sort of the right idea, but means are more complicated on the sphere.

The latitude/longitude representation is essentially artificial and has discontinuities (at the poles, and opposite the prime meridian if you aren't careful), so it taking means in it doesn't seem likely (to me) to have a sensible geometric interpretation. I think you need to do something like averaging vectors in earth-centered coordinates, and then normalizing the result to put it back on the sphere.

I hope someone with more experience in these matters can comment more concretely.

Don't just take averages.

You can convert to 3d coordinates, then take the average (of x,y, and z coords), then project it back onto the sphere and turn that back into lat/long.

The wikipedia page on spherical coordinates has conversion algorithms.

Skizz

First off, you need to define which centre you're interested in. Take these two points:

A.                          .B

The centre is easy, it's halfway between them. Now add a third point:

A. C.                       .B

Is the centre still halfway between A and B or is it weighted towards A because of C? So is the centre the point nearest to all points or just the points on the enclosing polygon?

Also, as it's long/lat you're dealing with the points are on a surface of a sphere so the distance between long 0 and long 90 degrees is much greater at lat 0 than at lat 45 degrees.

You're probably looking for the centroid of the simple polygon defined by the points. There is information on how to calculate it for various geometries in that article.

Wolfram Alpha will do this for you if you ask the question in the following form: centroid of polygon with vertices: (X, Y), (X, Y), (X, Y), (X, Y), (X, Y), etc.

Just remember to convert each "(X, Y)" into decimal form first. Wolfram Alpha will return the answer in decimal form, which you can then copy and paste into Google Earth.

See Moe's answer, although if your points are distributed across the globe, you'll have to be satisfied that your center tends towards the Prime Meridian and not the International Date Line.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!