フィルターのクリア

how can I read multiple netcdf file using ncread in matlab?

33 ビュー (過去 30 日間)
Deep Shah
Deep Shah 2017 年 9 月 2 日
編集済み: Walter Roberson 2023 年 6 月 14 日
I have 6000 files netcdf files.In each file there are four variables like latitude, longitude,precipitation and time.
I made a variable
filename=dir(location of folder in which files are)
now I want to read data from each 6000 files for every variable I write
for j=3:length(filename)
a=ncread('\folder',filename(j).name,variable);
end
but files are not being read. can u tell me how can I read these files?
the format of file is 3B42_Daily.20020315.7.nc4
  2 件のコメント
KSSV
KSSV 2017 年 9 月 2 日
Are Looking the variable names in all the files same?
Deep Shah
Deep Shah 2017 年 9 月 2 日
yes

サインインしてコメントする。

回答 (2 件)

Walter Roberson
Walter Roberson 2017 年 9 月 2 日
ncvars = {'latitude', 'longitude', 'precipitation', 'time'};
projectdir = 'C:\some\location';
dinfo = dir( fullfile(projectdir, '*.nc4') );
num_files = length(dinfo);
filenames = fullfile( projectdir, {dinfo.name} );
lats = cell(num_files, 1);
lons = cell{num_files, 1);
precips = cell(num_files, 1);
times = cell(num_files, 1);
for K = 1 : num_files
this_file = filenames{K};
lats{K} = ncread(this_file, ncvars{1});
lons{K} = ncread(this_file, ncvars{2});
precips{K} = ncread(this_file, ncvars{3});
times{K} = ncread(this_file, ncvars{4});
end
  10 件のコメント
Tsehaye Negash
Tsehaye Negash 2023 年 6 月 14 日
This program is not working.
Walter Roberson
Walter Roberson 2023 年 6 月 14 日
What error message are you encountering?

サインインしてコメントする。


Dushantha Sandaruwan WIJENDRA NAIDHELAGE
編集済み: Walter Roberson 2023 年 6 月 14 日
This code can be used to substract the specific region from the set of netcdf files
clear all;clc
av_file=dir('*.nc');
ncdisp(av_file(1).name);
lon1=ncread(av_file(1).name,'lon');
lat1=ncread(av_file(1).name,'lat');
% temp1=zeros(141,121,365);
b=[1982:2021];
count=0;
for i=1:40
a=['sst.day.mean.',num2str(b(i)),'.nc'];
sst0=double(ncread(a,'sst'));
a1=find(lon1>=40&lon1<=110);
b1=find(lat1>=-10&lat1<=30);
lon_ind=lon1(a1);lat_ind=lat1(b1);
arb=sst0(a1,b1,:);
[~,~,nt]=size(lhflx1);
sst_final(:,:,count+1:count+nt)=arb(:,:,:);
count=count+nt;
end
  1 件のコメント
DGM
DGM 2023 年 2 月 21 日
How is this an answer to the question?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeNetCDF についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by