원거리 + 선 생성에 파이썬에서 어떤 도구를 사용할 수 있습니까?


20

파이썬을 사용하여 원 거리를 크게 만들어야합니다. 숫자는 물론 클라이언트 측 맵에서 그리는 데 사용할 수있는 일종의 '곡선'입니다. 곡선의 형식 (WKT 또는 좌표 쌍)은 신경 쓰지 않지만 데이터를 꺼내고 싶습니다.

어떤 도구가 있습니까? 무엇을 사용해야합니까?

답변:



8

다른 사람들이 제공 한 답변은 조금 더 우아하지만 기본 사항을 제공하는 매우 단순하고 다소 비 파이썬적인 Python입니다. 이 함수는 두 개의 좌표 쌍과 사용자 지정 세그먼트 수를 사용합니다. 큰 원 경로를 따라 일련의 중간 점을 생성합니다. 출력 : KML로 쓸 준비가 된 텍스트입니다. 주의 사항 : 코드는 대구를 고려하지 않으며 구형 지구를 가정합니다.

Alan Glennon의 코드 http://enj.com 2010 년 7 월 ( 저는 이 코드를 공개 도메인에 배치합니다. 사용자는 자신의 책임하에 사용하십시오).

-

데프 트윈 세그먼트 (longitude1, latitude1, longitude2, latitude2, num_of_segments) :

import math

ptlon1 = longitude1
ptlat1 = latitude1
ptlon2 = longitude2
ptlat2 = latitude2

numberofsegments = num_of_segments
onelessthansegments = numberofsegments - 1
fractionalincrement = (1.0/onelessthansegments)

ptlon1_radians = math.radians(ptlon1)
ptlat1_radians = math.radians(ptlat1)
ptlon2_radians = math.radians(ptlon2)
ptlat2_radians = math.radians(ptlat2)

distance_radians=2*math.asin(math.sqrt(math.pow((math.sin((ptlat1_radians-ptlat2_radians)/2)),2) + math.cos(ptlat1_radians)*math.cos(ptlat2_radians)*math.pow((math.sin((ptlon1_radians-ptlon2_radians)/2)),2)))
# 6371.009 represents the mean radius of the earth
# shortest path distance
distance_km = 6371.009 * distance_radians

mylats = []
mylons = []

# write the starting coordinates
mylats.append([])
mylons.append([])
mylats[0] = ptlat1
mylons[0] = ptlon1 

f = fractionalincrement
icounter = 1
while (icounter <  onelessthansegments):
        icountmin1 = icounter - 1
        mylats.append([])
        mylons.append([])
        # f is expressed as a fraction along the route from point 1 to point 2
        A=math.sin((1-f)*distance_radians)/math.sin(distance_radians)
        B=math.sin(f*distance_radians)/math.sin(distance_radians)
        x = A*math.cos(ptlat1_radians)*math.cos(ptlon1_radians) + B*math.cos(ptlat2_radians)*math.cos(ptlon2_radians)
        y = A*math.cos(ptlat1_radians)*math.sin(ptlon1_radians) +  B*math.cos(ptlat2_radians)*math.sin(ptlon2_radians)
        z = A*math.sin(ptlat1_radians) + B*math.sin(ptlat2_radians)
        newlat=math.atan2(z,math.sqrt(math.pow(x,2)+math.pow(y,2)))
        newlon=math.atan2(y,x)
        newlat_degrees = math.degrees(newlat)
        newlon_degrees = math.degrees(newlon)
        mylats[icounter] = newlat_degrees
        mylons[icounter] = newlon_degrees
        icounter += 1
        f = f + fractionalincrement

# write the ending coordinates
mylats.append([])
mylons.append([])
mylats[onelessthansegments] = ptlat2
mylons[onelessthansegments] = ptlon2

# Now, the array mylats[] and mylons[] have the coordinate pairs for intermediate points along the geodesic
# My mylat[0],mylat[0] and mylat[num_of_segments-1],mylat[num_of_segments-1] are the geodesic end points

# write a kml of the results
zipcounter = 0
kmlheader = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><kml xmlns=\"http://www.opengis.net/kml/2.2\"><Document><name>LineString.kml</name><open>1</open><Placemark><name>unextruded</name><LineString><extrude>1</extrude><tessellate>1</tessellate><coordinates>"
print kmlheader
while (zipcounter < numberofsegments):
        outputstuff = repr(mylons[zipcounter]) + "," + repr(mylats[zipcounter]) + ",0 "
        print outputstuff
        zipcounter += 1
kmlfooter = "</coordinates></LineString></Placemark></Document></kml>"
print kmlfooter

8

GeographicLib에는 Python 인터페이스가 있습니다 .

이것은 타원체의 컴퓨터 측지선 (큰 원을 얻기 위해 평평하게 0으로 설정)과 측지선의 중간 지점을 생성 할 수 있습니다 (샘플의 "선"명령 참조).

JFK에서 창이 공항 (싱가포르)까지 측지선의 점을 인쇄하는 방법은 다음과 같습니다.

from geographiclib.geodesic import Geodesic
geod = Geodesic.WGS84

g = geod.Inverse(40.6, -73.8, 1.4, 104)
l = geod.Line(g['lat1'], g['lon1'], g['azi1'])
num = 15  # 15 intermediate steps

for i in range(num+1):
    pos = l.Position(i * g['s12'] / num)
    print(pos['lat2'], pos['lon2'])

->
(40.60, -73.8)
(49.78, -72.99)
(58.95, -71.81)
(68.09, -69.76)
(77.15, -65.01)
(85.76, -40.31)
(83.77, 80.76)
(74.92, 94.85)
...

GeographicLib의 파이썬 포트에서 사용할 수 있습니다 pypi.python.org/pypi/geographiclib
cffk

이 논문을 참조하십시오 : CFF Karney, 측지학 알고리즘, J. Geod, DOI : dx.doi.org/10.1007/s00190-012-0578-z
cffk

7

pyproj 에는 경로를 따라 점의 배열을 반환하는 Geod.npts 함수가 있습니다. 배열에 터미널 포인트가 포함되어 있지 않으므로 다음을 고려해야합니다.

import pyproj
# calculate distance between points
g = pyproj.Geod(ellps='WGS84')
(az12, az21, dist) = g.inv(startlong, startlat, endlong, endlat)

# calculate line string along path with segments <= 1 km
lonlats = g.npts(startlong, startlat, endlong, endlat,
                 1 + int(dist / 1000))

# npts doesn't include start/end points, so prepend/append them
lonlats.insert(0, (startlong, startlat))
lonlats.append((endlong, endlat))

감사! 해결 : 잘 알려진 & 여기에 대량으로 사용되는 라이브러리에 의해 제공
tdihp


당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.