- 积分
- 356
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-5-21
- 最后登录
- 1970-1-1
|
发表于 2014-8-1 09:05:42
|
显示全部楼层
目测数据应该是是NCEP/NCAR的位势高度数据吧?
此数据MATLAB读取程序
ncid = netcdf.open('F:\indian_ocean\NCEP_NCAR\hgt.mon.mean.nc');
levelid = netcdf.inqVarID(ncid,'level');
latid = netcdf.inqVarID(ncid,'lat');
lonid = netcdf.inqVarID(ncid,'lon');
hgtid = netcdf.inqVarID(ncid,'hgt');
timeid = netcdf.inqVarID(ncid,'time');
level = netcdf.getVar(ncid,levelid);
lat = netcdf.getVar(ncid,latid);
lon = netcdf.getVar(ncid,lonid);
hgt= netcdf.getVar(ncid,hgtid);
time= netcdf.getVar(ncid,timeid); |
|