diff options
author | Thomas White <taw@physics.org> | 2019-02-08 16:33:07 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-02-08 16:33:07 +0100 |
commit | aa7ca6edfe2203692aced574294d03f51dcd1feb (patch) | |
tree | 2f6f8bf9327f4a314e18b2a72ba71b2057955fbb | |
parent | 42effcc464a890181356b884bb3ed026d7f115d9 (diff) |
scripts/plot-contourmap: Specify colours of contour lines
-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) |