如何在matplotlib中使用imshow绘制netcdf时增加对比度?

时间:2016-07-13 00:12:36

标签: python matplotlib imshow

使用imshow绘制数据(来自netcdf)时有没有办法增加对比度?在ArcMap中,可以使用 jsbin但我希望使用matplotlib解决方案。

from netCDF4 import Dataset
import matplotlib.pylab as plt
fnc = Dataset(ncfile, 'r')
lat = fnc.variables['latitude'][:]
lon = fnc.variables['longitude'][:]
level = fnc.variables['level'][:]
mydata = fnc.variables['Data'][0, 0, :, :]
plt.figure(figsize = (8, 4))
imgplot = plt.imshow(mydata, cmap = 'YlGn')
plt.colorbar()
plt.show

当前输出:

'stretch' function

我想要什么(' 2.5标准差拉伸'):

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试使用imshow函数的两个参数:

plt.imshow(mydata, cmap = 'YlGn, interpolation = 'sinc', vmin = 0, vmax = 0.1)

文档:

https://matplotlib.org/gallery/images_contours_and_fields/interpolation_methods.html https://matplotlib.org/api/_as_gen/matplotlib.pyplot.imshow.html