위도 및 경도 포인트 세트가 주어지면 해당 세트의 중심점 (모든 포인트에서 뷰를 중심으로하는 포인트)의 위도 및 경도를 어떻게 계산할 수 있습니까?
편집 : 내가 사용한 Python 솔루션 :
Convert lat/lon (must be in radians) to Cartesian coordinates for each location.
X = cos(lat) * cos(lon)
Y = cos(lat) * sin(lon)
Z = sin(lat)
Compute average x, y and z coordinates.
x = (x1 + x2 + ... + xn) / n
y = (y1 + y2 + ... + yn) / n
z = (z1 + z2 + ... + zn) / n
Convert average x, y, z coordinate to latitude and longitude.
Lon = atan2(y, x)
Hyp = sqrt(x * x + y * y)
Lat = atan2(z, hyp)
z
pls 는 무엇입니까 ?