- 积分
- 9447
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2013-4-23
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 aa22556688 于 2015-5-16 21:10 编辑
画多panel为什么只显示出一个,求高手指点迷津,不仅感激!
wks = gsn_open_wks("ps" ,"polar")
gsn_define_colormap(wks,"wgne15")
res = True
res@gsnDraw = False ;加上这两句
res@gsnFrame = False
res@gsnPolar = "NH"
res@cnFillOn = True ; turns on the color
res@mpFillOn = False ; turns off continent gray
res@cnLinesOn = False ; turn off contour lines
res@mpMinLatF = 40
res@gsnSpreadColors = True ; use full colormap
res@gsnSpreadColorStart = 2
res@gsnSpreadColorEnd = -3
plot=new(2,graphic)
plot(0) = gsn_csm_contour_map_polar(wks,ssta(1739,:,:),res)
plot(1) = gsn_csm_contour_map_polar(wks,ssta(1738,:,:),res)
pres = True
pres@gsnPanelYWhiteSpacePercent = 5
pres@gsnMaximize = True
gsn_panel(wks,plot,(/2,1/),pres)
end
|
|