मैं वर्तमान में इस कोड को मानचित्र पर एनोटेटेशन पॉप अप करने के लिए नियोजित कर रहा हूं जब मैं बेसमैप मैटलप्लॉट प्लॉट में किसी बिंदु पर क्लिक करता हूं।माउस होवर के साथ पाइथन और मैटलप्लिब और एनोटेशन
dcc = DataCursor(self.figure.gca())
self.figure.canvas.mpl_connect('pick_event',dcc)
plot_handle.set_picker(5)
self.figure.canvas.draw()
class DataCursor(object):
import matplotlib.pyplot as plt
text_template = 'x: %0.2f\ny: %0.2f'
x, y = 0.0, 0.0
xoffset, yoffset = -20 , 20
text_template = 'A: %s\nB: %s\nC: %s'
def __init__(self, ax):
self.ax = ax
self.annotation = ax.annotate(self.text_template,
xy=(self.x, self.y), xytext=(0,0),
textcoords='axes fraction', ha='left', va='bottom', fontsize=10,
bbox=dict(boxstyle='round,pad=0.5', fc='yellow', alpha=1),
arrowprops=dict(arrowstyle='->', connectionstyle='arc3,rad=0')
)
self.annotation.set_visible(False)
self.annotation.draggable()
def __call__(self, event):
self.event = event
self.x, self.y = event.mouseevent.xdata, event.mouseevent.ydata
if self.x is not None:
glim = pickle.load(open("ListA.py","rb"))
tlim = pickle.load(open("ListB.py","rb"))
vlim = pickle.load(open("ListC.py","rb"))
a = glim[event.ind[0]] # ['Name'][event.ind[0]]
b = tlim[event.ind[0]]
c = vlim[event.ind[0]]
temp_temp=self.text_template % (a, b, c)
if temp_temp == self.annotation.get_text() and self.annotation.get_visible():
self.annotation.set_visible(False)
event.canvas.draw()
return
self.annotation.xy = self.x, self.y
self.annotation.set_text(self.text_template % (a, b, c))
self.annotation.set_visible(True)
event.canvas.draw()
मैं क्या सोच रहा हूं, एक बिंदु पर क्लिक करने के बजाय माउस होवर का उपयोग करके एनोटेशन कैसे दिखाया जाए?
मैंने "motion_notify_event" देखा है, लेकिन ऐसा लगता है कि जब मैं साजिश क्षेत्र के चारों ओर माउस ले जाता हूं तो कोड त्रुटियों को प्राप्त करता है। कोई विचार?
मैंने इन दोनों लिंक को देखा है, हालांकि मुझे यकीन नहीं है कि उन्हें अपने वर्तमान प्रारूप में कैसे कार्यान्वित किया जाए। मैं यह भी नहीं देखता कि कैसे "pick_event" एक क्लिक करने योग्य कार्रवाई है? – mcfly
मैं इस उत्तर को स्वीकार कर रहा हूं, लेकिन यह सही जवाब नहीं है। हालांकि, रूट ने एक और प्रश्न पूछा जो इस [प्रश्न] (http://stackoverflow.com/questions/4453143/point-and-line-tooltips-in-matplotlib/4620352#4620352) से जुड़ा हुआ है जो होवर और प्रदर्शन करने का सही तरीका देता है एनोटेशन। नोट: मैंने अभी भी wx.tooltip के बजाय एनोटेशन का उपयोग किया है। ये अच्छी तरह काम करता है! – mcfly