source: trunk/src/series/merge_proj_polar.m @ 1071

Last change on this file since 1071 was 1071, checked in by g7moreau, 4 years ago
  • Update COPYRIGHT
File size: 27.4 KB
Line 
1%'merge_proj': concatene several fields from series, project on a polar grid
2%------------------------------------------------------------------------
3% function ParamOut=merge_proj(Param)
4%------------------------------------------------------------------------
5%%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%%
6%
7%OUTPUT
8% ParamOut: sets options in the GUI series.fig needed for the function
9%
10%INPUT:
11% In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series.
12% In batch mode, Param is the name of the corresponding xml file containing the same information
13% when Param.Action.RUN=0 (as activated when the current Action is selected
14% in series), the function ouput paramOut set the activation of the needed GUI elements
15%
16% Param contains the elements:(use the menu bar command 'export/GUI config' in series to
17% see the current structure Param)
18%    .InputTable: cell of input file names, (several lines for multiple input)
19%                      each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension}
20%    .OutputSubDir: name of the subdirectory for data outputs
21%    .OutputDirExt: directory extension for data outputs
22%    .Action: .ActionName: name of the current activated function
23%             .ActionPath:   path of the current activated function
24%             .ActionExt: fct extension ('.m', Matlab fct, '.sh', compiled   Matlab fct
25%             .RUN =0 for GUI input, =1 for function activation
26%             .RunMode='local','background', 'cluster': type of function  use
27%             
28%    .IndexRange: set the file or frame indices on which the action must be performed
29%    .FieldTransform: .TransformName: name of the selected transform function
30%                     .TransformPath:   path  of the selected transform function
31%    .InputFields: sub structure describing the input fields withfields
32%              .FieldName: name(s) of the field
33%              .VelType: velocity type
34%              .FieldName_1: name of the second field in case of two input series
35%              .VelType_1: velocity type of the second field in case of two input series
36%              .Coord_y: name of y coordinate variable
37%              .Coord_x: name of x coordinate variable
38%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
40
41%=======================================================================
42% Copyright 2008-2020, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
43%   http://www.legi.grenoble-inp.fr
44%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
45%
46%     This file is part of the toolbox UVMAT.
47%
48%     UVMAT is free software; you can redistribute it and/or modify
49%     it under the terms of the GNU General Public License as published
50%     by the Free Software Foundation; either version 2 of the license,
51%     or (at your option) any later version.
52%
53%     UVMAT is distributed in the hope that it will be useful,
54%     but WITHOUT ANY WARRANTY; without even the implied warranty of
55%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
56%     GNU General Public License (see LICENSE.txt) for more details.
57%=======================================================================
58
59function ParamOut=merge_proj_polar(Param)
60
61%% set the input elements needed on the GUI series when the function is selected in the menu ActionName or InputTable refreshed
62if isstruct(Param) && isequal(Param.Action.RUN,0)
63    ParamOut.AllowInputSort='on';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default)
64    ParamOut.WholeIndexRange='off';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default)
65    ParamOut.NbSlice='off'; %nbre of slices ('off' by default)
66    ParamOut.VelType='one';% menu for selecting the velocity type (options 'off'/'one'/'two',  'off' by default)
67    ParamOut.FieldName='off';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default)
68    ParamOut.FieldTransform = 'on';%can use a transform function
69    ParamOut.TransformPath=fullfile(fileparts(which('uvmat')),'transform_field');% path to transform functions (needed for compilation only)
70    ParamOut.ProjObject='off';%can use projection object(option 'off'/'on',
71    ParamOut.Mask='off';%can use mask option   (option 'off'/'on', 'off' by default)
72    ParamOut.OutputDirExt='.polar';%set the output dir extension
73    ParamOut.OutputFileMode='NbInput';% '=NbInput': 1 output file per input file index, '=NbInput_i': 1 file per input file index i, '=NbSlice': 1 file per slice
74      %check the input files
75    ParamOut.CheckOverwriteVisible='on'; % manage the overwrite of existing files (default=1)
76    first_j=[];
77    if isfield(Param.IndexRange,'first_j'); first_j=Param.IndexRange.first_j; end
78    PairString='';
79    if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString; end
80    [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString);
81    FirstFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},...
82        Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2);
83    if ~exist(FirstFileName,'file')
84        msgbox_uvmat('WARNING',['the first input file ' FirstFileName ' does not exist'])
85    end
86    return
87end
88
89%%%% specific input parameters
90% calculate the positions on which to interpolate
91radius_ref=450;% radius of the mountain top
92radius_shifted=-130:2:130;% radius shifted by the radius of the origin at the topography summit
93radius=radius_ref+radius_shifted;%radius from centre of the tank
94azimuth_arclength=(-150:2:400);%azimuth in arc length at origin position
95azimuth=pi/2-azimuth_arclength/radius_ref;%azimuth in radian
96[Radius,Azimuth]=meshgrid(radius,azimuth);
97XI=Radius.*cos(Azimuth);% set of x axis of the points where interpolqtion needs to be done
98YI=Radius.*sin(Azimuth)-radius_ref;% set of y axis of the points where interpolqtion needs to be done
99FieldNames={'vec(U,V)';'curl(U,V)';'div(U,V)'};
100HeadData.ListVarName= {'radius','azimuth'} ;
101HeadData.VarDimName={'radius','azimuth'};
102HeadData.VarAttribute{1}.Role='coord_y';
103HeadData.VarAttribute{2}.Role='coord_x';
104HeadData.radius=radius_shifted;
105HeadData.azimuth=azimuth_arclength;   
106thresh2=16; % square of the interpolation range
107
108%%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%%
109ParamOut=[]; %default output
110RUNHandle=[];
111WaitbarHandle=[];
112%% read input parameters from an xml file if input is a file name (batch mode)
113checkrun=1;
114if ischar(Param)
115    Param=xml2struct(Param);% read Param as input file (batch case)
116    checkrun=0;
117else
118    hseries=findobj(allchild(0),'Tag','series');
119    RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series
120    WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series
121end
122
123%% root input file type
124RootPath=Param.InputTable(:,1);
125RootFile=Param.InputTable(:,3);
126SubDir=Param.InputTable(:,2);
127%NomType=Param.InputTable(:,4);
128FileExt=Param.InputTable(:,5);
129[filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param);
130%%%%%%%%%%%%
131% The cell array filecell is the list of input file names, while
132% filecell{iview,fileindex}:
133%        iview: line in the table corresponding to a given file series
134%        fileindex: file index within  the file series,
135% i1_series(iview,ref_j,ref_i)... are the corresponding arrays of indices i1,i2,j1,j2, depending on the input line iview and the two reference indices ref_i,ref_j
136% i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices
137%%%%%%%%%%%%
138% NbSlice=1;%default
139% if isfield(Param.IndexRange,'NbSlice')&&~isempty(Param.IndexRange.NbSlice)
140%     NbSlice=Param.IndexRange.NbSlice;
141% end
142NbView=numel(i1_series);%number of input file series (lines in InputTable)
143NbField_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices)
144NbField_i=size(i1_series{1},2); %nb of fields for the i index
145NbField=NbField_j*NbField_i; %total number of fields
146
147%% define the name for result file (with path=RootPath{1})
148OutputDir=[Param.OutputSubDir Param.OutputDirExt];% subdirectory for output files
149% OutputFile=fullfile_uvmat(RootPath{1},OutputDir,RootFile{1},'.nc','_1',i1_series{1}(1));
150% CheckOverwrite=1;%default
151% if isfield(Param,'CheckOverwrite')
152%     CheckOverwrite=Param.CheckOverwrite;
153% end
154% if ~CheckOverwrite && exist(OutputFile,'file')
155%     disp(['existing output file ' OutputFile ' already exists, skip to next field'])
156%     return% skip iteration if the mode overwrite is desactivated and the result file already exists
157% end
158
159if ~isfield(Param,'InputFields')
160    Param.InputFields.FieldName='';
161end
162
163
164%% determine the file type on each line from the first input file
165ImageTypeOptions={'image','multimage','mmreader','video','cine_phantom'};
166NcTypeOptions={'netcdf','civx','civdata'};
167for iview=1:NbView
168    if ~exist(filecell{iview,1}','file')
169        disp_uvmat('ERROR',['the first input file ' filecell{iview,1} ' does not exist'],checkrun)
170        return
171    end
172    [FileInfo{iview},MovieObject{iview}]=get_file_info(filecell{iview,1});
173    FileType{iview}=FileInfo{iview}.FileType;
174    CheckImage{iview}=~isempty(find(strcmp(FileType{iview},ImageTypeOptions)));% =1 for images
175    if CheckImage{iview}
176        ParamIn{iview}=MovieObject{iview};
177    else
178        ParamIn{iview}=Param.InputFields;
179    end
180    CheckNc{iview}=~isempty(find(strcmp(FileType{iview},NcTypeOptions)));% =1 for netcdf files
181    if ~isempty(j1_series{iview})
182        frame_index{iview}=j1_series{iview};
183    else
184        frame_index{iview}=i1_series{iview};
185    end
186end
187if NbView >1 && max(cell2mat(CheckImage))>0 && ~isfield(Param,'ProjObject')
188    disp_uvmat('ERROR','projection on a common grid is needed to concatene images: use a Projection Object of type ''plane'' with ProjMode=''interp_lin''',checkrun)
189    return
190end
191
192%% calibration data and timing: read the ImaDoc files
193[XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series);
194if size(time,1)>1
195    diff_time=max(max(diff(time)));
196    if diff_time>0
197        disp_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time) ': the mean time is chosen in result'],checkrun)
198    end   
199end
200if ~isempty(errormsg)
201    disp_uvmat('WARNING',errormsg,checkrun)
202end
203time=mean(time,1); %averaged time taken for the merged field
204
205%% height z
206    % position of projection plane
207   
208ProjObjectCoord=XmlData{1}.GeometryCalib.SliceCoord;
209CoordUnit=XmlData{1}.GeometryCalib.CoordUnit;
210for iview =2:numel(XmlData)
211    if ~(isfield(XmlData{iview},'GeometryCalib')&& isequal(XmlData{iview}.GeometryCalib.SliceCoord,ProjObjectCoord))...
212        disp('error: geometric calibration missing or inconsistent plane positions')
213        return
214    end
215end
216
217
218%% coordinate transform or other user defined transform
219transform_fct='';%default fct handle
220if isfield(Param,'FieldTransform')&&~isempty(Param.FieldTransform.TransformName)
221        currentdir=pwd;
222        cd(Param.FieldTransform.TransformPath)
223        transform_fct=str2func(Param.FieldTransform.TransformName);
224        cd (currentdir)
225        if isfield(Param,'TransformInput')
226            for iview=1:NbView
227            XmlData{iview}.TransformInput=Param.TransformInput;
228            end
229        end       
230end
231%%%%%%%%%%%% END STANDARD PART  %%%%%%%%%%%%
232 % EDIT FROM HERE
233
234%% check the validity of  input file types
235for iview=1:NbView
236    if ~isequal(CheckNc{iview},1)
237        disp_uvmat('ERROR','input files needs to be in netcdf (extension .nc)',checkrun)
238        return
239    end
240end
241
242% %% output file type
243if isempty(j1_series{1})
244    NomTypeOut='_1';
245else
246    NomTypeOut='_1_1';
247end
248RootFileOut=RootFile{1};
249for iview=2:NbView
250    if ~strcmp(RootFile{iview},RootFile{1})
251        RootFileOut='mproj';
252        break
253    end
254end
255
256
257%% MAIN LOOP ON FIELDS
258%%%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%%
259% for i_slice=1:NbSlice
260%     index_slice=i_slice:NbSlice:NbField;% select file indices of the slice
261%     NbFiles=0;
262%     nbmissing=0;
263
264%%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%%
265tstart=tic; %used to record the computing time
266CheckOverwrite=1;%default
267if isfield(Param,'CheckOverwrite')
268    CheckOverwrite=Param.CheckOverwrite;
269end
270NbField
271for index=1:NbField
272    update_waitbar(WaitbarHandle,index/NbField)
273    if ~isempty(RUNHandle) && ~strcmp(get(RUNHandle,'BusyAction'),'queue')
274        disp('program stopped by user')
275        return
276    end
277   
278        %% generating the name of the merged field
279        i1=i1_series{1}(index);
280        if ~isempty(i2_series{end})
281            i2=i2_series{end}(index);
282        else
283            i2=i1;
284        end
285        j1=1;
286        j2=1;
287        if ~isempty(j1_series{1})
288            j1=j1_series{1}(index);
289            if ~isempty(j2_series{end})
290                j2=j2_series{end}(index);
291            else
292                j2=j1;
293            end
294        end
295       OutputFile=fullfile_uvmat(RootPath{1},OutputDir,RootFileOut,'.nc',NomTypeOut,i1,i2,j1,j2);
296        if ~CheckOverwrite && exist(OutputFile,'file')
297            disp(['existing output file ' OutputFile ' already exists, skip to next field'])
298            continue% skip iteration if the mode overwrite is desactivated and the result file already exists
299        end
300   
301    %% z position
302    ZIndex=mod(i1_series{1}(index)-1,NbSlice_calib{1})+1;%Zindex for phys transform
303    ZPosNew=ProjObjectCoord(ZIndex,3);
304    if index==1
305        ZPos=ZPosNew;
306    else
307        if ZPosNew~=ZPos
308            disp('inconsistent z positions in the series')
309            return
310        end
311    end
312    % radius of the topography section at z position
313    ind_mask=[];
314    if ZPos<20
315        TopoRadius=40*sin(acos((20+ZPos)/40));
316        ind_mask=(XI'.*XI'+YI'.*YI')<TopoRadius*TopoRadius;% indidces of data to mask
317    end
318   
319    %%%%%%%%%%%%%%%% loop on views (input lines) %%%%%%%%%%%%%%%%
320    Data=cell(1,NbView);%initiate the set Data
321    timeread=zeros(1,NbView);
322    for iview=1:NbView
323        %% reading input file(s)
324        [Data{iview},tild,errormsg] = read_field(filecell{iview,index},FileType{iview},ParamIn{iview},frame_index{iview}(index));
325        if ~isempty(errormsg)
326            disp_uvmat('ERROR',['ERROR in merge_proj/read_field/' errormsg],checkrun)
327            return
328        end
329        ListVar=Data{iview}.ListVarName;
330        for ilist=1:numel(ListVar)
331            Data{iview}.(ListVar{ilist})=double(Data{iview}.(ListVar{ilist}));% transform all fields in double before all operations
332        end
333        % get the time defined in the current file if not already defined from the xml file
334        if ~isempty(time) && isfield(Data{iview},'Time')
335            timeread(iview)=Data{iview}.Time;
336        end
337        if ~isempty(NbSlice_calib)
338            Data{iview}.ZIndex=mod(i1_series{iview}(index)-1,NbSlice_calib{iview})+1;%Zindex for phys transform
339        end
340       
341        %% transform the input field (e.g; phys) if requested (no transform involving two input fields)
342        if ~isempty(transform_fct)
343            if nargin(transform_fct)>=2
344                Data{iview}=transform_fct(Data{iview},XmlData{iview});
345            else
346                Data{iview}=transform_fct(Data{iview});
347            end
348        end
349       
350        %% calculate tps coefficients
351        Data{iview}=tps_coeff_field(Data{iview},1);
352        'tps_coeff done'
353        %% projection on the polar grid
354        [DataOut,VarAttribute,errormsg]=calc_field_tps(Data{iview}.Coord_tps,Data{iview}.NbCentre,Data{iview}.SubRange,...
355            cat(3,Data{iview}.U_tps,Data{iview}.V_tps),FieldNames,cat(3,XI,YI));
356        if ~isempty(errormsg)
357            disp(errormsg)
358        end
359       
360        % set to NaN interpolation points which are too far from any initial data (more than 2 CoordMesh)
361        Coord=permute(Data{iview}.Coord_tps,[1 3 2]);
362        Coord=reshape(Coord,size(Coord,1)*size(Coord,2),2);
363        if exist('scatteredInterpolant','file')%recent Matlab versions
364            F=scatteredInterpolant(Coord,Coord(:,1),'nearest');
365            G=scatteredInterpolant(Coord,Coord(:,2),'nearest');
366        else
367            F=TriScatteredInterp(Coord,Coord(:,1),'nearest');
368            G=TriScatteredInterp(Coord,Coord(:,2),'nearest');
369        end
370        'Interp done'
371        Distx=F(XI,YI)-XI;% diff of x coordinates with the nearest measurement point
372        Disty=G(XI,YI)-YI;% diff of y coordinates with the nearest measurement point
373        Dist=Distx.*Distx+Disty.*Disty;
374        ListVarName=(fieldnames(DataOut))';
375        VarDimName=cell(size(ListVarName));
376        ProjData{iview}=HeadData;
377        ProjData{iview}.ListVarName= [ProjData{iview}.ListVarName ListVarName];
378        ProjData{iview}.VarDimName={'radius','azimuth'};
379%         ProjData{iview}.VarAttribute{1}.Role='coord_y';
380%         ProjData{iview}.VarAttribute{2}.Role='coord_x';
381        ProjData{iview}.VarAttribute=[ProjData{iview}.VarAttribute VarAttribute];
382        for ivar=1:numel(ListVarName)
383            ProjData{iview}.VarDimName{ivar+2}={'radius','azimuth'};
384            VarName=ListVarName{ivar};
385            if ~isempty(thresh2)
386                DataOut.(VarName)(Dist>thresh2)=NaN;% put to NaN interpolated positions further than RangeInterp from initial data
387            end
388            ProjData{iview}.(VarName)=(DataOut.(VarName))';
389        end
390       
391    end
392    %%%%%%%%%%%%%%%% END LOOP ON VIEWS %%%%%%%%%%%%%%%%
393   
394    %% merge the NbView fields
395    ProjData
396    [MergeData,errormsg]=merge_field(ProjData);
397    if ~isempty(errormsg)
398        disp_uvmat('ERROR',errormsg,checkrun);
399        return
400    end
401   
402   
403    %% time of the merged field: take the average of the different views
404    if ~isempty(time)
405        timeread=time(index);
406    elseif ~isempty(find(timeread))% time defined from ImaDoc
407        timeread=mean(timeread(timeread~=0));% take average over times form the files (when defined)
408    else
409        timeread=index;% take time=file index
410    end
411   
412    %% rotating the velocity vectors to the local axis of the polatr coordinates
413    Unew=MergeData.U.*sin(Azimuth')-MergeData.V.*cos(Azimuth');
414    Vnew=MergeData.U.*cos(Azimuth')+MergeData.V.*sin(Azimuth');
415    if ~isempty(ind_mask)
416        Unew(ind_mask)=NaN;
417        Vnew(ind_mask)=NaN;
418        MergeData.curl(ind_mask)=NaN;
419        MergeData.div(ind_mask)=NaN;
420    end
421    [npy,npx]=size(Unew);
422   
423    %% create the output file for the first iteration of the loop
424    if index==1
425        TimeData.ListGlobalAttribute={'Conventions','Project','CoordUnit','TimeUnit','ZPos','Time'};
426        TimeData.Conventions='uvmat';
427        TimeData.Project='2016_Circumpolar';
428        TimeData.CoordUnit='cm';
429        TimeData.TimeUnit='s';
430        TimeData.ZPos=ZPos;
431        TimeData.ListVarName={'radius','azimuth','U','V','curl','div'};
432        TimeData.VarDimName={'radius','azimuth',{'radius','azimuth'},{'radius','azimuth'}...
433            {'radius','azimuth'},{'radius','azimuth'}};
434        TimeData.VarAttribute{1}.Role='';
435        TimeData.VarAttribute{2}.Role='';
436        TimeData.VarAttribute{3}.Role='vector_x';
437        TimeData.VarAttribute{4}.Role='vector_y';
438        TimeData.VarAttribute{5}.Role='scalar';
439        TimeData.VarAttribute{6}.Role='scalar';
440       
441        TimeData.radius=radius_shifted;
442        TimeData.azimuth=azimuth_arclength;
443    end
444       
445        %% append data to the netcdf file for next iterations
446        TimeData.Time=timeread;
447       TimeData.U=Unew;
448       TimeData.V=Vnew;
449       TimeData.curl=MergeData.curl;
450       TimeData.div=MergeData.div;
451
452            error=struct2nc(OutputFile,TimeData);%save result file
453        if isempty(error)
454            disp(['output file ' OutputFile ' written'])
455        else
456            disp(error)
457        end
458            ellapsed_time=toc(tstart);
459    disp(['ellapsed time since start ' num2str(ellapsed_time/60,2) ' minutes'])
460end
461
462disp([ num2str(ellapsed_time/(60*NbField),3) ' minutes per iteration'])
463
464% %'merge_field': concatene fields
465% %------------------------------------------------------------------------
466% function [MergeData,errormsg]=merge_field(Data)
467% %% default output
468% if isempty(Data)||~iscell(Data)
469%     MergeData=[];
470%     return
471% end
472% errormsg='';
473% MergeData=Data{1};% merged field= first field by default, reproduces the global attributes of the first field
474% NbView=length(Data);
475% if NbView==1% if there is only one field, just reproduce it in MergeData
476%     return
477% end
478%
479% %% group the variables (fields of 'Data') in cells of variables with the same dimensions
480% [CellInfo,NbDim,errormsg]=find_field_cells(Data{1});
481% if ~isempty(errormsg)
482%     return
483% end
484%
485% %LOOP ON GROUPS OF VARIABLES SHARING THE SAME DIMENSIONS
486% for icell=1:length(CellInfo)
487%     if NbDim(icell)~=1 % skip field cells which are of dim 1
488%         switch CellInfo{icell}.CoordType
489%             case 'scattered'  %case of input fields with unstructured coordinates: just concatene data
490%                 for ivar=CellInfo{icell}.VarIndex %  indices of the selected variables in the list FieldData.ListVarName
491%                     VarName=Data{1}.ListVarName{ivar};
492%                     for iview=2:NbView
493%                         MergeData.(VarName)=[MergeData.(VarName); Data{iview}.(VarName)];
494%                     end
495%                 end
496%             case 'grid'        %case of fields defined on a structured  grid
497%                 FFName='';
498%                 if isfield(CellInfo{icell},'VarIndex_errorflag') && ~isempty(CellInfo{icell}.VarIndex_errorflag)
499%                     FFName=Data{1}.ListVarName{CellInfo{icell}.VarIndex_errorflag};% name of errorflag variable
500%                     MergeData.ListVarName(CellInfo{icell}.VarIndex_errorflag)=[];%remove error flag variable in MergeData (will use NaN instead)
501%                     MergeData.VarDimName(CellInfo{icell}.VarIndex_errorflag)=[];
502%                     MergeData.VarAttribute(CellInfo{icell}.VarIndex_errorflag)=[];
503%                 end
504%                 % select good data on each view
505%                 for ivar=CellInfo{icell}.VarIndex  %  indices of the selected variables in the list FieldData.ListVarName
506%                     VarName=Data{1}.ListVarName{ivar};
507%                     for iview=1:NbView
508%                         if isempty(FFName)
509%                             check_bad=isnan(Data{iview}.(VarName));%=0 for NaN data values, 1 else
510%                         else
511%                             check_bad=isnan(Data{iview}.(VarName)) | Data{iview}.(FFName)~=0;%=0 for NaN or error flagged data values, 1 else
512%                         end
513%                         Data{iview}.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag
514%                         if iview==1
515%                             %MergeData.(VarName)=Data{1}.(VarName);% initiate MergeData with the first field
516%                             MergeData.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag
517%                             NbAver=~check_bad;% initiate NbAver: the nbre of good data for each point
518%                         elseif size(Data{iview}.(VarName))~=size(MergeData.(VarName))
519%                             errormsg='sizes of the input matrices do not agree, need to interpolate on a common grid using a projection object';
520%                             return
521%                         else
522%                             MergeData.(VarName)=MergeData.(VarName) +double(Data{iview}.(VarName));%add data
523%                             NbAver=NbAver + ~check_bad;% add 1 for good data, 0 else
524%                         end
525%                     end
526%                     MergeData.(VarName)(NbAver~=0)=MergeData.(VarName)(NbAver~=0)./NbAver(NbAver~=0);% take average of defined data at each point
527%                     MergeData.(VarName)(NbAver==0)=NaN;% set to NaN the points with no good data
528%                 end
529%         end
530%   
531%     end
532% end
533
534
535%'merge_field': concatene fields
536%------------------------------------------------------------------------
537function [MergeData,errormsg]=merge_field(Data)
538%% default output
539if isempty(Data)||~iscell(Data)
540    MergeData=[];
541    return
542end
543errormsg='';
544MergeData=Data{1};% merged field= first field by default, reproduces the global attributes of the first field
545NbView=length(Data);
546if NbView==1% if there is only one field, just reproduce it in MergeData
547    return
548end
549
550%% group the variables (fields of 'Data') in cells of variables with the same dimensions
551[CellInfo,NbDim,errormsg]=find_field_cells(Data{1});
552if ~isempty(errormsg)
553    return
554end
555
556%LOOP ON GROUPS OF VARIABLES SHARING THE SAME DIMENSIONS
557for icell=1:length(CellInfo)
558    if NbDim(icell)~=1 % skip field cells which are of dim 1
559        switch CellInfo{icell}.CoordType
560            case 'scattered'  %case of input fields with unstructured coordinates: just concatene data
561                for ivar=CellInfo{icell}.VarIndex %  indices of the selected variables in the list FieldData.ListVarName
562                    VarName=Data{1}.ListVarName{ivar};
563                    for iview=2:NbView
564                        MergeData.(VarName)=[MergeData.(VarName); Data{iview}.(VarName)];
565                    end
566                end
567            case 'grid'        %case of fields defined on a structured  grid
568                FFName='';
569                if isfield(CellInfo{icell},'VarIndex_errorflag') && ~isempty(CellInfo{icell}.VarIndex_errorflag)
570                    FFName=Data{1}.ListVarName{CellInfo{icell}.VarIndex_errorflag};% name of errorflag variable
571                    MergeData.ListVarName(CellInfo{icell}.VarIndex_errorflag)=[];%remove error flag variable in MergeData (will use NaN instead)
572                    MergeData.VarDimName(CellInfo{icell}.VarIndex_errorflag)=[];
573                    MergeData.VarAttribute(CellInfo{icell}.VarIndex_errorflag)=[];
574                end
575                % select good data on each view
576                for ivar=CellInfo{icell}.VarIndex  %  indices of the selected variables in the list FieldData.ListVarName
577                    VarName=Data{1}.ListVarName{ivar};
578                    for iview=1:NbView
579                        if isempty(FFName)
580                            check_bad=isnan(Data{iview}.(VarName));%=0 for NaN data values, 1 else
581                        else
582                            check_bad=isnan(Data{iview}.(VarName)) | Data{iview}.(FFName)~=0;%=0 for NaN or error flagged data values, 1 else
583                        end
584                        Data{iview}.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag
585                        if iview==1
586                            %MergeData.(VarName)=Data{1}.(VarName);% initiate MergeData with the first field
587                            MergeData.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag
588                            NbAver=~check_bad;% initiate NbAver: the nbre of good data for each point
589                        elseif size(Data{iview}.(VarName))~=size(MergeData.(VarName))
590                            errormsg='sizes of the input matrices do not agree, need to interpolate on a common grid using a projection object';
591                            return
592                        else                             
593                            MergeData.(VarName)=MergeData.(VarName) +double(Data{iview}.(VarName));%add data
594                            NbAver=NbAver + ~check_bad;% add 1 for good data, 0 else
595                        end
596                    end
597                    MergeData.(VarName)(NbAver~=0)=MergeData.(VarName)(NbAver~=0)./NbAver(NbAver~=0);% take average of defined data at each point
598                    MergeData.(VarName)(NbAver==0)=NaN;% set to NaN the points with no good data
599                end
600        end
601    end
602end   
Note: See TracBrowser for help on using the repository browser.