- 积分
- 55955
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-6-21
- 最后登录
- 1970-1-1
|
发表于 2021-10-26 16:51:03
|
显示全部楼层
可以将第一个颜色设为白色 [255,255,255], 或者颜色第四个参数alpha设为 0 (全透明)。参考下面的脚本:
- fn = os.path.join(migl.get_sample_folder(), 'GrADS', 'model.ctl')
- f = addfile(fn)
- ps = f['PS'][0,'10:60:8','60:140:10']
- #Plot
- geoshow('country', edgecolor=(0,0,255))
- levs = arange(600, 1051, 30)
- cols = makecolors(len(levs)+1)
- cols[0] = [255,255,255,0]
- layer = contourf(ps, levs, colors=cols)
- title('Pressure')
- colorbar(layer, orientation='horizontal', extendrect=False, shrink=0.8,
- aspect=20, label='hPa', labelloc='right')
|
|