[Python] 위경도 거리 구하기 :: haversine
반응형
haversine
두 위경도(Latitude, Longitude)데이터의 거리를 구해야할 때 편리한 패키지이다.
패키지 설치하기
$ pip install haversine
패키지 불러오기
from haversine import haversine
거리 구하기
# 위경도 입력
Seoul = (37.541, 126.986) #Latitude, Longitude
Toronto = (43.65, -79.38)
# 거리 계산
haversine(Seoul, Toronto, unit = 'km')
unit = ' '으로 출력값의 단위를 정할 수 있다.
단위 |
unit = |
단위 |
unit = |
FEET |
ft |
INCHES |
in |
KILOMETERS |
km |
METERS |
m |
MILES |
mi |
NAUTICAL_MILES |
nmi |
예시
728x90
'Python' 카테고리의 다른 글
[Python] 리스트 정렬하기 :: sort / sorted (0) | 2021.02.10 |
---|---|
[Python] 영문 > 한글 키보드 입력 변환하기 :: 자모결합 / 자소결합 (0) | 2021.01.29 |
[Python] for문(반복문) 진행상황 표시 :: tqdm / tqdm_notebook (0) | 2021.01.28 |
[Python] has no attribute 'compat' (most likely due to a circular import) 오류 (0) | 2020.10.05 |
pd.read_table 예제 (0) | 2020.03.31 |
Comments