diff options
-rwxr-xr-x | scripts/plot-contourmap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/plot-contourmap b/scripts/plot-contourmap index 053a6be9..8b8e60c3 100755 --- a/scripts/plot-contourmap +++ b/scripts/plot-contourmap @@ -83,7 +83,7 @@ def update_graph(): for coll in cnt.collections: coll.remove() - cnt = ax.contour(Z, levels, origin='lower', linewidths=1, extent=extent) + cnt = ax.contour(Z, levels, origin='lower', linewidths=1, alpha=1, extent=extent, cmap=plt.cm.Greens) ax.set_title(filename) ax.set_xlabel(label1) |