- 积分
- 6349
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-9-26
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
参考大神又是那隻貓 如何用rgb自定义colormap
http://bbs.06climate.com/forum.php?mod=viewthread&tid=18395&fromuid=41850
(出处: 气象家园)
和NCL绘图参考手册,做了自己的colormap,但是ncl是在学校大型机上用,因此无法把rgb.txt放到ncl程序目录下,没权限;
又按照手册写在脚本里,如下:
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/contributed.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/wrf/WRFUserARW.ncl"
dir = "/nuist/p/work/m/wrf/"
filename = "wrfout_d01_2010-08-06_18:00:00.nc"
a = addfile(dir+filename,"r")
wks = gsn_open_wks("png","wrf_contour_map") ; "ps", "pdf", "png"
cmap=(/(/255.,255.,255./),(/255.,255.,255./),(/.255,.75,.0/),\
(/.252,.162,.9/),(/.254,.209,.32/),(/.253,.249,.19/),\
(/.232,.243,.159/),(/.254,.254,.254/)/)
gsn_define_colormap(wks,"cmap")
但是,运行报错,如下:
请教:在不能把rgb.txt放到ncl程序目录下,该如何设置colormap??初学ncl,希望大神给点帮助啊!!!
|
|