matplotlib底图鼠标事件

时间:2018-06-12 15:48:36

标签: python matplotlib matplotlib-basemap

global testResults
testResults = []
def onclick(event):
    print('%s click: button=%d, x=%d, y=%d, xdata=%f, ydata=%f' %
          ('double' if event.dblclick else 'single', event.button,
           event.x, event.y, event.xdata, event.ydata))
    testResults.append('Success')
fig, axes = plt.subplots(1,1,figsize=(20,10))
axes.set_title('Seasonality Clustering')
markerList = ['bo','go','ro','co','mo','yo','ko','wo']
m = Basemap(projection='gall',
            llcrnrlon=-130,llcrnrlat=20,urcrnrlon=-65,urcrnrlat=55,resolution='i',
           lat_0=39.5, lon_0=-98.35,ax=axes)
m.bluemarble()
for index,row in siteMaster.iterrows():
    x,y = m(row['longitude'],row['latitude'])
    m.plot(x,y,markerList[int(row['Cluster2'])],markersize=10)
for index,row in siteMaster.iloc[closest].iterrows():
    x,y = m(row['longitude'],row['latitude'])
    x2,y2 = m(row['longitude'],row['latitude']+10)
    plt.annotate(row['City']+','+row['State'], xy=(x,y),xycoords='data',xytext=(x2,y2),color = markerList[int(row['Cluster2'])][0], 
                 arrowprops=dict(arrowstyle="->",color = markerList[int(row['Cluster2'])][0]),size=20)
fig.canvas.mpl_connect('button_press_event', onclick)
plt.show()

我正在尝试为Basemap对象添加鼠标事件。我尝试了几个不同的事件,但它没有打印任何东西。我使用的环境是使用Python 3.6的Jupyter Notebook。该图可以成功显示,但几次点击地图不会返回任何内容。而全局变量" testResults"是一个空列表。如何为Basemap对象添加鼠标事件?见下图。 Matplotlib Plot

1 个答案:

答案 0 :(得分:0)

你可能在jupyter中使用内联后端,这会生成png图。点击png图像当然没有效果。

您可以使用

%matplotlib notebook

后端,或尝试

%matplotlib qt

后端。