matplotlib python quivers没有出现

时间:2016-10-15 05:54:59

标签: python matplotlib contour

我的轮廓图看起来很棒。我想在风速等值线图的顶部绘制箭袋箭(风向)。但是,当我尝试使用下面的代码执行此操作时,我没有收到任何错误,但是没有出现。有什么想法吗?它与我的xaxis时间有关吗?

#Contour plot of wind speeds
time_index = np.arange(start_date,end_date,dt.timedelta(minutes=10) )
height = np.arange(30,310,10)
cs = plt.contourf(time_index,height,wspd_sodar.transpose()) 

yy = np.arange(30,310,10)
print np.shape(yy)
xx = np.arange(1, 145)
print np.shape(xx)

X,Y = np.meshgrid(xx,yy)
print np.shape(X)
print np.shape(Y)
print np.shape(u)
print np.shape(v)

plt.quiver(X,Y,u,v,scale=1)
plt.show()

(28L,)
(144L,)
(28L, 144L)
(28L, 144L)
(28L, 144L)
(28L, 144L)

0 个答案:

没有答案