- 积分
- 808
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2016-10-25
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x

begin
;open file
a = addfile("~/shuju/Metgrid/met_em.d01.2011-08-01_06:00:00.nc","r")
;open workstation
wks = gsn_open_wks("x11","hgtwrf2")
res = True
res@MainTitle = "ABC"
res@NoHeaderFooter = True
plres = True
mpres = True
mpres@ContourParameters = (/0,5600,100/)
mpres@mpGeophysicalLineColor = "Black"
mpres@mpNationalLineColor = "Black"
;----get variable
ter = a->HGT_M(0,:,:)
opts = res
opts@cnFillOn = True
opts@cnFillColor = (/278,109,100/)
opts@NoHeaderFooter = True
opts@InitTime = True
opts@lbTitleOn = False
opts@FieldTitle = "heightmap"
plot = wrf_contour(a,wks,ter,opts)
contour = wrf_map_overlays(a,wks,(/plot/),plres,mpres)
end
|
|