3

使用 PatchCollection 时,有没有办法让圆的填充变得透明?我绘制了一个圆圈,并尝试将 facecolor 设置为“无”,但它覆盖了绘制在其顶部的等高线图。我想看到圆的轮廓,其后面的轮廓仍然可见。

立体网是使用 mplstereonet-0.2 第三方软件绘制的。这是绘制图像的脚本部分:

hold(True)



fig, ax = plt.subplots(subplot_kw = dict(projection = 'stereonet')) # Schmidt by default

cax = ax.density_contourf(strike, dip, measurement = 'poles')

ax.pole(strike, dip, 'k^', markersize = 3)
ax.grid(True)


patches = []
circle = Circle((0, 0), 0.5, facecolor = 'none', fill = False)
patches.append(circle)
p = PatchCollection(patches)
ax.add_collection(p)

cbar = fig.colorbar(cax, cmap = cm)
cbar.set_clim(0, 25)

在此处输入图像描述

4

1 回答 1

3

我解决了这个问题,但感谢任何可能正在研究这个问题的人。

解决方案:

    p = PatchCollection(patches, match_original = True)

这将使轮廓在形状后面可见。

在此处输入图像描述

于 2012-11-23T15:59:29.507 回答