there is a pandas dataframe column with latitud values as strings
0 47º 58,46 N
1 48º 06,8 N
2 NaN
3 47º 58,1 N
4 48º 05,0 N
code:
parts = df["Latitud"].str.extract('(\d+)º\s(\d*.\d*).([N|S|E|W])', expand=True) #(\d+)º\s(\d*.\d*).(.)
df["latitude"] = (parts[0].astype(int) + parts[1].astype(float) / 60 ) * parts[3].map({'N':1, 'S':-1, 'E': 1, 'W':-1})
Error:
ValueError: cannot convert float NaN to integer
How do I do to skip NaN empty values?
Let's try skipping the
NaN
values as requested:Output: