plt.subplots_adjust(left=0.05,right=0.95,top=0.90,bottom=0.05,wspace=0.15,hspace=0.05)
axs = plt.subplot(111)
m = Basemap(llcrnrlon=-50,llcrnrlat=40.2,urcrnrlon=0,urcrnrlat=52.2,
resolution='i',projection='merc'ax = axs)
m.drawcountries(linewidth=0.5)
m.drawcoastlines(linewidth=0.5)
m.fillcontinents(color="grey")
m.drawmapboundary()
#to plot multiple points
i=1
lons=list()
lats=list()
lbl=list()
while i<15:
lons=list(df[Lon])
lats=list(df[Lat])
lbl=list(df[Site])
lons.append(i)
lats.append(i)
lbl.append(i)
x,y = m(lons, lats)
axs.plot(x, y, 'o', label=lbl)
i+=1
plt.show()
你能帮我解决这个问题。 df是我的数据框。 Lon,Lat和Site是df中列的名称。
答案 0 :(得分:0)
使用
axs.plot(x, y, 'o', label=lbl)
而不是
m.plot(x, y, 'o', label=lbl)
答案 1 :(得分:0)
我不明白为什么你要创建经度和纬度的列表,因为你是逐点绘制的。
此外,我认为你想标记每个点,这可以通过注释来完成。我会这样做:
from mpl_toolkits.basemap import Basemap
import matplotlib.pyplot as plt
plt.subplots_adjust(left=0.05,right=0.95,top=0.90,bottom=0.05,wspace=0.15,hspace=0.05)
axs = plt.subplot(111)
m = Basemap(llcrnrlon=-50,llcrnrlat=40.2,urcrnrlon=0,urcrnrlat=52.2,
resolution='i',projection='merc', ax = axs)
m.drawcountries(linewidth=0.5)
m.drawcoastlines(linewidth=0.5)
m.fillcontinents(color="grey")
m.drawmapboundary()
df = [{'lon': -8, 'lat': 45, 'site': 'point1'},
{'lon': -16, 'lat': 46, 'site': 'point2'}]
for point in df:
x, y = m(point['lon'], point['lat'])
axs.annotate(point['site'], xy=(x, y), xycoords='data',
xytext=(-40, 20), textcoords = 'offset points',
arrowprops=dict(arrowstyle="->"))
axs.plot(x, y, marker='o')
plt.show()