- 积分
- 972
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2020-2-28
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
本帖最后由 樱花阿喵 于 2021-3-8 17:38 编辑
文件pr_Amon_BCC-CSM2-MR_historical_1x1regrid_1961-2014.DJF.mean.nc和pr_monthly_CN05.1_1x1regrid_1961-2016.DJF.mean.nc分别是青藏高原冬季降水的模式模拟值和观测值,我想计算1995-2014年的降水距平百分率。但出现如下错误:Data Request Error: Invalid grid coordinates
World coordinates convert to non-integer grid coordinates
Variable = pr.2 Dimension = 3
Operation Error: Error from ave function
Error ocurred at column 1
DEFINE error: Invalid expression.
请各位帮帮忙,已经困在这好几天了。
第一个nc文件需要用ctl打开,它的ctl为:
DSET E:\prr\pr\historical\pr_Amon_BCC-CSM2-MR_historical_1x1regrid_1961-2014.DJF.mean.nc
dtype netcdf
TITLE MEAN PRECIPITATION
undef 1e+20
OPTIONS 365_day_calendar
xdef 51 linear 60 1
ydef 31 linear 20 1
zdef 1 linear 0 1
tdef 54 linear 12Z16JUL1961 12mo
vars 1
pr=>pr 0 t,y,x Precipitation
endvars
计算距平百分率的gs为:
'reinit'
'open E:\prr\pr\historical\pr_Amon_BCC-CSM2-MR_historical_1x1regrid_1961-2014.DJF.mean.ctl'
'set lon 70 110'
'set lat 25 40'
'define aa=ave(pr,t=34,t=53)'
'sdfopen E:\prr\pr\observe\pr_monthly_CN05.1_1x1regrid_1961-2016.DJF.mean.nc'
'set lon 70 110'
'set lat 25 40'
'define bb=ave(pr.2,t=34,t=53)'
'define c=(aa-bb)/bb'
'set gxout shaded'
'd c'
;
|
|