I have a pandas df of origin and destination latitude and longitude.
df = pd.DataFrame({'orig_lat': [32.8111, 34.3424], 'orig_long': [-122.2221,-132.2133],
'dest_lat': [33.2231, 35.3394], 'dest_long':[-123.2211,-125.1133]})
Now, I want to create a new column called Euclidean_dist to find the Euclidean distance between origin and destination values. Could anyone please help me how to find Euclidean distance?