- 积分
- 4047
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2013-11-12
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 悠然一梦123 于 2016-12-8 20:40 编辑
绘制E_PM_10,出现下列错误提示
fatal:["Execute.c":8128]:Execute: Error occurred at or near line 13 in file E_PM_10。
脚本如下:
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"
begin
a = addfile("/WRF/WRFV3/test/em_real/wrfchemi_00z_d02","r")
wks = gsn_open_wks(pdf,"E1")
ter = a->E_PM_10(0,0,:,:)
ter!0="lat"
ter&lat=E_PM_10&lat(错误提示行)
ter!1="lon"
ter&lon=E_PM_10&lon
ter&lat@units = "degrees_north"
ter&lon@units = "degrees_east"
res = True
res@cnFillOn = True
res@cnLinesOn = False
res@cnLevelSelectionMode = "ManualLevels"
res@cnMinLevelValF = 0
res@cnMaxLevelValF = 0.5
res@cnLevelSpacingF = 0.05
res@mpDataSetName = "Earth..4"
res@mpDataBaseVersion = "MediumRes"
res@mpAreaMaskingOn = True
res@mpMaskAreaSpecifiers = (/"China"/)
res@mpOutlineSpecifiers = (/"China","China:Provinces"/)
plot = gsn_csm_contour_map(wks,ter,res)
end
E_PM_10变量如下:
float E_PM_10(Time, emissions_zdim, south_north, west_east) ;
E_PM_10:FieldType = 104 ;
E_PM_10:MemoryOrder = "XYZ" ;
E_PM_10:description = "EMISSIONS" ;
E_PM_10:units = "mol km^-2 hr^-1" ;
E_PM_10:stagger = "" ;
E_PM_10:coordinates = "XLONG XLAT" ;
|
|