Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
727 views
in Technique[技术] by (71.8m points)

python - Pandas Latitude-Longitude: Calculate the distance between two points and select the nearest one

I have a dataframe with 15k rows with coordinates and the names of the locations (mainly businesses)

spot lat1 l1 place lat2 lon2
1 41,1808128356934 -8,53291034698486 A 41.146749 -8.613889
1 41,1808128356934 -8,53291034698486 B 41.146105 -8.609868
2 41,1491432189941 -8,61034202575684 A 41.146749 -8.613889
2 41,1491432189941 -8,61034202575684 B 41.146105 -8.609868
question from:https://stackoverflow.com/questions/66047318/pandas-latitude-longitude-calculate-the-distance-between-two-points-and-select

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Your lat1 and lon1 are strings. Maybe you want to replace , with . and convert to float before you calculate the norm:

df[['lat1', 'lon1']] = df[['lat1','lon1']].apply(lambda x: pd.to_numeric(x.str.replace(',','.')) )

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...