使用来自matplotlib的ax.quiver仅增加箭头的线

时间:2017-09-11 02:33:35

标签: python matplotlib

我有一些大地测量站和他们的位移值超过两年。 我使用ax.quiver来获取我的身影上的位移箭头。

问题是位移远小于站点的位置,当我使用scale=0.0001(或类似的东西)时,所有箭头都增加了,我只需要增加长度,而不是整个体。

我的代码:

fig, ax = plt.subplots(figsize=(10, 5))
ax.scatter(eee_SB_um,nnn_SB_um,edgecolors='none',marker='o', color='r')

plt.axis('equal')

ax.quiver(eee_SB_um, nnn_SB_um, DSB_1_E, DSB_1_N,
          angles='xy',scale_units='xy', scale = 0.0001)

我的身材: Plot of displacements

0 个答案:

没有答案