source: trunk/src/struct2nc.m @ 1194

Last change on this file since 1194 was 1194, checked in by sommeria, 8 days ago

several bugs repaired

File size: 12.5 KB
Line 
1% 'struct2nc': create a netcdf file from a Matlab structure
2%---------------------------------------------------------------------
3% errormsg=struct2nc(flname,Data,action)
4%
5% OUTPUT:
6% errormsg=error message, =[]: default, no error
7%
8% INPUT:
9% flname: name of the netcdf file to create (must end with the extension '.nc')
10%  Data: structure containing all the information of the netcdf file (or netcdf object)
11%           with fields:
12%       (optional) .ListGlobalAttribute: list (cell array of character strings) of the names of the global attributes Att_1, Att_2...
13%                  .Att_1,Att_2...: values of the global attributes
14%      (requested) .ListVarName: list of the variable names Var_1, Var_2....(cell array of character strings).
15%      (requested) .VarDimName: list of dimension names for each element of .ListVarName (cell array of string cells)
16%       (optional) .VarAttribute: cell array of structures of the form .VarAttribute{ivar}.key=value, defining an attribute key name and value for the variable #ivar
17%      (requested) .Var1, .Var2....: variables (Matlab arrays) with names listed in .ListVarName
18% action: if ='keep_open', don't close the file after creation, keep it open for further data input
19
20%=======================================================================
21% Copyright 2008-2024, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
22%   http://www.legi.grenoble-inp.fr
23%   Joel.Sommeria - Joel.Sommeria (A) univ-grenoble-alpes.fr
24%
25%     This file is part of the toolbox UVMAT.
26%
27%     UVMAT is free software; you can redistribute it and/or modify
28%     it under the terms of the GNU General Public License as published
29%     by the Free Software Foundation; either version 2 of the license,
30%     or (at your option) any later version.
31%
32%     UVMAT is distributed in the hope that it will be useful,
33%     but WITHOUT ANY WARRANTY; without even the implied warranty of
34%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
35%     GNU General Public License (see LICENSE.txt) for more details.
36%=======================================================================
37
38function [errormsg,nc]=struct2nc(flname,Data,action,ListDimName,DimValue,VarDimIndex)
39nc=[];
40errormsg='';
41if ~ischar(flname)
42    errormsg='invalid input for the netcf file name';
43    return
44end
45FilePath=fileparts(flname);
46if ~strcmp(FilePath,'') && ~exist(FilePath,'dir')
47    errormsg=['directory ' FilePath ' needs to be created'];
48    return
49end
50if ~exist('Data','var')
51     errormsg='no data  input for the netcdf file';
52    return
53end
54
55%% check the validity of the input field structure
56if ~ (exist('action','var') && strcmp(action,'keep_open'))
57    [errormsg,ListDimName,DimValue,VarDimIndex]=check_field_structure(Data);
58    if ~isempty(errormsg)
59        errormsg=['error in struct2nc:invalid input structure_' errormsg];
60        return
61    end
62end
63ListVarName=Data.ListVarName;
64
65%% create the netcdf file with name flname in format NETCDF4
66cmode = netcdf.getConstant('NETCDF4');
67cmode = bitor(cmode, netcdf.getConstant('CLASSIC_MODEL'));
68cmode = bitor(cmode, netcdf.getConstant('CLOBBER'));
69nc = netcdf.create(flname, cmode);
70netcdf.setFill(nc,'NOFILL')
71
72%% write global constants
73if isfield(Data,'ListGlobalAttribute')
74    keys=Data.ListGlobalAttribute;
75    for iattr=1:length(keys)
76        if isfield(Data,keys{iattr})
77             testvar=0;
78            for ivar=1:length(ListVarName)% eliminate possible global attributes with the same name as a variable
79                if isequal(ListVarName{ivar}, keys{iattr})
80                    testvar=1;
81                    break
82                end
83            end
84            if ~testvar               
85                cte=Data.(keys{iattr});
86                if (ischar(cte) ||isnumeric(cte)) &&  ~isempty(cte)%&& ~isequal(cte,'')
87                    %write constant only if it is numeric or char string, and not empty
88                    netcdf.putAtt(nc,netcdf.getConstant('NC_GLOBAL'),keys{iattr},cte)
89                end
90            end
91        end
92    end
93end
94
95%% create the dimensions
96dimid=zeros(1,length(ListDimName));
97for idim=1:length(ListDimName)
98     dimid(idim) = netcdf.defDim(nc,ListDimName{idim},DimValue(idim));
99end
100VarAttribute={}; %default
101testattr=0;
102if isfield(Data,'VarAttribute')
103    VarAttribute=Data.VarAttribute;
104    testattr=1;
105end
106
107
108%% create the variables
109varid=nan(1,length(Data.ListVarName));
110VarClass=cell(1,length(ListVarName));
111for ivar=1:length(ListVarName)
112    if isfield(Data,ListVarName{ivar})
113        VarClass{ivar}=class(Data.(ListVarName{ivar}));
114        VarType='';
115        switch VarClass{ivar}
116            case {'single','double'}
117                VarType='nc_float'; % store all floating reals as single
118            case {'int8','uint8','int16','uint16','int32','uint32','int64','uint64'}
119                VarType='nc_int';
120            case 'logical'
121                VarType='nc_int';
122                Data.(ListVarName{ivar})=uint8(Data.(ListVarName{ivar}));
123        end
124        if ~isempty(VarType)
125            varid(ivar)=netcdf.defVar(nc,ListVarName{ivar},VarType,dimid(VarDimIndex{ivar}));%define variable
126        end
127    end
128end
129
130%% write variable attributes
131if testattr
132    for ivar=1:min(numel(VarAttribute),numel(ListVarName)) 
133        if isstruct(VarAttribute{ivar}) && ~isnan(varid(ivar))
134            attr_names=fields(VarAttribute{ivar});
135            for iattr=1:length(attr_names)
136                attr_val=VarAttribute{ivar}.(attr_names{iattr});
137                if ~isempty(attr_names{iattr})&& ~isempty(attr_val)&&~iscell(attr_val)
138                    netcdf.putAtt(nc,varid(ivar),attr_names{iattr},attr_val);
139                end
140            end
141        end
142    end
143end
144netcdf.endDef(nc); %put in data mode
145
146%% fill the variables with input data except in mode 'keep_open' (variables will be filled later)
147if ~(exist('action','var') && strcmp(action,'keep_open'))
148    for ivar=1:length(ListVarName)
149        if ~isnan(varid(ivar))
150            VarVal=Data.(ListVarName{ivar});
151            if strcmp(VarClass{ivar},'single')
152                VarVal=single(VarVal);
153            end
154            %varval=values of the current variable
155            VarDimName=Data.VarDimName{ivar};
156            if ischar(VarDimName)
157                VarDimName={VarDimName};
158            end
159            siz=size(VarVal);
160            testrange=(numel(VarDimName)==1 && strcmp(VarDimName{1},ListVarName{ivar}) && numel(VarVal)==2);% case of a coordinate defined on a regular mesh by the first and last values.
161            testline=isequal(length(siz),2) && isequal(siz(1),1)&& isequal(siz(2), DimValue(VarDimIndex{ivar}));%matlab vector
162            %testcolumn=isequal(length(siz),2) && isequal(siz(1), DimValue(VarDimIndex{ivar}))&& isequal(siz(2),1);%matlab column vector
163            if testline || testrange
164                if testrange
165                    VarVal=linspace(VarVal(1),VarVal(2),DimValue(VarDimIndex{ivar}));% restitute the whole array of coordinate values from the first and last values
166                end
167                netcdf.putVar(nc,varid(ivar), VarVal');
168            else
169                netcdf.putVar(nc,varid(ivar), VarVal);
170            end
171        end
172    end
173end
174if ~ (exist('action','var') && strcmp(action,'keep_open'))
175 netcdf.close(nc)
176[success,errormsg] = fileattrib(flname ,'+w');% allow writing access for the group of users
177end
178%'check_field_structure': check the validity of the field struture representation consistant with the netcdf format
179%------------------------------------------------------------------------
180% [errormsg,ListDimName,DimValue,VarDimIndex]=check_field_structure(Data)
181%
182% OUTPUT:
183% errormsg: error message which is not empty when the input structure does not have the right form
184% ListDimName: list of dimension names (cell array of cahr strings)
185% DimValue: list of dimension values (numerical array with the same dimension as ListDimName)
186% VarDimIndex: cell array of dimension index (in the list ListDimName) for each element of Data.ListVarName
187%
188% INPUT:
189% Data:   structure containing
190%         (optional) .ListGlobalAttribute: cell listing the names of the global attributes
191%                    .Att_1,Att_2... : values of the global attributes
192%         (requested)  .ListVarName: list of variable names to select (cell array of  char strings {'VarName1', 'VarName2',...} )
193%         (requested)  .VarDimName: list of dimension names for each element of .ListVarName (cell array of string cells)                         
194%         (requested) .Var1, .Var2....: variables (Matlab arrays) with names listed in .ListVarName
195
196
197function [errormsg,ListDimName,DimValue,VarDimIndex]=check_field_structure(Data)
198errormsg='';
199ListDimName={};
200DimValue=[]; %default
201VarDimIndex={};
202if ~isstruct(Data)
203    errormsg='input field is not a structure';
204    return
205end
206if isfield(Data,'ListVarName') && iscell(Data.ListVarName)
207    nbfield=numel(Data.ListVarName);
208else
209    errormsg='input field does not contain the cell array of variable names .ListVarName';
210    return
211end
212%check dimension names
213if (isfield(Data,'VarDimName') && iscell(Data.VarDimName))
214    if  numel(Data.VarDimName)~=nbfield
215       errormsg=' .ListVarName and .VarDimName have different lengths';
216        return
217    end
218else
219    errormsg='input field does not contain the  cell array of dimension names .VarDimName';
220    return
221end
222nbdim=0;
223ListDimName={};
224
225%% main loop on the list of variables
226VarDimIndex=cell(1,nbfield);
227for ivar=1:nbfield
228    VarName=Data.ListVarName{ivar};
229    if ~isfield(Data,VarName)
230        errormsg=['the listed variable ' VarName ' is not found'];
231        return
232    end
233    sizvar=size(Data.(VarName));% sizvar = dimension of variable
234    DimCell=Data.VarDimName{ivar};
235    if ischar(DimCell)
236        DimCell={DimCell};%case of a single dimension name, defined by a string
237    elseif ~iscell(DimCell)
238        errormsg=['wrong format for .VarDimName{' num2str(ivar) ' (must be the cell of dimension names of the variable ' VarName];
239        return       
240    end
241    nbcoord=numel(sizvar);%nbre of coordinates for variable named VarName
242    testrange=0;
243    if numel(DimCell)==0
244        errormsg=['empty declared dimension .VarDimName{' num2str(ivar) '} for ' VarName];
245        return
246    elseif numel(DimCell)==1% one dimension declared
247        if nbcoord==2
248            if sizvar(1)==1
249                sizvar(1)=sizvar(2);
250            elseif sizvar(2)==1
251            else
252                errormsg=['1 dimension declared in .VarDimName{' num2str(ivar) '} inconsistent with the nbre of dimensions =2 of the variable ' VarName];
253                return
254            end
255            if sizvar(1)==2 && isequal(VarName,DimCell{1})
256                testrange=1;% test for a dimension variable representing a range
257            end
258        else
259            errormsg=['1 dimension declared in .VarDimName{' num2str(ivar) '} inconsistent with the nbre of dimensions =' num2str(nbcoord) ' of the variable ' VarName];
260            return
261        end
262    else
263        if numel(DimCell)>nbcoord
264            sizvar(nbcoord+1:numel(DimCell))=1;% case of singleton dimensions (not seen by the function size)
265        elseif nbcoord > numel(DimCell)
266            errormsg=['nbre of declared dimensions in .VarDimName{' num2str(ivar) '} smaller than the nbre of dimensions =' num2str(nbcoord) ' of the variable ' VarName];
267            return
268        end
269    end
270    DimIndex=[];
271    for idim=1:numel(DimCell) %loop on the coordinates of variable #ivar
272        DimName=DimCell{idim};
273        iprev=find(strcmp(DimName,ListDimName),1);%look for dimension name DimName in the current list
274        if isempty(iprev)% append the dimension name to the current list
275            nbdim=nbdim+1;
276            RangeTest(nbdim)=0; %default
277            if sizvar(idim)==2 && strcmp(DimName,VarName)%case of a coordinate defined by the two end values (regular spacing)
278                RangeTest(nbdim)=1; %to be updated for a later variable 
279            end
280            DimValue(nbdim)=sizvar(idim);
281            ListDimName{nbdim}=DimName;
282            DimIndex=[DimIndex nbdim];
283        else % DimName is detected in the current list of dimension names
284            if ~isequal(DimValue(iprev),sizvar(idim))
285                if isequal(DimValue(iprev),2)&& RangeTest(iprev)  % the dimension has been already detected as a range [min max]
286                    DimValue(iprev)=sizvar(idim); %update with actual value
287                elseif ~testrange               
288                    errormsg=['dimension declaration inconsistent with the size =[' num2str(sizvar) '] for ' VarName];
289                    return
290                end
291            end
292            DimIndex=[DimIndex iprev];
293        end
294    end
295    VarDimIndex{ivar}=DimIndex;
296end
Note: See TracBrowser for help on using the repository browser.