Skip to content

Commit

Permalink
changed final normalisation of spherical modes and plotting colors
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlouden committed Oct 4, 2017
1 parent 45724bf commit 01103f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spiderman/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def plot_quad(spider_params,min_temp=False,max_temp=False,temp_map=False,min_bri
if temp_map == True:
data = [np.linspace(zero_temp,max_temp,1000)]*2
else:
data = [np.linspace(min_temp / (0.5*(min_temp + max_temp)),max_temp / (0.5*(min_temp + max_temp)),1000)]*2
data = [np.linspace(min_temp/max_temp,max_temp/max_temp,1000)]*2
fake, fake_ax = plt.subplots()
mycax = fake_ax.imshow(data, interpolation='none', cmap=mycmap)
plt.close(fake)
Expand Down

0 comments on commit 01103f5

Please sign in to comment.