Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 matplotlibs 底图在多天内使用循环在 pcolor 顶部绘制一些风倒钩。我可以通过使用轻松更改 pcolor,set_data()但现在我不确定如何更换倒钩。
set_data()
有没有办法在不清除整个图形的情况下去除倒钩?
创建 barbs 对象时,保存它返回的引用,并remove在完成后使用它的函数。强制画布在没有倒钩的draw情况下重新绘制。假设这m是basemap对象。
remove
draw
m
basemap
barbs1,barbs2 = m.barbs(...) # some code barbs1.remove() barbs2.remove() plt.draw()