- 积分
- 2239
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-10-2
- 最后登录
- 1970-1-1

|
发表于 2017-7-13 09:00:12
|
显示全部楼层
数据读出的信息如下:
Source:
F:\全部数据\读nc数据\nc\_grib2netcdf-atls00-a562cefde8a29a7288fa0b8b7f9413f7-H5cayW.nc
Format:
64bit
Global Attributes:
Conventions = 'CF-1.6'
history = '2017-07-10 10:04:40 GMT by grib_to_netcdf-2.4.0: grib_to_netcdf /data/data02/scratch/_mars-atls01-98f536083ae965b31b0d04811be6f4c6-QbLc6B.grib -o /data/data04/scratch/_grib2netcdf-atls00-a562cefde8a29a7288fa0b8b7f9413f7-H5cayW.nc -utime'
Dimensions:
longitude = 2880
latitude = 1441
time = 31 (UNLIMITED)
Variables:
longitude
Size: 2880x1
Dimensions: longitude
Datatype: single
Attributes:
units = 'degrees_east'
long_name = 'longitude'
latitude
Size: 1441x1
Dimensions: latitude
Datatype: single
Attributes:
units = 'degrees_north'
long_name = 'latitude'
time
Size: 31x1
Dimensions: time
Datatype: int32
Attributes:
units = 'hours since 1900-01-01 00:00:0.0'
long_name = 'time'
calendar = 'gregorian'
u10
Size: 2880x1441x31
Dimensions: longitude,latitude,time
Datatype: int16
Attributes:
scale_factor = 0.00089
add_offset = -1.64
_FillValue = -3.28e+04
missing_value = -3.28e+04
units = 'm s**-1'
long_name = '10 metre U wind component'
其中 time 输出如下:
1008087
1008111
1008135
1008159
1008183
1008207
1008231
1008255
1008279
1008303
1008327
1008351
1008375
1008399
1008423
1008447
1008471
1008495
1008519
1008543
1008567
1008591
1008615
1008639
1008663
1008687
1008711
1008735
1008759
1008783
1008807
编写程序提取部分数据:
lon=[];lon=ncread(filename1,'longitude');
lat=[];lat=ncread(filename1,'latitude');
time1=[];time1=ncread(filename1,'time');
a=[];a=find(lon>=120 & lon<=180);
b=[];b=find(lat>=-30 & lat<=30); % a和b作为经度和纬度的指针
t=[];t=time1(1);
lon_num=[];lon_num=length(a);
lat_num=[];lat_num=length(b);
t_num=[];t_num=length(t);
B=[];B=ncread(filename1,'u10',[a(1) b(1) t(1)],[lon_num lat_num t_num]);
关于time总是出错,麻烦帮看看问题在哪里
|
|