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

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

merge_proj_polar made

File size: 25.6 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_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='on'; %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={'coord_y','coord_x'} ;
103HeadData.radius=radius_shifted;
104HeadData.azimuth=azimuth_arclength;   
105thresh2=16; % square of the interpolation range
106%%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%%
107ParamOut=[]; %default output
108RUNHandle=[];
109WaitbarHandle=[];
110%% read input parameters from an xml file if input is a file name (batch mode)
111checkrun=1;
112if ischar(Param)
113    Param=xml2struct(Param);% read Param as input file (batch case)
114    checkrun=0;
115else
116    hseries=findobj(allchild(0),'Tag','series');
117    RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series
118    WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series
119end
120
121%% root input file type
122RootPath=Param.InputTable(:,1);
123RootFile=Param.InputTable(:,3);
124SubDir=Param.InputTable(:,2);
125%NomType=Param.InputTable(:,4);
126FileExt=Param.InputTable(:,5);
127[filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param);
128%%%%%%%%%%%%
129% The cell array filecell is the list of input file names, while
130% filecell{iview,fileindex}:
131%        iview: line in the table corresponding to a given file series
132%        fileindex: file index within  the file series,
133% 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
134% i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices
135%%%%%%%%%%%%
136% NbSlice=1;%default
137% if isfield(Param.IndexRange,'NbSlice')&&~isempty(Param.IndexRange.NbSlice)
138%     NbSlice=Param.IndexRange.NbSlice;
139% end
140NbView=numel(i1_series);%number of input file series (lines in InputTable)
141NbField_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices)
142NbField_i=size(i1_series{1},2); %nb of fields for the i index
143NbField=NbField_j*NbField_i; %total number of fields
144
145%% define the name for result file (with path=RootPath{1})
146OutputDir=[Param.OutputSubDir Param.OutputDirExt];% subdirectory for output files
147OutputFile=fullfile_uvmat(RootPath{1},OutputDir,RootFile{1},'.nc','_1',i1_series{1}(1));
148CheckOverwrite=1;%default
149if isfield(Param,'CheckOverwrite')
150    CheckOverwrite=Param.CheckOverwrite;
151end
152if ~CheckOverwrite && exist(OutputFile,'file')
153    disp(['existing output file ' OutputFile ' already exists, skip to next field'])
154    return% skip iteration if the mode overwrite is desactivated and the result file already exists
155end
156
157if ~isfield(Param,'InputFields')
158    Param.InputFields.FieldName='';
159end
160
161%% prepare output file content
162    TimeData.ListGlobalAttribute={'Conventions','Project','CoordUnit','TimeUnit','ZPos'};
163    TimeData.Conventions='uvmat';
164    TimeData.Project='2016_Circumpolar';
165    TimeData.CoordUnit='cm';
166    TimeData.TimeUnit='s';
167    TimeData.ZPos=0;
168    TimeData.ListVarName={'time','radius','azimuth','U','V','curl','div'};
169    TimeData.VarDimName={'time','radius','azimuth',{'time','radius','azimuth'},{'time','radius','azimuth'}...
170                        {'time','radius','azimuth'},{'time','radius','azimuth'}};
171                    TimeData.VarAttribute{1}.Role='';
172                    TimeData.VarAttribute{2}.Role='';
173                    TimeData.VarAttribute{3}.Role='';
174                    TimeData.VarAttribute{4}.Role='vector_x';
175                    TimeData.VarAttribute{5}.Role='vector_y';
176                    TimeData.VarAttribute{6}.Role='scalar';
177                    TimeData.VarAttribute{7}.Role='scalar';
178                    TimeData.time=nan(1,NbField);
179                    TimeData.radius=radius_shifted;
180                    TimeData.azimuth=azimuth_arclength;
181                    nby=numel(radius);
182                    nbx=numel(azimuth);
183                    TimeData.U=nan(NbField,nby,nbx);
184                    TimeData.V=nan(NbField,nby,nbx);
185                    TimeData.curl=nan(NbField,nby,nbx);
186                    TimeData.div=nan(NbField,nby,nbx);
187                   
188%     if ~isempty(timeread)
189%         MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'Time'}];
190%         MergeData.Time=timeread;
191%     end
192   
193    % time unit
194%     if isfield(Data{1},'TimeUnit')
195%         TimeUnit=Data{1}.TimeUnit;
196%         for iview =2:numel(Data)
197%             if ~(isfield(Data{iview},'TimeUnit')&& isequal(Data{iview}.TimeUnit,TimeUnit))
198%                 TimeUnit=[];%TimeUnit not the same for all fields
199%             end
200%         end
201%         if ~isempty(TimeUnit)
202%             MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'TimeUnit'}];
203%             MergeData.TimeUnit=TimeUnit;
204%         end
205%     end
206
207
208%% determine the file type on each line from the first input file
209ImageTypeOptions={'image','multimage','mmreader','video'};
210NcTypeOptions={'netcdf','civx','civdata'};
211for iview=1:NbView
212    if ~exist(filecell{iview,1}','file')
213        disp_uvmat('ERROR',['the first input file ' filecell{iview,1} ' does not exist'],checkrun)
214        return
215    end
216    [FileInfo{iview},MovieObject{iview}]=get_file_info(filecell{iview,1});
217    FileType{iview}=FileInfo{iview}.FileType;
218    CheckImage{iview}=~isempty(find(strcmp(FileType{iview},ImageTypeOptions)));% =1 for images
219    if CheckImage{iview}
220        ParamIn{iview}=MovieObject{iview};
221    else
222        ParamIn{iview}=Param.InputFields;
223    end
224    CheckNc{iview}=~isempty(find(strcmp(FileType{iview},NcTypeOptions)));% =1 for netcdf files
225    if ~isempty(j1_series{iview})
226        frame_index{iview}=j1_series{iview};
227    else
228        frame_index{iview}=i1_series{iview};
229    end
230end
231if NbView >1 && max(cell2mat(CheckImage))>0 && ~isfield(Param,'ProjObject')
232    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)
233    return
234end
235
236%% calibration data and timing: read the ImaDoc files
237[XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series);
238if size(time,1)>1
239    diff_time=max(max(diff(time)));
240    if diff_time>0
241        disp_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time) ': the mean time is chosen in result'],checkrun)
242    end   
243end
244if ~isempty(errormsg)
245    disp_uvmat('WARNING',errormsg,checkrun)
246end
247time=mean(time,1); %averaged time taken for the merged field
248
249%% height z
250    % position of projection plane
251   
252ProjObjectCoord=XmlData{1}.GeometryCalib.SliceCoord;
253CoordUnit=XmlData{1}.GeometryCalib.CoordUnit;
254for iview =2:numel(XmlData)
255    if ~(isfield(XmlData{iview},'GeometryCalib')&& isequal(XmlData{iview}.GeometryCalib.SliceCoord,ProjObjectCoord))...
256        disp('error: geometric calibration missing')
257        return
258    end
259end
260
261
262%% coordinate transform or other user defined transform
263transform_fct='';%default fct handle
264if isfield(Param,'FieldTransform')&&~isempty(Param.FieldTransform.TransformName)
265        currentdir=pwd;
266        cd(Param.FieldTransform.TransformPath)
267        transform_fct=str2func(Param.FieldTransform.TransformName);
268        cd (currentdir)
269        if isfield(Param,'TransformInput')
270            for iview=1:NbView
271            XmlData{iview}.TransformInput=Param.TransformInput;
272            end
273        end       
274end
275%%%%%%%%%%%% END STANDARD PART  %%%%%%%%%%%%
276 % EDIT FROM HERE
277
278%% check the validity of  input file types
279for iview=1:NbView
280    if ~isequal(CheckNc{iview},1)
281        disp_uvmat('ERROR','input files needs to be in netcdf (extension .nc)',checkrun)
282        return
283    end
284end
285
286% %% output file type
287% FileExtOut='.nc'; %netcdf output
288% if isempty(j1_series{1})
289%     NomTypeOut='_1';
290% else
291%     NomTypeOut='_1_1';
292% end
293% RootFileOut=RootFile{1};
294% for iview=2:NbView
295%     if ~strcmp(RootFile{iview},RootFile{1})
296%         RootFileOut='mproj';
297%         break
298%     end
299% end
300
301
302%% MAIN LOOP ON FIELDS
303%%%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%%
304% for i_slice=1:NbSlice
305%     index_slice=i_slice:NbSlice:NbField;% select file indices of the slice
306%     NbFiles=0;
307%     nbmissing=0;
308
309%%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%%
310tstart=tic; %used to record the computing time
311
312
313for index=1:NbField
314    update_waitbar(WaitbarHandle,index/NbField)
315    if ~isempty(RUNHandle) && ~strcmp(get(RUNHandle,'BusyAction'),'queue')
316        disp('program stopped by user')
317        return
318    end
319   
320%     %% generating the name of the merged field
321%     i1=i1_series{1}(index);
322%     if ~isempty(i2_series{end})
323%         i2=i2_series{end}(index);
324%     else
325%         i2=i1;
326%     end
327%     j1=1;
328%     j2=1;
329%     if ~isempty(j1_series{1})
330%         j1=j1_series{1}(index);
331%         if ~isempty(j2_series{end})
332%             j2=j2_series{end}(index);
333%         else
334%             j2=j1;
335%         end
336%     end
337%    % OutputFile=fullfile_uvmat(RootPath{1},OutputDir,RootFileOut,FileExtOut,NomTypeOut,i1,i2,j1,j2);
338%     if ~CheckOverwrite && exist(OutputFile,'file')
339%         disp(['existing output file ' OutputFile ' already exists, skip to next field'])
340%         continue% skip iteration if the mode overwrite is desactivated and the result file already exists
341%     end
342   
343    %% z position
344    ZIndex=mod(i1_series{1}(index)-1,NbSlice_calib{1})+1;%Zindex for phys transform
345    ZPos=ProjObjectCoord(ZIndex,3);
346    if index==1
347    TimeData.ZPos=ZPos;
348    else
349        if ZPos~=TimeData.ZPos
350            disp('inconsistent z positions in the series')
351            return
352        end
353    end
354    % radius of the topography section at z pos
355    TopoRadius=0;
356    ind_mask=[];
357    if ZPos<20
358        TopoRadius=40*sin(acos((20+ZPos)/40));
359        ind_mask=(XI'.*XI'+YI'.*YI')<TopoRadius*TopoRadius;% indidces of data to mask
360    end
361   
362    %%%%%%%%%%%%%%%% loop on views (input lines) %%%%%%%%%%%%%%%%
363    Data=cell(1,NbView);%initiate the set Data
364    timeread=zeros(1,NbView);
365    for iview=1:NbView
366        %% reading input file(s)
367        [Data{iview},tild,errormsg] = read_field(filecell{iview,index},FileType{iview},ParamIn{iview},frame_index{iview}(index));
368        if ~isempty(errormsg)
369            disp_uvmat('ERROR',['ERROR in merge_proj/read_field/' errormsg],checkrun)
370            return
371        end
372        disp([filecell{iview,index} 'read'])
373        ListVar=Data{iview}.ListVarName;
374        for ilist=1:numel(ListVar)
375            Data{iview}.(ListVar{ilist})=double(Data{iview}.(ListVar{ilist}));% transform all fields in double before all operations
376        end
377        % get the time defined in the current file if not already defined from the xml file
378        if ~isempty(time) && isfield(Data{iview},'Time')
379            timeread(iview)=Data{iview}.Time;
380        end
381        if ~isempty(NbSlice_calib)
382            Data{iview}.ZIndex=mod(i1_series{iview}(index)-1,NbSlice_calib{iview})+1;%Zindex for phys transform
383        end
384       
385        %% transform the input field (e.g; phys) if requested (no transform involving two input fields)
386        if ~isempty(transform_fct)
387            if nargin(transform_fct)>=2
388                Data{iview}=transform_fct(Data{iview},XmlData{iview});
389            else
390                Data{iview}=transform_fct(Data{iview});
391            end
392        end
393       
394        %% calculate tps coefficients
395        Data{iview}=tps_coeff_field(Data{iview},1);
396       
397        %% projection on the polar grid
398        [DataOut,VarAttribute,errormsg]=calc_field_tps(Data{iview}.Coord_tps,Data{iview}.NbCentre,Data{iview}.SubRange,...
399            cat(3,Data{iview}.U_tps,Data{iview}.V_tps),FieldNames,cat(3,XI,YI));
400        % set to NaN interpolation points which are too far from any initial data (more than 2 CoordMesh)
401        Coord=permute(Data{iview}.Coord_tps,[1 3 2]);
402        Coord=reshape(Coord,size(Coord,1)*size(Coord,2),2);
403        if exist('scatteredInterpolant','file')%recent Matlab versions
404            F=scatteredInterpolant(Coord,Coord(:,1),'nearest');
405            G=scatteredInterpolant(Coord,Coord(:,2),'nearest');
406        else
407            F=TriScatteredInterp(Coord,Coord(:,1),'nearest');
408            G=TriScatteredInterp(Coord,Coord(:,2),'nearest');
409        end
410        Distx=F(XI,YI)-XI;% diff of x coordinates with the nearest measurement point
411        Disty=G(XI,YI)-YI;% diff of y coordinates with the nearest measurement point
412        Dist=Distx.*Distx+Disty.*Disty;
413        ListVarName=(fieldnames(DataOut))';
414        VarDimName=cell(size(ListVarName));
415        ProjData{iview}=HeadData;
416        ProjData{iview}.ListVarName= [ProjData{iview}.ListVarName ListVarName];
417        ProjData{iview}.VarDimName={'radius','azimuth'};
418        ProjData{iview}.VarAttribute=[{'coord_x'} {'coord_y'} VarAttribute];
419        for ivar=1:numel(ListVarName)
420            ProjData{iview}.VarDimName{ivar+2}={'radius','azimuth'};
421            VarName=ListVarName{ivar};
422            if ~isempty(thresh2)
423                DataOut.(VarName)(Dist>thresh2)=NaN;% put to NaN interpolated positions further than RangeInterp from initial data
424            end
425            ProjData{iview}.(VarName)=(DataOut.(VarName))';
426        end
427       
428    end
429    %%%%%%%%%%%%%%%% END LOOP ON VIEWS %%%%%%%%%%%%%%%%
430   
431    %% merge the NbView fields
432    [MergeData,errormsg]=merge_field(ProjData);
433    if ~isempty(errormsg)
434        disp_uvmat('ERROR',errormsg,checkrun);
435        return
436    end
437   
438    %% time of the merged field: take the average of the different views
439    if ~isempty(time)
440        timeread=time(index);
441    elseif ~isempty(find(timeread))% time defined from ImaDoc
442        timeread=mean(timeread(timeread~=0));% take average over times form the files (when defined)
443    else
444        timeread=index;% take time=file index
445    end
446   
447    %% rotating the velocity vectors to the local axis of the polatr coordinates
448    Unew=MergeData.U.*sin(Azimuth')-MergeData.V.*cos(Azimuth');
449    Vnew=MergeData.U.*cos(Azimuth')+MergeData.V.*sin(Azimuth');
450    if ~isempty(ind_mask)
451        Unew(ind_mask)=NaN;
452        Vnew(ind_mask)=NaN;
453        MergeData.curl(ind_mask)=NaN;
454        MergeData.div(ind_mask)=NaN;
455    end
456    TimeData.time(index)=timeread;
457    TimeData.U(index,:,:)=Unew;
458    TimeData.V(index,:,:)=Vnew;
459    TimeData.curl(index,:,:)=MergeData.curl;
460    TimeData.div(index,:,:)=MergeData.div;
461     
462    %% recording the merged field
463   
464%     MergeData.ListGlobalAttribute={'Conventions','Project','InputFile_1','InputFile_end','NbCoord','NbDim','CoordUnit','ZPos'};
465%     MergeData.Conventions='uvmat';
466%     MergeData.NbCoord=2;
467%     MergeData.NbDim=2;
468%     MergeData.CoordUnit=CoordUnit;
469%     MergeData.ZPos=ZPos;
470%     % time interval of PIV
471%     Dt=[];
472%     if isfield(Data{1},'Dt')&& isnumeric(Data{1}.Dt)
473%         Dt=Data{1}.Dt;
474%     end
475%     for iview =2:numel(Data)
476%         if ~(isfield(Data{iview},'Dt')&& isequal(Data{iview}.Dt,Dt))
477%             Dt=[];%dt not the same for all fields
478%         end
479%     end
480%     if ~isempty(timeread)
481%         MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'Time'}];
482%         MergeData.Time=timeread;
483%     end
484%     
485%     % time unit
486%     if isfield(Data{1},'TimeUnit')
487%         TimeUnit=Data{1}.TimeUnit;
488%         for iview =2:numel(Data)
489%             if ~(isfield(Data{iview},'TimeUnit')&& isequal(Data{iview}.TimeUnit,TimeUnit))
490%                 TimeUnit=[];%TimeUnit not the same for all fields
491%             end
492%         end
493%         if ~isempty(TimeUnit)
494%             MergeData.ListGlobalAttribute=[MergeData.ListGlobalAttribute {'TimeUnit'}];
495%             MergeData.TimeUnit=TimeUnit;
496%         end
497%     end
498
499end
500    error=struct2nc(OutputFile,TimeData);%save result file
501    if isempty(error)
502        disp(['output file ' OutputFile ' written'])
503    else
504        disp(error)
505    end
506ellapsed_time=toc(tstart);
507disp(['total ellapsed time ' num2str(ellapsed_time/60,2) ' minutes'])
508disp([ num2str(ellapsed_time/(60*NbField),3) ' minutes per iteration'])
509
510%'merge_field': concatene fields
511%------------------------------------------------------------------------
512function [MergeData,errormsg]=merge_field(Data)
513%% default output
514if isempty(Data)||~iscell(Data)
515    MergeData=[];
516    return
517end
518errormsg='';
519MergeData=Data{1};% merged field= first field by default, reproduces the global attributes of the first field
520NbView=length(Data);
521if NbView==1% if there is only one field, just reproduce it in MergeData
522    return
523end
524
525%% group the variables (fields of 'Data') in cells of variables with the same dimensions
526[CellInfo,NbDim,errormsg]=find_field_cells(Data{1});
527if ~isempty(errormsg)
528    return
529end
530
531%LOOP ON GROUPS OF VARIABLES SHARING THE SAME DIMENSIONS
532for icell=1:length(CellInfo)
533    if NbDim(icell)~=1 % skip field cells which are of dim 1
534        switch CellInfo{icell}.CoordType
535            case 'scattered'  %case of input fields with unstructured coordinates: just concatene data
536                for ivar=CellInfo{icell}.VarIndex %  indices of the selected variables in the list FieldData.ListVarName
537                    VarName=Data{1}.ListVarName{ivar};
538                    for iview=2:NbView
539                        MergeData.(VarName)=[MergeData.(VarName); Data{iview}.(VarName)];
540                    end
541                end
542            case 'grid'        %case of fields defined on a structured  grid
543                FFName='';
544                if isfield(CellInfo{icell},'VarIndex_errorflag') && ~isempty(CellInfo{icell}.VarIndex_errorflag)
545                    FFName=Data{1}.ListVarName{CellInfo{icell}.VarIndex_errorflag};% name of errorflag variable
546                    MergeData.ListVarName(CellInfo{icell}.VarIndex_errorflag)=[];%remove error flag variable in MergeData (will use NaN instead)
547                    MergeData.VarDimName(CellInfo{icell}.VarIndex_errorflag)=[];
548                    MergeData.VarAttribute(CellInfo{icell}.VarIndex_errorflag)=[];
549                end
550                % select good data on each view
551                for ivar=CellInfo{icell}.VarIndex  %  indices of the selected variables in the list FieldData.ListVarName
552                    VarName=Data{1}.ListVarName{ivar};
553                    for iview=1:NbView
554                        if isempty(FFName)
555                            check_bad=isnan(Data{iview}.(VarName));%=0 for NaN data values, 1 else
556                        else
557                            check_bad=isnan(Data{iview}.(VarName)) | Data{iview}.(FFName)~=0;%=0 for NaN or error flagged data values, 1 else
558                        end
559                        Data{iview}.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag
560                        if iview==1
561                            %MergeData.(VarName)=Data{1}.(VarName);% initiate MergeData with the first field
562                            MergeData.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag
563                            NbAver=~check_bad;% initiate NbAver: the nbre of good data for each point
564                        elseif size(Data{iview}.(VarName))~=size(MergeData.(VarName))
565                            errormsg='sizes of the input matrices do not agree, need to interpolate on a common grid using a projection object';
566                            return
567                        else
568                            MergeData.(VarName)=MergeData.(VarName) +double(Data{iview}.(VarName));%add data
569                            NbAver=NbAver + ~check_bad;% add 1 for good data, 0 else
570                        end
571                    end
572                    MergeData.(VarName)(NbAver~=0)=MergeData.(VarName)(NbAver~=0)./NbAver(NbAver~=0);% take average of defined data at each point
573                    MergeData.(VarName)(NbAver==0)=NaN;% set to NaN the points with no good data
574                end
575        end
576        %         if isempty(FFName)
577        %             FFName='FF';
578        %         end
579        %         MergeData.(FFName)(NbAver~=0)=0;% flag to 1 undefined summed data
580        %         MergeData.(FFName)(NbAver==0)=1;% flag to 1 undefined summed data
581    end
582end
583
584
585   
Note: See TracBrowser for help on using the repository browser.