python定义colormap的范围

时间:2017-06-13 06:12:25

标签: python matplotlib range colorbar contourf

我制作了一个轮廓图,默认情况下,它设置了-150到250范围内的八种不同颜色。 但我想增加颜色的数量,以便增加颜色条的分辨率。

我尝试了一些东西(例如下面的代码示例中),但没有任何效果。那么也许有人可以帮我解决这个问题?

以下是代码示例:

m2 = Basemap(projection='kav7',lon_0=0)
m2.drawcoastlines(linewidth=1.)
m2.drawparallels(np.arange(-90.,99.,30.))
m2.drawmeridians(np.arange(-180.,180.,60.))

v = np.linspace(-150., 250., 10., endpoint=True)
cs = m2.contourf(lon,lat,sshf_mean,latlon=True,cmap=cm.jet)
cbar = m2.colorbar(cs,location='bottom',pad="5%",ticks=v)

所以最后应该有40种不同颜色的颜色条而不是8种颜色。

非常感谢!

1 个答案:

答案 0 :(得分:1)

contourf有两种设置级别数量的选项;您可以手动设置它们,也可以让matplotlib选择N级别。例如:

import matplotlib.pylab as pl
import numpy as np

x = np.arange(10)
y = np.arange(10)
values = np.random.random(100).reshape((10,10))

pl.figure()
pl.subplot(131)
pl.contourf(x, y, values)
pl.colorbar()

pl.subplot(132)
# Automatically chose 100 levels:
pl.contourf(x, y, values, 100)
pl.colorbar()

pl.subplot(133)
# Manually specify 20 levels:
levels = np.linspace(0,1,20)
pl.contourf(x, y, values, levels)
pl.colorbar()

产地:

enter image description here