/[MITgcm]/MITgcm/utils/matlab/rdmnc.m
ViewVC logotype

Annotation of /MITgcm/utils/matlab/rdmnc.m

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.6 - (hide annotations) (download)
Tue Feb 28 23:55:28 2006 UTC (18 years, 3 months ago) by enderton
Branch: MAIN
CVS Tags: checkpoint58d_post, checkpoint58c_post, checkpoint58b_post
Changes since 1.5: +10 -7 lines
Fixed a bug relating to recognizing z coordinate singleton dimension

1 enderton 1.6 function [S] = rdmnc(varargin)
2 enderton 1.3
3     % Usage:
4     % S=RDMNC(FILE1,FILE2,...)
5     % S=RDMNC(FILE1,...,ITER)
6     % S=RDMNC(FILE1,...,'VAR1','VAR2',...)
7     % S=RDMNC(FILE1,...,'VAR1','VAR2',...,ITER)
8     %
9     % Input:
10     % FILE1 Either a single file name (e.g. 'state.nc') or a wild-card
11     % strings expanding to a group of file names (e.g. 'state.*.nc').
12     % There are no assumptions about suffices (e.g. 'state.*' works).
13     % VAR1 Model variable names as written in the MNC/netcdf file.
14     % ITER Vector of iterations in the MNC/netcdf files, not model time.
15 adcroft 1.1 %
16 enderton 1.3 % Output:
17     % S Structure with fields corresponding to 'VAR1', 'VAR2', ...
18 adcroft 1.1 %
19 enderton 1.3 % Description:
20     % This function is a rudimentary wrapper for joining and reading netcdf
21     % files produced by MITgcm. It does not give the same flexibility as
22     % opening the netcdf files directly using netcdf(), but is useful for
23     % quick loading of entire model fields which are distributed in multiple
24     % netcdf files.
25 adcroft 1.1 %
26 enderton 1.3 % Example:
27     % >> S=rdmnd('state.*','XC','YC','T');
28     % >> imagesc( S.XC, S.YC, S.T(:,:,1)' );
29 adcroft 1.1 %
30 enderton 1.4 % Author: Alistair Adcroft
31 enderton 1.3 % Modifications: Daniel Enderton
32 adcroft 1.1
33 enderton 1.3 % Initializations
34 adcroft 1.1 file={};
35 enderton 1.3 filepaths={};
36 adcroft 1.1 files={};
37     varlist={};
38 enderton 1.3 iters=[];
39 adcroft 1.1
40     % Process function arguments
41     for iarg=1:nargin;
42 enderton 1.3 arg=varargin{iarg};
43     if ischar(arg)
44     if isempty(dir(char(arg)))
45     varlist{end+1}=arg;
46     else
47     file{end+1}=arg;
48     end
49     else
50     if isempty(iters)
51     iters=arg;
52     else
53     error(['The only allowed numeric argument is iterations',...
54     ' to read in as a vector for the last arguement']);
55     end
56     end
57 adcroft 1.1 end
58    
59     % Create list of filenames
60     for eachfile=file
61 enderton 1.3 filepathtemp=eachfile{:};
62     indecies = find(filepathtemp=='/');
63     if ~isempty(indecies)
64     filepathtemp = filepathtemp(1:indecies(end));
65     else
66     filepathtemp = '';
67     end
68     expandedEachFile=dir(char(eachfile{1}));
69     for i=1:size(expandedEachFile,1);
70     if expandedEachFile(i).isdir==0
71     files{end+1}=expandedEachFile(i).name;
72     filepaths{end+1}=filepathtemp;
73     end
74     end
75 adcroft 1.1 end
76    
77    
78 enderton 1.3 % If iterations unspecified, open all the files and make list of all the
79     % iterations that appear, use this iterations list for data extraction.
80     if isempty(iters)
81     iters = [];
82     for ieachfile=1:length(files)
83     eachfile = [filepaths{ieachfile},files{ieachfile}];
84     nc=netcdf(char(eachfile),'read');
85 enderton 1.4 nciters = nc{'iter'}(:);
86     if isempty(nciters), nciters = nc{'T'}(:); end
87     iters = [iters,nciters];
88 enderton 1.3 close(nc);
89     end
90     iters = unique(iters);
91 adcroft 1.1 end
92    
93 enderton 1.3 % Cycle through files for data extraction.
94     S.attributes=[];
95     for ieachfile=1:length(files)
96     eachfile = [filepaths{ieachfile},files{ieachfile}];
97     nc=netcdf(char(eachfile),'read');
98     S=rdmnc_local(nc,varlist,iters,S);
99     close(nc);
100 adcroft 1.1 end
101    
102 enderton 1.5
103 enderton 1.3 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
104     % Local functions %
105     %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
106 adcroft 1.1
107 enderton 1.3 function [A] = read_att(nc);
108     allatt=ncnames(att(nc));
109     if ~isempty(allatt)
110     for attr=allatt;
111     A.(char(attr))=nc.(char(attr))(:);
112     end
113     else
114     A = 'none';
115     end
116 adcroft 1.1
117 enderton 1.3 function [i0,j0,fn] = findTileOffset(S);
118     fn=0;
119     if isfield(S,'attributes') & isfield(S.attributes,'global')
120     G=S.attributes.global;
121     tn=G.tile_number;
122     snx=G.sNx; sny=G.sNy; nsx=G.nSx; nsy=G.nSy; npx=G.nPx; npy=G.nPy;
123     ntx=nsx*npx;nty=nsy*npy;
124     gbi=mod(tn-1,ntx); gbj=(tn-gbi-1)/ntx;
125     i0=snx*gbi; j0=sny*gbj;
126     if isfield(S.attributes.global,'exch2_myFace')
127     fn=G.exch2_myFace;
128     end
129     else
130     i0=0;j0=0;
131     end
132     %[snx,sny,nsx,nsy,npx,npy,ntx,nty,i0,j0,fn];
133    
134     function [S] = rdmnc_local(nc,varlist,iters,S)
135    
136     fiter = nc{'iter'}(:); % File iterations present
137 enderton 1.4 if isempty(fiter), fiter = nc{'T'}(:); end
138 enderton 1.3 [fii,dii] = ismember(fiter,iters); fii = find(fii); % File iteration index
139     dii = dii(find(dii ~= 0)); % Data interation index
140 enderton 1.4
141 enderton 1.3 % No variables specified? Default to all
142     if isempty(varlist), varlist=ncnames(var(nc)); end
143 enderton 1.4
144 enderton 1.3 % Attributes for structure
145     if iters>0; S.iters_read_from_file=iters; end
146     S.attributes.global=read_att(nc);
147 enderton 1.4
148 enderton 1.3 % Read variable data
149 enderton 1.4 for ivar=1:size(varlist,2)
150    
151 enderton 1.3 cvar=char(varlist{ivar});
152     if isempty(nc{cvar})
153     disp(['No such variable ''',cvar,''' in MNC file ',name(nc)]);
154     continue
155     end
156    
157 enderton 1.6 dims = ncnames(dim(nc{cvar})); % Dimensions
158 enderton 1.3
159 enderton 1.6 adj = 0;
160     if dims{1} == 'T'
161 enderton 1.3 if isempty(find(fii)), return, end
162 enderton 1.6 tmpdata = nc{cvar}(find(fii),:);
163     if ismember('Zd000001' ,dims), adj = adj - 1; end
164     if ismember('Zmd000001',dims), adj = adj - 1; end
165     it = length(dims) + adj;
166 enderton 1.3 else
167 enderton 1.6 tmpdata = nc{cvar}(:);
168 enderton 1.3 it = 0;
169     end
170 enderton 1.4
171 enderton 1.3 tmpdata=squeeze(permute(tmpdata,[9:-1:1]));
172     [ni nj nk nm nn no np]=size(tmpdata);
173    
174     [i0,j0,fn]=findTileOffset(S);
175     cdim=dims{end}; if cdim(1)~='X'; i0=0; end
176     cdim=dims{end}; if cdim(1)=='Y'; i0=j0; j0=0; end
177     if length(dims)>1;
178     cdim=dims{end-1}; if cdim(1)~='Y'; j0=0; end
179     else
180     j0=0;
181     end
182    
183     Sstr = '';
184     for istr = 1:7
185     if istr == it, Sstr = [Sstr,'dii,'];
186     elseif istr == 1, Sstr = [Sstr,'i0+(1:ni),'];
187     elseif istr == 2, Sstr = [Sstr,'j0+(1:nj),'];
188     elseif istr == 3, Sstr = [Sstr,'(1:nk),'];
189     elseif istr == 4, Sstr = [Sstr,'(1:nm),'];
190     elseif istr == 5, Sstr = [Sstr,'(1:nn),'];
191     elseif istr == 6, Sstr = [Sstr,'(1:no),'];
192     elseif istr == 7, Sstr = [Sstr,'(1:np),'];
193     else, error('Can''t handle this many dimensions!');
194     end
195     end
196 enderton 1.6
197 enderton 1.3 eval(['S.(cvar)(',Sstr(1:end-1),')=tmpdata;'])
198     %S.(cvar)(i0+(1:ni),j0+(1:nj),(1:nk),(1:nm),(1:nn),(1:no),(1:np))=tmpdata;
199     S.attributes.(cvar)=read_att(nc{cvar});
200     end
201 adcroft 1.1
202     if isempty(S)
203 enderton 1.3 error('Something didn''t work!!!');
204 adcroft 1.1 end

  ViewVC Help
Powered by ViewVC 1.1.22