- 积分
- 754
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2013-1-13
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"
load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_csm.ncl"
begin
fin=addfile("/public/home/****/wrfout_d02_2009-08-06_18.nc","r")
hello=fin->U
fout="d02_08-06_18.dat"
system("/bin/rm -f "+fout)
setfileoption("bin","WriteByteOrder","BigEndian")
fbinrecwrite(fout,-1,hello) ;(fout,-1,fin->U)
end
像这样读取某个变量并转换成binary格式可行不? |
|