I have a dataframe with columns "start lat", "start lon", "end lat" and "end lon". I want to use geopy to calculate distance for each row using above four columns. Plz help.
from geopy.distance import great_circle
great_circle([df['start station latitude'],
df['start station longitude']],
[df['end station latitude'],
df['end station longitude']])