- 积分
- 1324
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-4-27
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
用以下程序读取cloudsat数据时,读取2个量RVOD_ice_num_conc_uncertainty和Longitude,但老是提示
% Execution halted at: READ_CS_2B_CPR 36 D:\idl\2\read_CS_2B_CPR.pro
% $MAIN$
是什么原因呢?请各位大神多多指教
pro read_CS_2B_CPR
lon=fltarr(37081)
lat=fltarr(37081)
Ns=intarr(37081)
r0=fltarr(37081)
bs=239.83
;RayHeader_RangeBinSize
Pt0=1814.9043
;Averaged transmit power,W
C=fltarr(37081)
Pr=fltarr(125,37081)
Z=fltarr(125,37081)
H=fltarr(125,37081)
hdfid=hdf_sd_start('d:\idl\2\2008116040946_10599_CS_2B-CWC-RVOD_GRANULE_P_R04_E02.hdf')
index_rvo=hdf_sd_nametoindex(hdfid,'RVOD_ice_num_conc_uncertainty')
index_lon=hdf_sd_nametoindex(hdfid,'Longitude')
varid_rvo=hdf_sd_select(hdfid,index_rvo)
varid_lon=hdf_sd_select(hdfid,index_lon)
hdf_sd_getdata,varid_rvo,Pr,start=[0,0],count=[125,37081],stride=[1,1]
hdf_sd_getdata,varid_lon,lon,start=[0,0],count=[125,37081],stride=[1,1]
hdf_sd_endaccess,varid_rvo
hdf_sd_endaccess,varid_lon
hdf_sd_end,hdfid
hdf_close,fid
end
|
|