- 积分
- 32410
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-12-11
- 最后登录
- 1970-1-1
|
NCL
系统平台: |
|
问题截图: |
- |
问题概况: |
不知道getvalue具体怎么获得属性值
属性值的分类太多了,具体的命名是什么呢 |
我看过提问的智慧: |
看过 |
自己思考时长(天): |
1 |
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
https://www.ncl.ucar.edu/Applications/panel.shtml
利用例子panel29.ncl获取创建labelbar
undef("createLabelBar")
function createLabelBar(wks: graphic, plt:graphic, lbres:logical)
begin
getvalues plt@contour ; object from which info extracted
"cnFillColors" : fill_colors ; get the colors used
"lbLabelStrings" : lbstrings ; get the labels used
end getvalues
lbres@lbFillColors = fill_colors ; associate with input lnres argument
lbid = gsn_create_labelbar(wks,dimsizes(lbstrings)+1,lbstrings,lbres)
return(lbid)
end
但是我画的是流线图对应的属性怎么获取呢
|
|