- 积分
- 128
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2018-3-8
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
begin
a = addfile("/usr/test/QLwrfout/xiajiwrfout_d02_2017-08-23_08:00:00.nc","r")
diri="/home/syrus/桌面/"
fname = "shanxijiangshui.txt"
lines = asciiread(diri+fname,-1,"string")
rain_exp1 = wrf_user_getvar(a,"RAINNC",-1)
rain_con1 = wrf_user_getvar(a,"RAINC",-1)
rain_tot1 = rain_exp1 + rain_con1
times = wrf_user_getvar(a,"times",-1)
xlat=wrf_user_getvar(a,"XLAT",0)
xlon=wrf_user_getvar(a,"XLONG",0)
lat= tofloat(str_get_field(lines(1:),1," "))
lon= tofloat(str_get_field(lines(1:),2," "))
locationij=wrf_user_ll_to_ij(a,lon,lat,True);
;print(locationij)
lonlat=wrf_user_ij_to_ll(a,locationij(0),locationij(1),True);
print(lonlat)
;xx=xlat(locationij(1)-1,locationij(0)-1)
;print(xx)
pre=rain_tot1(:,locationij(1)-1,locationij(0)-1)
print(pre)
asciiwrite("test.txt",pre)
end
为什么出来后全是
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
9.96921e+36
|
|