如何使用“上”和“下”值构建一致的离散色彩图/颜色条

时间:2019-01-25 00:09:34

标签: python matplotlib colorbar

一张图像值一千个字: https://www.harrisgeospatial.com/docs/html/images/colorbars.png

我想获得与右侧带有matplotlib相同的颜色条。 默认行为对“上部” /“下部”和相邻单元格使用相同的颜色...

谢谢您的帮助!

这是我的代码:

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.colors as colors

N = 100
X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]
Z1 = np.exp(-X**2 - Y**2)
Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2)
Z = (Z1 - Z2) * 2

fig, ax = plt.subplots(1, 1, figsize=(8, 8))

# even bounds gives a contour-like effect
bounds = np.linspace(-1, 1, 10)
norm = colors.BoundaryNorm(boundaries=bounds, ncolors=256)
pcm = ax.pcolormesh(X, Y, Z,
                    norm=norm,
                    cmap='RdBu_r')
fig.colorbar(pcm, ax=ax, extend='both', orientation='vertical')

2 个答案:

答案 0 :(得分:0)

如我的评论所建议,您可以使用

更改颜色图。

pcm = ax.pcolormesh(X, Y, Z, norm=norm, cmap='rainbow_r')

给出:

enter image description here

您可以定义自己的颜色图,如下所示:Create own colormap using matplotlib and plot color scale

答案 1 :(得分:0)

要使颜色图的“上方” /“下方”颜色采用该颜色图的第一种/最后一种颜色,但仍与色图范围内的最后一种颜色有所不同,您可以从颜色图中获得另一种颜色而不是在BoundaryNorm中有边界,并使用第一种和最后一种颜色作为“上” /“下”颜色的相应颜色。

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.colors as mcolors

N = 100
X, Y = np.mgrid[-3:3:complex(0, N), -2:2:complex(0, N)]
Z1 = np.exp(-X**2 - Y**2)
Z2 = np.exp(-(X - 1)**2 - (Y - 1)**2)
Z = (Z1 - Z2) * 2

fig, ax = plt.subplots(1, 1, figsize=(8, 8))

# even bounds gives a contour-like effect
bounds = np.linspace(-1, 1, 11)
# get one more color than bounds from colormap
colors = plt.get_cmap('RdBu_r')(np.linspace(0,1,len(bounds)+1))
# create colormap without the outmost colors
cmap = mcolors.ListedColormap(colors[1:-1])
# set upper/lower color
cmap.set_over(colors[-1])
cmap.set_under(colors[0])
# create norm from bounds
norm = mcolors.BoundaryNorm(boundaries=bounds, ncolors=len(bounds)-1)
pcm = ax.pcolormesh(X, Y, Z, norm=norm, cmap=cmap)
fig.colorbar(pcm, ax=ax, extend='both', orientation='vertical')

plt.show()

enter image description here