- 积分
- 15746
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2015-3-8
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
res=True
res@gsnDraw = False
res@gsnFrame=False
res@mpFillOn = False ; Turn off map fill.
res@mpMinLatF = min_lat
res@mpMaxLatF = max_lat
res@mpMinLonF = min_lon
res@mpMaxLonF = max_lon
res@cnFillPalette = "BlueYellowRed"
res@cnInfoLabelOn = False
res@cnLinesOn = False ; 关闭等值线线条
res@lbBoxLinesOn = False ; 关闭lbar box 线条
res@lbLabelBarOn = False
res@cnFillOn = True
plot = new(2,graphic)
plot(0) = gsn_csm_contour(wks,lhaon3,res)
plot(1) = gsn_csm_contour(wks,lhaon4,res)
pres = True
pres@gsnPanelRowSpec = True ;tell panel what order to plt
pres@gsnPanelLabelBar = True
;pres@txString = "A common title"
pres@gsnPanelFigureStrings= (/"a)","b)"/) ; add strings to panel
gsn_panel(wks,plot,(/1,1/),pres)
frame(wks)
end
我的脚本一部分:但是出图没有地图,而且我设置的经纬度也没显示出来。下面是NCL出现的警告,请问大家这是为什么呢????
warning:mpMinLonF is not a valid resource in lhpanel_contour at this time
warning:mpMaxLonF is not a valid resource in lhpanel_contour at this time
warning:mpMinLatF is not a valid resource in lhpanel_contour at this time
warning:mpMaxLatF is not a valid resource in lhpanel_contour at this time
warning:mpFillOn is not a valid resource in lhpanel_contour at this time
warning:mpMinLonF is not a valid resource in lhpanel_contour at this time
warning:mpMaxLonF is not a valid resource in lhpanel_contour at this time
warning:mpMinLatF is not a valid resource in lhpanel_contour at this time
warning:mpMaxLatF is not a valid resource in lhpanel_contour at this time
warning:mpFillOn is not a valid resource in lhpanel_contour at this time
|
|