Convert plot co-ords to geographic co-ords
问题 I am able to make a plot of data points based on their Lat and Long, which looks like: whereby the orange is made up of points like: using the code: m = Basemap(projection='merc',llcrnrlat=-0.5,urcrnrlat=0.5,\ llcrnrlon=9,urcrnrlon=10,lat_ts=0.25,resolution='i') m.drawcoastlines() m.drawcountries() # draw parallels and meridians. parallels = np.arange(-9.,10.,0.5) # Label the meridians and parallels m.drawparallels(parallels,labels=[False,True,True,False]) # Draw Meridians and Labels