source: trunk/src/series/merge_proj.m @ 956

Last change on this file since 956 was 956, checked in by sommeria, 8 years ago

various

File size: 23.9 KB
Line 
1%'merge_proj': concatene several fields from series, can project them on a regular grid in phys coordinates
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-2016, 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(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='off';% 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='one';% 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='on';%can use projection object(option 'off'/'on',
71    ParamOut.Mask='on';%can use mask option   (option 'off'/'on', 'off' by default)
72    ParamOut.OutputDirExt='.mproj';%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    elseif isequal(size(Param.InputTable,1),1) && ~isfield(Param,'ProjObject')
86        msgbox_uvmat('WARNING','You may need a projection object of type plane for merge_proj')
87    end
88    return
89end
90
91%%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%%
92ParamOut=[]; %default output
93RUNHandle=[];
94WaitbarHandle=[];
95%% read input parameters from an xml file if input is a file name (batch mode)
96checkrun=1;
97if ischar(Param)
98    Param=xml2struct(Param);% read Param as input file (batch case)
99    checkrun=0;
100else
101    hseries=findobj(allchild(0),'Tag','series');
102    RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series
103    WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series
104end
105tild=phys([],[]);% test to provoke the inclusion of the function phys at compilation
106%% define the directory for result file (with path=RootPath{1})
107OutputDir=[Param.OutputSubDir Param.OutputDirExt];% subdirectory for output files
108
109if ~isfield(Param,'InputFields')
110    Param.InputFields.FieldName='';
111end
112
113%% root input file type
114RootPath=Param.InputTable(:,1);
115RootFile=Param.InputTable(:,3);
116SubDir=Param.InputTable(:,2);
117NomType=Param.InputTable(:,4);
118FileExt=Param.InputTable(:,5);
119[filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param);
120%%%%%%%%%%%%
121% The cell array filecell is the list of input file names, while
122% filecell{iview,fileindex}:
123%        iview: line in the table corresponding to a given file series
124%        fileindex: file index within  the file series,
125% 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
126% i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices
127%%%%%%%%%%%%
128% NbSlice=1;%default
129% if isfield(Param.IndexRange,'NbSlice')&&~isempty(Param.IndexRange.NbSlice)
130%     NbSlice=Param.IndexRange.NbSlice;
131% end
132NbView=numel(i1_series);%number of input file series (lines in InputTable)
133NbField_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices)
134NbField_i=size(i1_series{1},2); %nb of fields for the i index
135NbField=NbField_j*NbField_i; %total number of fields
136
137%% determine the file type on each line from the first input file
138ImageTypeOptions={'image','multimage','mmreader','video'};
139NcTypeOptions={'netcdf','civx','civdata'};
140for iview=1:NbView
141    if ~exist(filecell{iview,1}','file')
142        disp_uvmat('ERROR',['the first input file ' filecell{iview,1} ' does not exist'],checkrun)
143        return
144    end
145    [FileInfo{iview},MovieObject{iview}]=get_file_info(filecell{iview,1});
146    FileType{iview}=FileInfo{iview}.FileType;
147    CheckImage{iview}=~isempty(find(strcmp(FileType{iview},ImageTypeOptions)));% =1 for images
148    if CheckImage{iview}
149        ParamIn{iview}=MovieObject{iview};
150    else
151        ParamIn{iview}=Param.InputFields;
152    end
153    CheckNc{iview}=~isempty(find(strcmp(FileType{iview},NcTypeOptions)));% =1 for netcdf files
154    if ~isempty(j1_series{iview})
155        frame_index{iview}=j1_series{iview};
156    else
157        frame_index{iview}=i1_series{iview};
158    end
159end
160if NbView >1 && max(cell2mat(CheckImage))>0 && ~isfield(Param,'ProjObject')
161    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)
162    return
163end
164
165%% calibration data and timing: read the ImaDoc files
166[XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series);
167if size(time,1)>1
168    diff_time=max(max(diff(time)));
169    if diff_time>0
170        disp_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time) ': the mean time is chosen in result'],checkrun)
171    end   
172end
173if ~isempty(errormsg)
174    disp_uvmat('WARNING',errormsg,checkrun)
175end
176time=mean(time,1); %averaged time taken for the merged field
177
178%% coordinate transform or other user defined transform
179transform_fct='';%default fct handle
180if isfield(Param,'FieldTransform')&&~isempty(Param.FieldTransform.TransformName)
181        currentdir=pwd;
182        cd(Param.FieldTransform.TransformPath)
183        transform_fct=str2func(Param.FieldTransform.TransformName);
184        cd (currentdir)
185        if isfield(Param,'TransformInput')
186            for iview=1:NbView
187            XmlData{iview}.TransformInput=Param.TransformInput;
188            end
189        end       
190end
191%%%%%%%%%%%% END STANDARD PART  %%%%%%%%%%%%
192 % EDIT FROM HERE
193
194%% check the validity of  input file types
195for iview=1:NbView
196    if ~isequal(CheckImage{iview},1)&&~isequal(CheckNc{iview},1)
197        disp_uvmat('ERROR','input set of input series: need  either netcdf either image series',checkrun)
198        return
199    end
200end
201
202%% output file type
203if min(cell2mat(CheckImage))==1 && (~Param.CheckObject || strcmp(Param.ProjObject.Type,'plane'))
204    FileExtOut='.png'; %image output (input and proj result = image)
205else
206    FileExtOut='.nc'; %netcdf output
207end
208if isempty(j1_series{1})
209    NomTypeOut='_1';
210else
211    NomTypeOut='_1_1';
212end
213%NomTypeOut=NomType;% output file index will indicate the first and last ref index in the series
214RootFileOut=RootFile{1};
215for iview=2:NbView
216    if ~strcmp(RootFile{iview},RootFile{1})
217        RootFileOut='mproj';
218        break
219    end
220end
221
222%% mask (TODO: case of multilevels)
223MaskData=cell(NbView,1);
224if Param.CheckMask
225    if ischar(Param.MaskTable)% case of a single mask (char chain)
226        Param.MaskTable={Param.MaskTable};
227    end
228    for iview=1:numel(Param.MaskTable)
229        if exist(Param.MaskTable{iview},'file')
230            [MaskData{iview},tild,errormsg] = read_field(Param.MaskTable{iview},'image');
231            if ~isempty(transform_fct) && nargin(transform_fct)>=2
232                MaskData{iview}=transform_fct(MaskData{iview},XmlData{iview});
233            end
234        end
235    end
236end
237
238%% Set field names and velocity types
239%use Param.InputFields for all views
240
241%% MAIN LOOP ON FIELDS
242%%%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%%
243% for i_slice=1:NbSlice
244%     index_slice=i_slice:NbSlice:NbField;% select file indices of the slice
245%     NbFiles=0;
246%     nbmissing=0;
247
248    %%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%%
249tstart=tic; %used to record the computing time
250CheckOverwrite=1;%default
251if isfield(Param,'CheckOverwrite')
252    CheckOverwrite=Param.CheckOverwrite;
253end
254for index=1:NbField
255        update_waitbar(WaitbarHandle,index/NbField)
256    if ~isempty(RUNHandle) && ~strcmp(get(RUNHandle,'BusyAction'),'queue')
257        disp('program stopped by user')
258        return
259    end
260   
261     %% generating the name of the merged field
262    i1=i1_series{1}(index);
263    if ~isempty(i2_series{end})
264        i2=i2_series{end}(index);
265    else
266        i2=i1;
267    end
268    j1=1;
269    j2=1;
270    if ~isempty(j1_series{1})
271        j1=j1_series{1}(index);
272        if ~isempty(j2_series{end})
273            j2=j2_series{end}(index);
274        else
275            j2=j1;
276        end
277    end
278    OutputFile=fullfile_uvmat(RootPath{1},OutputDir,RootFileOut,FileExtOut,NomTypeOut,i1,i2,j1,j2);
279    if ~CheckOverwrite && exist(OutputFile,'file')
280            disp(['existing output file ' OutputFile ' already exists, skip to next field'])
281            continue% skip iteration if the mode overwrite is desactivated and the result file already exists
282    end
283       
284    %%%%%%%%%%%%%%%% loop on views (input lines) %%%%%%%%%%%%%%%%
285    Data=cell(1,NbView);%initiate the set Data
286    timeread=zeros(1,NbView);
287    for iview=1:NbView
288        %% reading input file(s)     
289        [Data{iview},tild,errormsg] = read_field(filecell{iview,index},FileType{iview},ParamIn{iview},frame_index{iview}(index));
290        if ~isempty(errormsg)
291            disp_uvmat('ERROR',['ERROR in merge_proj/read_field/' errormsg],checkrun)
292            return
293        end
294       
295        ListVar=Data{iview}.ListVarName;
296        for ilist=1:numel(ListVar)
297            Data{iview}.(ListVar{ilist})=double(Data{iview}.(ListVar{ilist}));% transform all fields in double before all operations
298        end
299        % get the time defined in the current file if not already defined from the xml file
300        if ~isempty(time) && isfield(Data{iview},'Time')
301            timeread(iview)=Data{iview}.Time;
302        end
303        if ~isempty(NbSlice_calib)
304            Data{iview}.ZIndex=mod(i1_series{iview}(index)-1,NbSlice_calib{iview})+1;%Zindex for phys transform
305        end
306       
307        %% transform the input field (e.g; phys) if requested (no transform involving two input fields)
308        if ~isempty(transform_fct)
309            if nargin(transform_fct)>=2
310                Data{iview}=transform_fct(Data{iview},XmlData{iview});
311            else
312                Data{iview}=transform_fct(Data{iview});
313            end
314        end
315       
316        %% calculate tps coefficients if needed
317        check_proj_tps= isfield(Param,'ProjObject')&&~isempty(Param.ProjObject)&& strcmp(Param.ProjObject.ProjMode,'interp_tps')&&~isfield(Data{iview},'Coord_tps');
318        Data{iview}=tps_coeff_field(Data{iview},check_proj_tps);
319       
320        %% projection on object (gridded plane)
321        if Param.CheckObject
322            [Data{iview},errormsg]=proj_field(Data{iview},Param.ProjObject);
323            if ~isempty(errormsg)
324                disp_uvmat('ERROR',['ERROR in merge_proge/proj_field: ' errormsg],checkrun)
325                return
326            end
327        end
328       
329        %% mask
330        if Param.CheckMask && ~isempty(MaskData{iview})
331             [Data{iview},errormsg]=mask_proj(Data{iview},MaskData{iview});
332        end
333    end
334    %%%%%%%%%%%%%%%% END LOOP ON VIEWS %%%%%%%%%%%%%%%%
335
336    %% merge the NbView fields
337    [MergeData,errormsg]=merge_field(Data);
338    if ~isempty(errormsg)
339        disp_uvmat('ERROR',errormsg,checkrun);
340        return
341    end
342
343    %% time of the merged field: take the average of the different views
344    if ~isempty(time)
345        timeread=time(index);   
346    elseif ~isempty(find(timeread))% time defined from ImaDoc
347        timeread=mean(timeread(timeread~=0));% take average over times form the files (when defined)
348    else
349        timeread=index;% take time=file index
350    end
351
352 
353    %% recording the merged field
354    if strcmp(FileExtOut,'.png')    %output as image
355        if index==1
356            if strcmp(class(MergeData.A),'uint8')
357            BitDepth=8;
358            else
359              BitDepth=16; 
360            end
361            %write xml calibration file, using the first file
362            siz=size(MergeData.A);
363            npy=siz(1);
364            npx=siz(2);
365            if isfield(MergeData,'Coord_x') && isfield(MergeData,'Coord_y')
366                Rangx=MergeData.Coord_x;
367                Rangy=MergeData.Coord_y;
368            elseif isfield(MergeData,'AX')&& isfield(MergeData,'AY')
369                Rangx=[MergeData.AX(1) MergeData.AX(end)];
370                Rangy=[MergeData.AY(1) MergeData.AY(end)];
371            else
372                Rangx=[0.5 npx-0.5];
373                Rangy=[npy-0.5 0.5];%default
374            end
375            pxcmx=(npx-1)/(Rangx(2)-Rangx(1));
376            pxcmy=(npy-1)/(Rangy(1)-Rangy(2));
377            T_x=-pxcmx*Rangx(1)+0.5;
378            T_y=-pxcmy*Rangy(2)+0.5;
379            GeometryCal.CalibrationType='rescale';
380            GeometryCal.CoordUnit=MergeData.CoordUnit;
381            GeometryCal.focal=1;
382            GeometryCal.R=[pxcmx,0,0;0,pxcmy,0;0,0,1];
383            GeometryCal.Tx_Ty_Tz=[T_x T_y 1];
384            ImaDoc.GeometryCalib=GeometryCal;
385            t=struct2xml(ImaDoc);
386            t=set(t,1,'name','ImaDoc');
387            save(t,[fileparts(OutputFile) '.xml'])
388        end
389        if BitDepth==8
390            imwrite(uint8(MergeData.A),OutputFile,'BitDepth',8)
391        else
392            imwrite(uint16(MergeData.A),OutputFile,'BitDepth',16)
393        end
394    else   %output as netcdf files
395        MergeData.ListGlobalAttribute={'Conventions','Project','InputFile_1','InputFile_end','NbCoord','NbDim'};
396        MergeData.Conventions='uvmat';
397        MergeData.NbCoord=2;
398        MergeData.NbDim=2;
399        % time interval of PIV
400        Dt=[];
401        if isfield(Data{1},'Dt')&& isnumeric(Data{1}.Dt)
402            Dt=Data{1}.Dt;
403        end
404        for iview =2:numel(Data)
405            if ~(isfield(Data{iview},'Dt')&& isequal(Data{iview}.Dt,Dt))
406                Dt=[];%dt not the same for all fields
407            end
408        end
409        if ~isempty(timeread)
410            MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'Time'}];
411            MergeData.Time=timeread;
412        end
413        % position of projection plane
414        if isfield(Data{1},'ProjObjectCoord')&& isfield(Data{1},'ProjObjectAngle')
415            ProjObjectCoord=Data{1}.ProjObjectCoord;
416            ProjObjectAngle=Data{1}.ProjObjectAngle;
417            for iview =2:numel(Data)
418                if ~(isfield(Data{iview},'ProjObjectCoord')&& isequal(Data{iview}.ProjObjectCoord,ProjObjectCoord))...
419                        ||~(isfield(Data{iview},'ProjObjectAngle')&& isequal(Data{iview}.ProjObjectAngle,ProjObjectAngle))
420                    ProjObjectCoord=[];%dt not the same for all fields
421                end
422            end
423            if ~isempty(ProjObjectCoord)
424                MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'ProjObjectCoord'} {'ProjObjectAngle'}];
425                MergeData.ProjObjectCoord=ProjObjectCoord;
426                MergeData.ProjObjectAngle=ProjObjectAngle;
427            end
428        end
429        % coord unit
430        if isfield(Data{1},'CoordUnit')
431            CoordUnit=Data{1}.CoordUnit;
432            for iview =2:numel(Data)
433                if ~(isfield(Data{iview},'CoordUnit')&& isequal(Data{iview}.CoordUnit,CoordUnit))
434                    CoordUnit=[];%CoordUnit not the same for all fields
435                end
436            end
437            if ~isempty(CoordUnit)
438                MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'CoordUnit'}];
439                MergeData.CoordUnit=CoordUnit;
440            end
441        end
442        % time unit
443        if isfield(Data{1},'TimeUnit')
444            TimeUnit=Data{1}.TimeUnit;
445            for iview =2:numel(Data)
446                if ~(isfield(Data{iview},'TimeUnit')&& isequal(Data{iview}.TimeUnit,TimeUnit))
447                    TimeUnit=[];%TimeUnit not the same for all fields
448                end
449            end
450            if ~isempty(TimeUnit)
451                MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'TimeUnit'}];
452                MergeData.TimeUnit=TimeUnit;
453            end
454        end
455        error=struct2nc(OutputFile,MergeData);%save result file
456        if isempty(error)
457            disp(['output file ' OutputFile ' written'])
458        else
459            disp(error)
460        end
461    end
462end
463ellapsed_time=toc(tstart);
464disp(['total ellapsed time ' num2str(ellapsed_time/60,2) ' minutes'])
465disp([ num2str(ellapsed_time/(60*NbField),3) ' minutes per iteration'])
466
467%'merge_field': concatene fields
468%------------------------------------------------------------------------
469function [MergeData,errormsg]=merge_field(Data)
470%% default output
471if isempty(Data)||~iscell(Data)
472    MergeData=[];
473    return
474end
475errormsg='';
476MergeData=Data{1};% merged field= first field by default, reproduces the global attributes of the first field
477NbView=length(Data);
478if NbView==1% if there is only one field, just reproduce it in MergeData
479    return
480end
481
482%% group the variables (fields of 'Data') in cells of variables with the same dimensions
483[CellInfo,NbDim,errormsg]=find_field_cells(Data{1});
484if ~isempty(errormsg)
485    return
486end
487
488%LOOP ON GROUPS OF VARIABLES SHARING THE SAME DIMENSIONS
489for icell=1:length(CellInfo)
490    if NbDim(icell)~=1 % skip field cells which are of dim 1
491        switch CellInfo{icell}.CoordType
492            case 'scattered'  %case of input fields with unstructured coordinates: just concatene data
493                for ivar=CellInfo{icell}.VarIndex %  indices of the selected variables in the list FieldData.ListVarName
494                    VarName=Data{1}.ListVarName{ivar};
495                    for iview=2:NbView
496                        MergeData.(VarName)=[MergeData.(VarName); Data{iview}.(VarName)];
497                    end
498                end
499            case 'grid'        %case of fields defined on a structured  grid
500                FFName='';
501                if isfield(CellInfo{icell},'VarIndex_errorflag') && ~isempty(CellInfo{icell}.VarIndex_errorflag)
502                    FFName=Data{1}.ListVarName{CellInfo{icell}.VarIndex_errorflag};% name of errorflag variable
503                    MergeData.ListVarName(CellInfo{icell}.VarIndex_errorflag)=[];%remove error flag variable in MergeData (will use NaN instead)
504                    MergeData.VarDimName(CellInfo{icell}.VarIndex_errorflag)=[];
505                    MergeData.VarAttribute(CellInfo{icell}.VarIndex_errorflag)=[];
506                end
507                % select good data on each view
508                for ivar=CellInfo{icell}.VarIndex  %  indices of the selected variables in the list FieldData.ListVarName
509                    VarName=Data{1}.ListVarName{ivar};
510                    for iview=1:NbView
511                        if isempty(FFName)
512                            check_bad=isnan(Data{iview}.(VarName));%=0 for NaN data values, 1 else
513                        else
514                            check_bad=isnan(Data{iview}.(VarName)) | Data{iview}.(FFName)~=0;%=0 for NaN or error flagged data values, 1 else
515                        end
516                        Data{iview}.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag
517                        if iview==1
518                            %MergeData.(VarName)=Data{1}.(VarName);% initiate MergeData with the first field
519                            MergeData.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag
520                            NbAver=~check_bad;% initiate NbAver: the nbre of good data for each point
521                        elseif size(Data{iview}.(VarName))~=size(MergeData.(VarName))
522                            errormsg='sizes of the input matrices do not agree, need to interpolate on a common grid using a projection object';
523                            return
524                        else                             
525                            MergeData.(VarName)=MergeData.(VarName) +double(Data{iview}.(VarName));%add data
526                            NbAver=NbAver + ~check_bad;% add 1 for good data, 0 else
527                        end
528                    end
529                    MergeData.(VarName)(NbAver~=0)=MergeData.(VarName)(NbAver~=0)./NbAver(NbAver~=0);% take average of defined data at each point
530                    MergeData.(VarName)(NbAver==0)=NaN;% set to NaN the points with no good data
531                end
532        end
533%         if isempty(FFName)
534%             FFName='FF';
535%         end
536%         MergeData.(FFName)(NbAver~=0)=0;% flag to 1 undefined summed data
537%         MergeData.(FFName)(NbAver==0)=1;% flag to 1 undefined summed data
538    end
539end
540
541
542   
Note: See TracBrowser for help on using the repository browser.