Plot latitude longitude from CSV in Python 3.6
If you are just looking at plotting the point data as a scatterplot, is as simple as import matplotlib.pyplot as plt plt.scatter(x=df[‘Longitude’], y=df[‘Latitude’]) plt.show() If you want to plot the points on the map, it’s getting interesting because it depends more on how you plot your map. A simple way is to use shapely and … Read more