aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2019-02-08 16:33:07 +0100
committerThomas White <taw@physics.org>2019-02-08 16:33:07 +0100
commitaa7ca6edfe2203692aced574294d03f51dcd1feb (patch)
tree2f6f8bf9327f4a314e18b2a72ba71b2057955fbb /scripts
parent42effcc464a890181356b884bb3ed026d7f115d9 (diff)
scripts/plot-contourmap: Specify colours of contour lines
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/plot-contourmap2
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)