使用 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)