Код: Выделить всё
from geopy import distance
...
df['Km'] = df.apply((lambda row: distance.distance(row['coord_1'],row['coord_2']).km),axis=1)
Код: Выделить всё
distance.distance()Подробнее здесь: https://stackoverflow.com/questions/682 ... -in-python
Мобильная версия