[573] | 1 | %'merge_proj': concatene several fields from series, can project them on a regular grid in phys coordinates |
---|
[457] | 2 | %------------------------------------------------------------------------ |
---|
[464] | 3 | % function ParamOut=merge_proj(Param) |
---|
[457] | 4 | %------------------------------------------------------------------------ |
---|
| 5 | %%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
[169] | 6 | % |
---|
| 7 | %OUTPUT |
---|
[596] | 8 | % ParamOut: sets options in the GUI series.fig needed for the function |
---|
[169] | 9 | % |
---|
| 10 | %INPUT: |
---|
[457] | 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 |
---|
[596] | 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 |
---|
[169] | 15 | % |
---|
[596] | 16 | % Param contains the elements:(use the menu bar command 'export/GUI config' in series to |
---|
| 17 | % see the current structure Param) |
---|
[457] | 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 |
---|
[474] | 21 | % .OutputDirExt: directory extension for data outputs |
---|
[457] | 22 | % .Action: .ActionName: name of the current activated function |
---|
| 23 | % .ActionPath: path of the current activated function |
---|
[596] | 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 | % |
---|
[457] | 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 |
---|
[596] | 32 | % .FieldName: name(s) of the field |
---|
[457] | 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 |
---|
[596] | 36 | % .Coord_y: name of y coordinate variable |
---|
| 37 | % .Coord_x: name of x coordinate variable |
---|
[457] | 38 | % .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object) |
---|
| 39 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
---|
| 40 | |
---|
[462] | 41 | function ParamOut=merge_proj(Param) |
---|
[29] | 42 | |
---|
[606] | 43 | %% set the input elements needed on the GUI series when the function is selected in the menu ActionName or InputTable refreshed |
---|
[592] | 44 | if isstruct(Param) && isequal(Param.Action.RUN,0) |
---|
[606] | 45 | ParamOut.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default) |
---|
[632] | 46 | ParamOut.WholeIndexRange='off';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default) |
---|
[606] | 47 | ParamOut.NbSlice='off'; %nbre of slices ('off' by default) |
---|
| 48 | ParamOut.VelType='one';% menu for selecting the velocity type (options 'off'/'one'/'two', 'off' by default) |
---|
| 49 | ParamOut.FieldName='one';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default) |
---|
| 50 | ParamOut.FieldTransform = 'on';%can use a transform function |
---|
| 51 | ParamOut.TransformPath=fullfile(fileparts(which('uvmat')),'transform_field');% path to transform functions (needed for compilation only) |
---|
| 52 | ParamOut.ProjObject='on';%can use projection object(option 'off'/'on', |
---|
[635] | 53 | ParamOut.Mask='on';%can use mask option (option 'off'/'on', 'off' by default) |
---|
[592] | 54 | ParamOut.OutputDirExt='.mproj';%set the output dir extension |
---|
[605] | 55 | 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 |
---|
| 56 | filecell=get_file_series(Param);%check existence of the first input file |
---|
| 57 | if ~exist(filecell{1,1},'file') |
---|
| 58 | msgbox_uvmat('WARNING','the first input file does not exist') |
---|
| 59 | elseif isequal(size(Param.InputTable,1),1) && ~isfield(Param,'ProjObject') |
---|
[635] | 60 | msgbox_uvmat('WARNING','You may need a projection object of type plane for merge_proj') |
---|
[605] | 61 | end |
---|
[606] | 62 | return |
---|
[29] | 63 | end |
---|
| 64 | |
---|
[457] | 65 | %%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%% |
---|
[632] | 66 | ParamOut=[]; %default output |
---|
[592] | 67 | %% read input parameters from an xml file if input is a file name (batch mode) |
---|
| 68 | checkrun=1; |
---|
[457] | 69 | if ischar(Param) |
---|
[592] | 70 | Param=xml2struct(Param);% read Param as input file (batch case) |
---|
| 71 | checkrun=0; |
---|
[374] | 72 | end |
---|
[624] | 73 | hseries=findobj(allchild(0),'Tag','series'); |
---|
| 74 | RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series |
---|
| 75 | WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series |
---|
[592] | 76 | |
---|
[624] | 77 | %% define the directory for result file (with path=RootPath{1}) |
---|
| 78 | OutputDir=[Param.OutputSubDir Param.OutputDirExt];% subdirectory for output files |
---|
| 79 | |
---|
[550] | 80 | if ~isfield(Param,'InputFields') |
---|
| 81 | Param.InputFields.FieldName=''; |
---|
| 82 | end |
---|
[457] | 83 | |
---|
[577] | 84 | %% root input file type |
---|
[457] | 85 | RootPath=Param.InputTable(:,1); |
---|
| 86 | RootFile=Param.InputTable(:,3); |
---|
| 87 | SubDir=Param.InputTable(:,2); |
---|
| 88 | NomType=Param.InputTable(:,4); |
---|
| 89 | FileExt=Param.InputTable(:,5); |
---|
[374] | 90 | [filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param); |
---|
[474] | 91 | %%%%%%%%%%%% |
---|
| 92 | % The cell array filecell is the list of input file names, while |
---|
| 93 | % filecell{iview,fileindex}: |
---|
[457] | 94 | % iview: line in the table corresponding to a given file series |
---|
| 95 | % fileindex: file index within the file series, |
---|
| 96 | % 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 |
---|
| 97 | % i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices |
---|
[474] | 98 | %%%%%%%%%%%% |
---|
[606] | 99 | % NbSlice=1;%default |
---|
| 100 | % if isfield(Param.IndexRange,'NbSlice')&&~isempty(Param.IndexRange.NbSlice) |
---|
| 101 | % NbSlice=Param.IndexRange.NbSlice; |
---|
| 102 | % end |
---|
| 103 | NbView=numel(i1_series);%number of input file series (lines in InputTable) |
---|
| 104 | NbField_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices) |
---|
| 105 | NbField_i=size(i1_series{1},2); %nb of fields for the i index |
---|
| 106 | NbField=NbField_j*NbField_i; %total number of fields |
---|
[457] | 107 | |
---|
| 108 | %determine the file type on each line from the first input file |
---|
[462] | 109 | ImageTypeOptions={'image','multimage','mmreader','video'}; |
---|
| 110 | NcTypeOptions={'netcdf','civx','civdata'}; |
---|
[606] | 111 | for iview=1:NbView |
---|
[462] | 112 | if ~exist(filecell{iview,1}','file') |
---|
[474] | 113 | displ_uvmat('ERROR',['the first input file ' filecell{iview,1} ' does not exist'],checkrun) |
---|
[462] | 114 | return |
---|
| 115 | end |
---|
| 116 | [FileType{iview},FileInfo{iview},MovieObject{iview}]=get_file_type(filecell{iview,1}); |
---|
| 117 | CheckImage{iview}=~isempty(find(strcmp(FileType{iview},ImageTypeOptions)));% =1 for images |
---|
| 118 | CheckNc{iview}=~isempty(find(strcmp(FileType{iview},NcTypeOptions)));% =1 for netcdf files |
---|
| 119 | if ~isempty(j1_series{iview}) |
---|
| 120 | frame_index{iview}=j1_series{iview}; |
---|
| 121 | else |
---|
| 122 | frame_index{iview}=i1_series{iview}; |
---|
| 123 | end |
---|
[457] | 124 | end |
---|
| 125 | |
---|
| 126 | %% calibration data and timing: read the ImaDoc files |
---|
[470] | 127 | [XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series); |
---|
| 128 | if size(time,1)>1 |
---|
[457] | 129 | diff_time=max(max(diff(time))); |
---|
[474] | 130 | if diff_time>0 |
---|
| 131 | displ_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time)],checkrun) |
---|
[457] | 132 | end |
---|
| 133 | end |
---|
| 134 | |
---|
[409] | 135 | %% coordinate transform or other user defined transform |
---|
[606] | 136 | transform_fct='';%default fct handle |
---|
[478] | 137 | if isfield(Param,'FieldTransform')&&~isempty(Param.FieldTransform.TransformName) |
---|
[606] | 138 | currentdir=pwd; |
---|
| 139 | cd(Param.FieldTransform.TransformPath) |
---|
| 140 | transform_fct=str2func(Param.FieldTransform.TransformName); |
---|
| 141 | cd (currentdir) |
---|
[374] | 142 | end |
---|
[457] | 143 | %%%%%%%%%%%% END STANDARD PART %%%%%%%%%%%% |
---|
| 144 | % EDIT FROM HERE |
---|
[116] | 145 | |
---|
[457] | 146 | %% check the validity of input file types |
---|
| 147 | if CheckImage{1} |
---|
| 148 | FileExtOut='.png'; % write result as .png images for image inputs |
---|
| 149 | elseif CheckNc{1} |
---|
| 150 | FileExtOut='.nc';% write result as .nc files for netcdf inputs |
---|
[474] | 151 | else |
---|
| 152 | displ_uvmat('ERROR',['invalid file type input ' FileType{1}],checkrun) |
---|
[457] | 153 | return |
---|
| 154 | end |
---|
[606] | 155 | for iview=1:NbView |
---|
[632] | 156 | if ~isequal(CheckImage{iview},CheckImage{1})||~isequal(CheckNc{iview},CheckNc{1}) |
---|
[474] | 157 | displ_uvmat('ERROR','input set of input series: need either netcdf either image series',checkrun) |
---|
[632] | 158 | return |
---|
[464] | 159 | end |
---|
[457] | 160 | end |
---|
[462] | 161 | NomTypeOut=NomType;% output file index will indicate the first and last ref index in the series |
---|
[457] | 162 | |
---|
[642] | 163 | %% mask (TODO: case of multilevels) |
---|
| 164 | if Param.CheckMask |
---|
| 165 | MaskData=cell(NbView,1); |
---|
| 166 | MaskSubDir=regexprep(Param.InputTable{iview,2},'\..*','');%take the root part of SubDir, before the first dot '.' |
---|
| 167 | MaskName=fullfile(Param.InputTable{iview,1},[MaskSubDir '.mask'],'mask_1.png'); |
---|
| 168 | if exist(MaskName,'file') |
---|
| 169 | [MaskData{iview},tild,errormsg] = read_field(MaskName,'image'); |
---|
| 170 | if ~isempty(transform_fct) && nargin(transform_fct)>=2 |
---|
| 171 | MaskData{iview}=transform_fct(MaskData,XmlData{iview}); |
---|
| 172 | end |
---|
| 173 | end |
---|
| 174 | end |
---|
| 175 | |
---|
[457] | 176 | %% Set field names and velocity types |
---|
[462] | 177 | %use Param.InputFields for all views |
---|
[457] | 178 | |
---|
[640] | 179 | %% MAIN LOOP ON FIELDS |
---|
[457] | 180 | %%%%%%%%%%%%% STANDARD PART (DO NOT EDIT) %%%%%%%%%%%% |
---|
[606] | 181 | % for i_slice=1:NbSlice |
---|
| 182 | % index_slice=i_slice:NbSlice:NbField;% select file indices of the slice |
---|
| 183 | % NbFiles=0; |
---|
| 184 | % nbmissing=0; |
---|
[474] | 185 | |
---|
[457] | 186 | %%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%% |
---|
[606] | 187 | for index=1:NbField |
---|
[626] | 188 | update_waitbar(WaitbarHandle,index/NbField) |
---|
[642] | 189 | if ~isempty(RUNHandle) && ~strcmp(get(RUNHandle,'BusyAction'),'queue') |
---|
[624] | 190 | disp('program stopped by user') |
---|
[606] | 191 | return |
---|
| 192 | end |
---|
| 193 | %%%%%%%%%%%%%%%% loop on views (input lines) %%%%%%%%%%%%%%%% |
---|
| 194 | Data=cell(1,NbView);%initiate the set Data |
---|
| 195 | nbtime=0; |
---|
| 196 | for iview=1:NbView |
---|
| 197 | %% reading input file(s) |
---|
| 198 | [Data{iview},tild,errormsg] = read_field(filecell{iview,index},FileType{iview},Param.InputFields,frame_index{iview}(index)); |
---|
| 199 | if ~isempty(errormsg) |
---|
[614] | 200 | disp(['ERROR in merge_proj/read_field/' errormsg]) |
---|
| 201 | return |
---|
[457] | 202 | end |
---|
[606] | 203 | timeread(iview)=0; |
---|
| 204 | if isfield(Data{iview},'Time') |
---|
| 205 | timeread(iview)=Data{iview}.Time; |
---|
| 206 | nbtime=nbtime+1; |
---|
[595] | 207 | end |
---|
[606] | 208 | if ~isempty(NbSlice_calib) |
---|
| 209 | Data{iview}.ZIndex=mod(i1_series{iview}(index)-1,NbSlice_calib{iview})+1;%Zindex for phys transform |
---|
| 210 | end |
---|
[642] | 211 | |
---|
[632] | 212 | %% transform the input field (e.g; phys) if requested (no transform involving two input fields) |
---|
[606] | 213 | if ~isempty(transform_fct) |
---|
| 214 | if nargin(transform_fct)>=2 |
---|
| 215 | Data{iview}=transform_fct(Data{iview},XmlData{iview}); |
---|
| 216 | else |
---|
| 217 | Data{iview}=transform_fct(Data{iview}); |
---|
[29] | 218 | end |
---|
[606] | 219 | end |
---|
[632] | 220 | |
---|
[642] | 221 | %% calculate tps coefficients if needed |
---|
[614] | 222 | check_proj_tps= isfield(Param,'ProjObject')&&~isempty(Param.ProjObject)&& strcmp(Param.ProjObject.ProjMode,'interp_tps')&&~isfield(Data{iview},'Coord_tps'); |
---|
[606] | 223 | Data{iview}=tps_coeff_field(Data{iview},check_proj_tps); |
---|
[642] | 224 | |
---|
[606] | 225 | %% projection on object (gridded plane) |
---|
| 226 | if Param.CheckObject |
---|
| 227 | [Data{iview},errormsg]=proj_field(Data{iview},Param.ProjObject); |
---|
| 228 | if ~isempty(errormsg) |
---|
[614] | 229 | disp(['ERROR in merge_proge/proj_field: ' errormsg]) |
---|
[606] | 230 | return |
---|
[29] | 231 | end |
---|
[464] | 232 | end |
---|
[640] | 233 | |
---|
| 234 | %% mask |
---|
[642] | 235 | if Param.CheckMask && ~isempty(MaskData{iview}) |
---|
| 236 | [Data{iview},errormsg]=mask_proj(Data{iview},MaskData{iview}); |
---|
[640] | 237 | end |
---|
[606] | 238 | end |
---|
| 239 | %----------END LOOP ON VIEWS---------------------- |
---|
| 240 | |
---|
| 241 | %% merge the NbView fields |
---|
| 242 | MergeData=merge_field(Data); |
---|
| 243 | if isfield(MergeData,'Txt') |
---|
[614] | 244 | disp(MergeData.Txt); |
---|
[606] | 245 | return |
---|
| 246 | end |
---|
| 247 | |
---|
| 248 | % time of the merged field: |
---|
| 249 | if ~isempty(time)% time defined from ImaDoc |
---|
| 250 | timeread=time(:,index); |
---|
| 251 | end |
---|
| 252 | timeread=mean(timeread); |
---|
| 253 | |
---|
| 254 | % generating the name of the merged field |
---|
| 255 | i1=i1_series{iview}(index); |
---|
| 256 | if ~isempty(i2_series{iview}) |
---|
| 257 | i2=i2_series{iview}(index); |
---|
| 258 | else |
---|
| 259 | i2=i1; |
---|
| 260 | end |
---|
| 261 | j1=1; |
---|
| 262 | j2=1; |
---|
| 263 | if ~isempty(j1_series{iview}) |
---|
| 264 | j1=j1_series{iview}(index); |
---|
| 265 | if ~isempty(j2_series{iview}) |
---|
| 266 | j2=j2_series{iview}(index); |
---|
| 267 | else |
---|
| 268 | j2=j1; |
---|
[464] | 269 | end |
---|
[606] | 270 | end |
---|
| 271 | OutputFile=fullfile_uvmat(RootPath{1},OutputDir,RootFile{1},FileExtOut,NomType{1},i1,i2,j1,j2); |
---|
| 272 | |
---|
| 273 | % recording the merged field |
---|
| 274 | if CheckImage{1} %in case of input images an image is produced |
---|
| 275 | if isa(MergeData.A,'uint8') |
---|
| 276 | bitdepth=8; |
---|
| 277 | elseif isa(MergeData.A,'uint16') |
---|
| 278 | bitdepth=16; |
---|
[29] | 279 | end |
---|
[606] | 280 | imwrite(MergeData.A,OutputFile,'BitDepth',bitdepth); |
---|
| 281 | %write xml calibration file |
---|
| 282 | siz=size(MergeData.A); |
---|
| 283 | npy=siz(1); |
---|
| 284 | npx=siz(2); |
---|
| 285 | if isfield(MergeData,'VarAttribute')&&isfield(MergeData.VarAttribute{1},'Coord_2')&&isfield(MergeData.VarAttribute{1},'Coord_1') |
---|
| 286 | Rangx=MergeData.VarAttribute{1}.Coord_2; |
---|
| 287 | Rangy=MergeData.VarAttribute{1}.Coord_1; |
---|
| 288 | elseif isfield(MergeData,'AX')&& isfield(MergeData,'AY') |
---|
| 289 | Rangx=[MergeData.AX(1) MergeData.AX(end)]; |
---|
| 290 | Rangy=[MergeData.AY(1) MergeData.AY(end)]; |
---|
[464] | 291 | else |
---|
[606] | 292 | Rangx=[0.5 npx-0.5]; |
---|
| 293 | Rangy=[npy-0.5 0.5];%default |
---|
[464] | 294 | end |
---|
[606] | 295 | pxcmx=(npx-1)/(Rangx(2)-Rangx(1)); |
---|
| 296 | pxcmy=(npy-1)/(Rangy(1)-Rangy(2)); |
---|
| 297 | T_x=-pxcmx*Rangx(1)+0.5; |
---|
| 298 | T_y=-pxcmy*Rangy(2)+0.5; |
---|
| 299 | GeometryCal.focal=1; |
---|
| 300 | GeometryCal.R=[pxcmx,0,0;0,pxcmy,0;0,0,1]; |
---|
| 301 | GeometryCal.Tx_Ty_Tz=[T_x T_y 1]; |
---|
| 302 | ImaDoc.GeometryCalib=GeometryCal; |
---|
| 303 | % t=struct2xml(ImaDoc); |
---|
| 304 | % t=set(t,1,'name','ImaDoc'); |
---|
| 305 | % save(t,[filebase_merge '.xml']) |
---|
| 306 | % display([filebase_merge '.xml saved']) |
---|
| 307 | else |
---|
| 308 | MergeData.ListGlobalAttribute={'Conventions','Project','InputFile_1','InputFile_end','nb_coord','nb_dim','dt','Time','civ'}; |
---|
| 309 | MergeData.Conventions='uvmat'; |
---|
| 310 | MergeData.nb_coord=2; |
---|
| 311 | MergeData.nb_dim=2; |
---|
| 312 | dt=[]; |
---|
| 313 | if isfield(Data{1},'dt')&& isnumeric(Data{1}.dt) |
---|
| 314 | dt=Data{1}.dt; |
---|
| 315 | end |
---|
| 316 | for iview =2:numel(Data) |
---|
| 317 | if ~(isfield(Data{iview},'dt')&& isequal(Data{iview}.dt,dt)) |
---|
| 318 | dt=[];%dt not the same for all fields |
---|
[464] | 319 | end |
---|
| 320 | end |
---|
[606] | 321 | if isempty(dt) |
---|
| 322 | MergeData.ListGlobalAttribute(6)=[]; |
---|
[29] | 323 | else |
---|
[606] | 324 | MergeData.dt=dt; |
---|
[29] | 325 | end |
---|
[606] | 326 | MergeData.Time=timeread; |
---|
| 327 | error=struct2nc(OutputFile,MergeData);%save result file |
---|
| 328 | if isempty(error) |
---|
| 329 | display(['output file ' OutputFile ' written']) |
---|
| 330 | else |
---|
| 331 | display(error) |
---|
| 332 | end |
---|
[29] | 333 | end |
---|
| 334 | end |
---|
| 335 | |
---|
[606] | 336 | |
---|
[222] | 337 | %'merge_field': concatene fields |
---|
| 338 | %------------------------------------------------------------------------ |
---|
[29] | 339 | function MergeData=merge_field(Data) |
---|
[222] | 340 | %% default output |
---|
[29] | 341 | if isempty(Data)||~iscell(Data) |
---|
| 342 | MergeData=[]; |
---|
| 343 | return |
---|
| 344 | end |
---|
| 345 | MergeData=Data{1};%default |
---|
| 346 | error=0; |
---|
[606] | 347 | NbView=length(Data); |
---|
| 348 | if NbView==1 |
---|
[29] | 349 | return |
---|
| 350 | end |
---|
[222] | 351 | |
---|
[522] | 352 | %% group the variables (fields of 'Data') in cells of variables with the same dimensions |
---|
| 353 | [CellVarIndex,NbDim,VarTypeCell]=find_field_cells(Data{1}); |
---|
[89] | 354 | %LOOP ON GROUPS OF VARIABLES SHARING THE SAME DIMENSIONS |
---|
| 355 | % CellVarIndex=cells of variable index arrays |
---|
| 356 | for icell=1:length(CellVarIndex) |
---|
| 357 | if NbDim(icell)==1 |
---|
| 358 | continue |
---|
| 359 | end |
---|
| 360 | VarIndex=CellVarIndex{icell};% indices of the selected variables in the list FieldData.ListVarName |
---|
| 361 | VarType=VarTypeCell{icell}; |
---|
| 362 | ivar_X=VarType.coord_x; |
---|
| 363 | ivar_Y=VarType.coord_y; |
---|
| 364 | ivar_FF=VarType.errorflag; |
---|
| 365 | if isempty(ivar_X) |
---|
| 366 | test_grid=1;%test for input data on regular grid (e.g. image)coordinates |
---|
| 367 | else |
---|
| 368 | if length(ivar_Y)~=1 |
---|
[474] | 369 | displ_uvmat('ERROR','y coordinate missing in proj_field.m',checkrun) |
---|
[89] | 370 | return |
---|
| 371 | end |
---|
| 372 | test_grid=0; |
---|
| 373 | end |
---|
| 374 | %case of input fields with unstructured coordinates |
---|
| 375 | if ~test_grid |
---|
| 376 | for ivar=VarIndex |
---|
| 377 | VarName=MergeData.ListVarName{ivar}; |
---|
[606] | 378 | for iview=1:NbView |
---|
[522] | 379 | MergeData.(VarName)=[MergeData.(VarName); Data{iview}.(VarName)]; |
---|
[89] | 380 | end |
---|
| 381 | end |
---|
| 382 | %case of fields defined on a structured grid |
---|
| 383 | else |
---|
| 384 | testFF=0; |
---|
[606] | 385 | for iview=2:NbView |
---|
[89] | 386 | for ivar=VarIndex |
---|
| 387 | VarName=MergeData.ListVarName{ivar}; |
---|
| 388 | if isfield(MergeData,'VarAttribute') |
---|
| 389 | if length(MergeData.VarAttribute)>=ivar && isfield(MergeData.VarAttribute{ivar},'Role') && isequal(MergeData.VarAttribute{ivar}.Role,'errorflag') |
---|
| 390 | testFF=1; |
---|
| 391 | end |
---|
| 392 | end |
---|
[522] | 393 | MergeData.(VarName)=MergeData.(VarName) + Data{iview}.(VarName); |
---|
[89] | 394 | end |
---|
| 395 | end |
---|
| 396 | if testFF |
---|
[606] | 397 | nbaver=NbView-MergeData.FF; |
---|
[89] | 398 | indgood=find(nbaver>0); |
---|
| 399 | for ivar=VarIndex |
---|
| 400 | VarName=MergeData.ListVarName{ivar}; |
---|
[522] | 401 | MergeData.(VarName)(indgood)=double(MergeData.(VarName)(indgood))./nbaver(indgood); |
---|
[89] | 402 | end |
---|
| 403 | else |
---|
| 404 | for ivar=VarIndex |
---|
| 405 | VarName=MergeData.ListVarName{ivar}; |
---|
[606] | 406 | MergeData.(VarName)=double(MergeData.(VarName))./NbView; |
---|
[89] | 407 | end |
---|
| 408 | end |
---|
| 409 | end |
---|
| 410 | end |
---|
[222] | 411 | |
---|
[89] | 412 | |
---|