[884] | 1 | %'aver_stat': calculate field average over a time series
|
---|
| 2 | %------------------------------------------------------------------------
|
---|
| 3 | % function ParamOut=aver_stat(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 | %
|
---|
[960] | 16 | % Param contains the elements:(use the menu bar command 'export/GUI config' in series to
|
---|
[884] | 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
|
---|
[960] | 27 | %
|
---|
[884] | 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 | %=======================================================================
|
---|
[1107] | 42 | % Copyright 2008-2022, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
|
---|
[884] | 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 |
|
---|
| 59 | function ParamOut=aver_stat(Param)
|
---|
| 60 |
|
---|
| 61 | %% set the input elements needed on the GUI series when the action is selected in the menu ActionName
|
---|
| 62 | if isstruct(Param) && isequal(Param.Action.RUN,0)% function activated from the GUI series but not RUN
|
---|
| 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='on'; %nbre of slices ('off' by default)
|
---|
| 66 | ParamOut.VelType='two';% menu for selecting the velocity type (options 'off'/'one'/'two', 'off' by default)
|
---|
| 67 | ParamOut.FieldName='two';% 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.ProjObject='on';%can use projection object(option 'off'/'on',
|
---|
| 70 | ParamOut.Mask='off';%can use mask option (option 'off'/'on', 'off' by default)
|
---|
| 71 | ParamOut.OutputDirExt='.stat';%set the output dir extension
|
---|
[960] | 72 | ParamOut.OutputFileMode='NbSlice';% '=NbInput': one output file per input file index, '=NbInput_i': one file per input file index i, '=NbSlice': one file per slice
|
---|
| 73 | % check for selection of a projection object
|
---|
[884] | 74 | hseries=findobj(allchild(0),'Tag','series');% handles of the GUI series
|
---|
| 75 | if ~isfield(Param,'ProjObject')
|
---|
| 76 | answer=msgbox_uvmat('INPUT_Y-N','use a projection object?');
|
---|
| 77 | if strcmp(answer,'Yes')
|
---|
| 78 | hhseries=guidata(hseries);
|
---|
| 79 | set(hhseries.CheckObject,'Visible','on')
|
---|
| 80 | set(hhseries.CheckObject,'Value',1)
|
---|
| 81 | Param.CheckObject=1;
|
---|
| 82 | series('CheckObject_Callback',hseries,[],hhseries); %file input with xml reading in uvmat, show the image in phys coordinates
|
---|
| 83 | end
|
---|
| 84 | end
|
---|
| 85 | % introduce bin size for histograms
|
---|
| 86 | if isfield(Param,'CheckObject') && Param.CheckObject
|
---|
| 87 | SeriesData=get(hseries,'UserData');
|
---|
| 88 | if ismember(SeriesData.ProjObject.ProjMode,{'inside','outside'})
|
---|
| 89 | answer=msgbox_uvmat('INPUT_TXT','set bin size for histograms (or keep ''auto'' by default)?','auto');
|
---|
| 90 | ParamOut.ActionInput.VarMesh=str2num(answer);
|
---|
| 91 | end
|
---|
| 92 | end
|
---|
| 93 | % check the existence of the first and last file in the series
|
---|
| 94 | first_j=[];
|
---|
| 95 | if isfield(Param.IndexRange,'first_j'); first_j=Param.IndexRange.first_j; end
|
---|
| 96 | last_j=[];
|
---|
| 97 | if isfield(Param.IndexRange,'last_j'); last_j=Param.IndexRange.last_j; end
|
---|
| 98 | PairString='';
|
---|
| 99 | if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString; end
|
---|
| 100 | [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString);
|
---|
| 101 | FirstFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},...
|
---|
| 102 | Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2);
|
---|
| 103 | if ~exist(FirstFileName,'file')
|
---|
| 104 | msgbox_uvmat('WARNING',['the first input file ' FirstFileName ' does not exist'])
|
---|
| 105 | else
|
---|
| 106 | [i1,i2,j1,j2] = get_file_index(Param.IndexRange.last_i,last_j,PairString);
|
---|
| 107 | LastFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},...
|
---|
[960] | 108 | Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2);
|
---|
[884] | 109 | if ~exist(LastFileName,'file')
|
---|
[960] | 110 | msgbox_uvmat('WARNING',['the last input file ' LastFileName ' does not exist'])
|
---|
[884] | 111 | end
|
---|
| 112 | end
|
---|
[959] | 113 | % determine volume scan mode
|
---|
[960] | 114 | prompt = {'volume scan mode (Yes/No)'};
|
---|
[959] | 115 | dlg_title = 'determine volume scan';
|
---|
| 116 | num_lines= 1;
|
---|
| 117 | def = { 'No'};
|
---|
[960] | 118 | answer=msgbox_uvmat('INPUT_Y-N','volume scan mode (OK/No)?');
|
---|
| 119 | % answer = inputdlg(prompt,dlg_title,num_lines,def);
|
---|
[959] | 120 | if isempty(answer)
|
---|
| 121 | return
|
---|
| 122 | end
|
---|
| 123 | %check input consistency
|
---|
[960] | 124 | if strcmp(answer,'Yes')
|
---|
| 125 | ParamOut.NbSlice=1;% set NbSlice to 1 ( for i index)
|
---|
| 126 | ParamOut.ActionInput.CheckVolume=1;
|
---|
[959] | 127 | end
|
---|
[884] | 128 | return
|
---|
| 129 | end
|
---|
| 130 |
|
---|
| 131 | %%%%%%%%%%%% STANDARD PART %%%%%%%%%%%%
|
---|
| 132 | ParamOut=[];%default output
|
---|
| 133 | %% read input parameters from an xml file if input is a file name (batch mode)
|
---|
| 134 | checkrun=1;
|
---|
| 135 | if ischar(Param)
|
---|
| 136 | Param=xml2struct(Param);% read Param as input file (batch case)
|
---|
| 137 | checkrun=0;
|
---|
| 138 | end
|
---|
| 139 | hseries=findobj(allchild(0),'Tag','series');
|
---|
| 140 | RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series
|
---|
| 141 | WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series
|
---|
| 142 |
|
---|
| 143 | %% define the directory for result file (with path=RootPath{1})
|
---|
| 144 | OutputDir=[Param.OutputSubDir Param.OutputDirExt];
|
---|
[960] | 145 |
|
---|
[884] | 146 | %% root input file(s) name, type and index series
|
---|
| 147 | RootPath=Param.InputTable(:,1);
|
---|
| 148 | RootFile=Param.InputTable(:,3);
|
---|
| 149 | SubDir=Param.InputTable(:,2);
|
---|
| 150 | NomType=Param.InputTable(:,4);
|
---|
| 151 | FileExt=Param.InputTable(:,5);
|
---|
[960] | 152 |
|
---|
[884] | 153 | hdisp=disp_uvmat('WAITING...','checking the file series',checkrun);
|
---|
[960] | 154 | % gives the series of input file names and indices set by the input parameters:
|
---|
[884] | 155 | [filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param);
|
---|
| 156 | % filecell{iview,fileindex}:
|
---|
| 157 | % iview: line in the table corresponding to a given file series
|
---|
[960] | 158 | % fileindex: file index with i and j reshaped as a 1D array
|
---|
| 159 | % 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
|
---|
[884] | 160 | % i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices
|
---|
[960] | 161 | if ~isempty(hdisp),delete(hdisp),end;%end the waiting display
|
---|
| 162 |
|
---|
[884] | 163 | NbView=numel(i1_series);%number of input file series (lines in InputTable)
|
---|
| 164 | NbField_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices)
|
---|
| 165 | NbField_i=size(i1_series{1},2); %nb of fields for the i index
|
---|
| 166 | NbField=NbField_j*NbField_i; %total number of fields
|
---|
| 167 |
|
---|
[960] | 168 | %% determine the file type on each line from the first input file
|
---|
[884] | 169 | NcTypeOptions={'netcdf','civx','civdata'};
|
---|
| 170 | for iview=1:NbView
|
---|
| 171 | if ~exist(filecell{iview,1}','file')
|
---|
| 172 | disp_uvmat('ERROR',['the first input file ' filecell{iview,1} ' does not exist'],checkrun)
|
---|
| 173 | return
|
---|
| 174 | end
|
---|
| 175 | [FileInfo{iview},MovieObject{iview}]=get_file_info(filecell{iview,1});
|
---|
| 176 | FileType{iview}=FileInfo{iview}.FileType;
|
---|
[1033] | 177 | CheckImage{iview}=strcmp(FileInfo{iview}.FieldType,'image');% =1 for images
|
---|
[884] | 178 | CheckNc{iview}=~isempty(find(strcmp(FileType{iview},NcTypeOptions)));% =1 for netcdf files
|
---|
| 179 | if ~isempty(j1_series{iview})
|
---|
| 180 | frame_index{iview}=j1_series{iview};
|
---|
| 181 | else
|
---|
| 182 | frame_index{iview}=i1_series{iview};
|
---|
| 183 | end
|
---|
| 184 | end
|
---|
| 185 |
|
---|
| 186 | %% calibration data and timing: read the ImaDoc files
|
---|
| 187 | [XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series);
|
---|
| 188 | if size(time,1)>1
|
---|
| 189 | diff_time=max(max(diff(time)));
|
---|
| 190 | if diff_time>0
|
---|
| 191 | disp_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time)],checkrun)
|
---|
[960] | 192 | end
|
---|
[884] | 193 | end
|
---|
| 194 |
|
---|
| 195 | %% coordinate transform or other user defined transform
|
---|
| 196 | transform_fct='';%default
|
---|
| 197 | if isfield(Param,'FieldTransform')&&~isempty(Param.FieldTransform.TransformName)
|
---|
| 198 | addpath(Param.FieldTransform.TransformPath)
|
---|
| 199 | transform_fct=str2func(Param.FieldTransform.TransformName);
|
---|
| 200 | rmpath(Param.FieldTransform.TransformPath)
|
---|
| 201 | if isfield(Param,'TransformInput')
|
---|
[960] | 202 | XmlData{1}.TransformInput=Param.TransformInput;
|
---|
| 203 | end
|
---|
[884] | 204 | end
|
---|
| 205 |
|
---|
| 206 | %%%%%%%%%%%% END STANDARD PART %%%%%%%%%%%%
|
---|
[960] | 207 | % EDIT FROM HERE
|
---|
[884] | 208 |
|
---|
| 209 | %% check the validity of input file types and set the output file type
|
---|
| 210 | if CheckImage{1}
|
---|
| 211 | FileExtOut='.png'; % write result as .png images for image inputs
|
---|
| 212 | elseif CheckNc{1}
|
---|
| 213 | FileExtOut='.nc';% write result as .nc files for netcdf inputs
|
---|
| 214 | else
|
---|
| 215 | disp_uvmat('ERROR',['invalid file type input ' FileType{1}],checkrun)
|
---|
| 216 | return
|
---|
| 217 | end
|
---|
| 218 | if NbView==2 && ~isequal(CheckImage{1},CheckImage{2})
|
---|
| 219 | disp_uvmat('ERROR','input must be two image series or two netcdf file series',checkrun)
|
---|
| 220 | return
|
---|
| 221 | end
|
---|
| 222 | if isfield(Param,'ProjObject') && ~strcmp(Param.ProjObject.Type,'plane')
|
---|
[960] | 223 | FileExtOut='.nc';% write result as .nc files (even for image input)
|
---|
[884] | 224 | end
|
---|
| 225 |
|
---|
| 226 | %% settings for the output file
|
---|
[1097] | 227 | OutputDir=[Param.OutputSubDir Param.OutputDirExt];% subdirectory for output files
|
---|
| 228 | OutputPath=fullfile(Param.OutputPath,num2str(Param.Experiment),num2str(Param.Device));
|
---|
[884] | 229 | NomTypeOut=nomtype2pair(NomType{1});% determine the index nomenclature type for the output file
|
---|
| 230 | first_i=i1_series{1}(1);
|
---|
| 231 | last_i=i1_series{1}(end);
|
---|
| 232 | if isempty(j1_series{1})% if there is no second index j
|
---|
| 233 | first_j=1;last_j=1;
|
---|
| 234 | else
|
---|
| 235 | first_j=j1_series{1}(1);
|
---|
| 236 | last_j=j1_series{1}(end);
|
---|
| 237 | end
|
---|
| 238 |
|
---|
| 239 | %% Set field names and velocity types
|
---|
| 240 | InputFields{1}=[];%default (case of images)
|
---|
| 241 | if NbView==2
|
---|
| 242 | InputFields{2}=[];%default (case of images)
|
---|
| 243 | end
|
---|
| 244 | if isfield(Param,'InputFields')
|
---|
| 245 | InputFields{1}=Param.InputFields;
|
---|
| 246 | if NbView==2
|
---|
| 247 | InputFields{2}=Param.InputFields;%default
|
---|
| 248 | if isfield(Param.InputFields,'FieldName_1')
|
---|
| 249 | InputFields{2}.FieldName=Param.InputFields.FieldName_1;
|
---|
| 250 | if isfield(Param.InputFields,'VelType_1')
|
---|
| 251 | InputFields{2}.VelType=Param.InputFields.VelType_1;
|
---|
| 252 | end
|
---|
| 253 | end
|
---|
| 254 | end
|
---|
| 255 | end
|
---|
[960] | 256 |
|
---|
[884] | 257 | VarMesh=[];
|
---|
| 258 | if isfield(Param,'ProjObject') && ismember(Param.ProjObject.ProjMode,{'inside','outside'})
|
---|
[960] | 259 | if isfield(Param,'ActionInput') && isfield(Param.ActionInput,'VarMesh')%case of histograms
|
---|
| 260 | VarMesh=Param.ActionInput.VarMesh;
|
---|
[884] | 261 | else
|
---|
[960] | 262 | VarMesh=[];
|
---|
| 263 | disp_uvmat('WARNING','automatic bin size for histograms, select aver_stat again to set the value',checkrun)
|
---|
[884] | 264 | end
|
---|
| 265 | end
|
---|
[959] | 266 |
|
---|
[960] | 267 | NbSlice_j=1;% number of j slices =1 except fo volume scan
|
---|
[959] | 268 | index_series=1:size(filecell,2);
|
---|
[960] | 269 | index_j=1;
|
---|
| 270 |
|
---|
| 271 | %% set volume scan if requested
|
---|
| 272 | first_j_out=first_j;%first j index to use for the output file name
|
---|
| 273 | last_j_out=last_j;%last j index to use for the output file name
|
---|
[959] | 274 | if isfield(Param,'ActionInput') && isfield(Param.ActionInput,'CheckVolume') ...
|
---|
| 275 | && Param.ActionInput.CheckVolume
|
---|
[960] | 276 | index_j=Param.IndexRange.first_j:Param.IndexRange.incr_j:Param.IndexRange.last_j;
|
---|
| 277 | NbSlice_j=numel(index_j);
|
---|
| 278 | index_series=1:NbSlice_j:size(filecell,2);
|
---|
[959] | 279 | end
|
---|
| 280 |
|
---|
[960] | 281 | %% loop on j slices (volume scan)
|
---|
[959] | 282 | for islice=index_j
|
---|
[960] | 283 | nbfiles=0;%counter of the successfully read files (bad files are skipped)
|
---|
[959] | 284 | if NbSlice_j>1
|
---|
[960] | 285 | first_j_out=islice;%first and last j index to use for the output file name are the current j index
|
---|
| 286 | last_j_out=islice;
|
---|
[884] | 287 | end
|
---|
[959] | 288 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
---|
| 289 | %%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%%
|
---|
[960] | 290 | for index=index_series+index_j(islice)-index_j(1)
|
---|
[959] | 291 | update_waitbar(WaitbarHandle,index/NbField)
|
---|
| 292 | if ~isempty(RUNHandle)&& ~strcmp(get(RUNHandle,'BusyAction'),'queue')
|
---|
| 293 | disp('program stopped by user')
|
---|
[884] | 294 | break
|
---|
| 295 | end
|
---|
| 296 |
|
---|
[959] | 297 | %%%%%%%%%%%%%%%% loop on views (input lines) %%%%%%%%%%%%%%%%
|
---|
| 298 | for iview=1:NbView
|
---|
| 299 | % reading input file(s)
|
---|
| 300 | [Data{iview},tild,errormsg] = read_field(filecell{iview,index},FileType{iview},InputFields{iview},frame_index{iview}(index));
|
---|
[884] | 301 | if ~isempty(errormsg)
|
---|
[959] | 302 | errormsg=['error of input reading: ' errormsg];
|
---|
[960] | 303 | break% leave the loop on views in case of error
|
---|
[884] | 304 | end
|
---|
[959] | 305 | if ~isempty(NbSlice_calib)
|
---|
| 306 | Data{iview}.ZIndex=mod(i1_series{iview}(index)-1,NbSlice_calib{iview})+1;%Zindex for phys transform
|
---|
| 307 | end
|
---|
[884] | 308 | end
|
---|
[959] | 309 | %%%%%%%%%%%%%%%% end loop on views (input lines) %%%%%%%%%%%%%%%%
|
---|
| 310 |
|
---|
[960] | 311 | if ~isempty(errormsg)
|
---|
| 312 | disp(errormsg)
|
---|
| 313 | continue % go to next input field in case of error (file skipped in the average)
|
---|
| 314 | end
|
---|
| 315 | Field=Data{1}; % default input field structure
|
---|
| 316 | nbfiles=nbfiles+1; %increment the file counter
|
---|
| 317 |
|
---|
| 318 | %% coordinate transform (or other user defined transform)
|
---|
| 319 | if ~isempty(transform_fct)
|
---|
| 320 | switch nargin(transform_fct)
|
---|
| 321 | case 4
|
---|
| 322 | if length(Data)==2
|
---|
| 323 | Field=transform_fct(Data{1},XmlData{1},Data{2},XmlData{2});
|
---|
| 324 | else
|
---|
[959] | 325 | Field=transform_fct(Data{1},XmlData{1});
|
---|
[960] | 326 | end
|
---|
| 327 | case 3
|
---|
| 328 | if length(Data)==2
|
---|
| 329 | Field=transform_fct(Data{1},XmlData{1},Data{2});
|
---|
| 330 | else
|
---|
| 331 | Field=transform_fct(Data{1},XmlData{1});
|
---|
| 332 | end
|
---|
| 333 | case 2
|
---|
| 334 | Field=transform_fct(Data{1},XmlData{1});
|
---|
| 335 | case 1
|
---|
| 336 | Field=transform_fct(Data{1});
|
---|
[884] | 337 | end
|
---|
[960] | 338 | end
|
---|
| 339 |
|
---|
| 340 | %% field projection on an object
|
---|
| 341 | if Param.CheckObject
|
---|
| 342 | if strcmp(Param.ProjObject.ProjMode,'interp_tps')
|
---|
| 343 | Field=tps_coeff_field(Field,check_proj_tps);% calculate tps coefficients if needed
|
---|
[959] | 344 | end
|
---|
[960] | 345 | [Field,errormsg]=proj_field(Field,Param.ProjObject,VarMesh);
|
---|
| 346 | if ~isempty(errormsg)
|
---|
| 347 | disp_uvmat('ERROR',['error in aver_stat/proj_field:' errormsg],checkrun)
|
---|
| 348 | return
|
---|
| 349 | end
|
---|
| 350 | end
|
---|
| 351 |
|
---|
| 352 | %%%%%%%%%%%% MAIN RUNNING OPERATIONS %%%%%%%%%%%%
|
---|
| 353 | if nbfiles==1 %first field
|
---|
| 354 | time_1=[];
|
---|
| 355 | if isfield(Field,'Time')
|
---|
| 356 | time_1=Field.Time(1);
|
---|
| 357 | end
|
---|
| 358 | DataOut=Field;%outcome reproduces the first (projected) field by default
|
---|
| 359 | DataOut.Conventions='uvmat'; %suppress Conventions='uvmat/civdata' for civ input files
|
---|
| 360 | if isfield(Param,'ProjObject')&& ismember(Param.ProjObject.ProjMode,{'inside','outside'})%case of histograms
|
---|
| 361 | for ivar=1:numel(Field.ListVarName)% list of variable names before projection (histogram)
|
---|
| 362 | VarName=Field.ListVarName{ivar};
|
---|
| 363 | if isfield(Data{1},VarName)
|
---|
| 364 | DataOut.(VarName)=Field.(VarName);
|
---|
| 365 | DataOut.([VarName 'Histo'])=zeros(size(DataOut.(VarName)));
|
---|
| 366 | VarMesh=DataOut.(VarName)(2)-DataOut.(VarName)(1);
|
---|
| 367 | end
|
---|
[959] | 368 | end
|
---|
[960] | 369 | disp(['mesh for histogram = ' num2str(VarMesh)])
|
---|
| 370 | else
|
---|
| 371 | errorvar=zeros(numel(Field.ListVarName));%index of errorflag associated to each variable
|
---|
| 372 | if isfield(Field,'VarAttribute')
|
---|
| 373 | for ivar=1:numel(Field.ListVarName)
|
---|
[884] | 374 | VarName=Field.ListVarName{ivar};
|
---|
[960] | 375 | DataOut.(VarName)=zeros(size(DataOut.(VarName)));% initiate each field to zero
|
---|
| 376 | NbData.(VarName)=zeros(size(DataOut.(VarName)));% initiate the nbre of good data to zero
|
---|
| 377 |
|
---|
| 378 | for iivar=1:length(Field.VarAttribute)
|
---|
| 379 | if isequal(Field.VarDimName{iivar},Field.VarDimName{ivar})&& isfield(Field.VarAttribute{iivar},'Role')...
|
---|
| 380 | && strcmp(Field.VarAttribute{iivar}.Role,'errorflag')
|
---|
| 381 | errorvar(ivar)=iivar; % index of the errorflag variable corresponding to ivar
|
---|
| 382 | end
|
---|
[959] | 383 | end
|
---|
| 384 | end
|
---|
[960] | 385 | DataOut.ListVarName(errorvar(errorvar~=0))=[]; %remove errorflag from result
|
---|
| 386 | DataOut.VarDimName(errorvar(errorvar~=0))=[]; %remove errorflag from result
|
---|
| 387 | DataOut.VarAttribute(errorvar(errorvar~=0))=[]; %remove errorflag from result
|
---|
[959] | 388 | else
|
---|
[960] | 389 | for ivar=1:numel(Field.ListVarName)
|
---|
| 390 | VarName=Field.ListVarName{ivar};
|
---|
| 391 | DataOut.(VarName)=zeros(size(DataOut.(VarName)));% initiate each field to zero
|
---|
| 392 | NbData.(VarName)=zeros(size(DataOut.(VarName)));% initiate the nbre of good data to zero
|
---|
[884] | 393 | end
|
---|
| 394 | end
|
---|
[960] | 395 |
|
---|
| 396 | end
|
---|
| 397 | end %current field
|
---|
| 398 | for ivar=1:length(DataOut.ListVarName)
|
---|
| 399 | VarName=DataOut.ListVarName{ivar};
|
---|
| 400 | sizmean=size(DataOut.(VarName));
|
---|
| 401 | siz=size(Field.(VarName));
|
---|
| 402 | if isfield(Param,'ProjObject') && ismember(Param.ProjObject.ProjMode,{'inside','outside'})
|
---|
| 403 | if isfield(Data{1},VarName)
|
---|
| 404 | MaxValue=max(DataOut.(VarName));% current max of histogram absissa
|
---|
| 405 | MinValue=min(DataOut.(VarName));% current min of histogram absissa
|
---|
| 406 | % VarMesh=Field.VarAttribute{ivar}.Mesh;
|
---|
| 407 | MaxIndex=round(MaxValue/VarMesh);
|
---|
| 408 | MinIndex=round(MinValue/VarMesh);
|
---|
| 409 | MaxIndex_new=round(max(Field.(VarName)/VarMesh));% max of the current field
|
---|
| 410 | MinIndex_new=round(min(Field.(VarName)/VarMesh));
|
---|
| 411 | if MaxIndex_new>MaxIndex% the variable max for the current field exceeds the previous one
|
---|
| 412 | DataOut.(VarName)=[DataOut.(VarName) VarMesh*(MaxIndex+1:MaxIndex_new)];% append the new variable values
|
---|
| 413 | DataOut.([VarName 'Histo'])=[DataOut.([VarName 'Histo']) zeros(1,MaxIndex_new-MaxIndex)]; % append the new histo values
|
---|
[884] | 414 | end
|
---|
[960] | 415 | if MinIndex_new <= MinIndex-1
|
---|
| 416 | DataOut.(VarName)=[VarMesh*(MinIndex_new:MinIndex-1) DataOut.(VarName)];% insert the new variable values
|
---|
| 417 | DataOut.([VarName 'Histo'])=[zeros(1,MinIndex-MinIndex_new) DataOut.([VarName 'Histo'])];% insert the new histo values
|
---|
| 418 | ind_start=1;
|
---|
[884] | 419 | else
|
---|
[960] | 420 | ind_start=MinIndex_new-MinIndex+1;
|
---|
[884] | 421 | end
|
---|
[960] | 422 | DataOut.([VarName 'Histo'])(ind_start:ind_start+MaxIndex_new-MinIndex_new)=...
|
---|
| 423 | DataOut.([VarName 'Histo'])(ind_start:ind_start+MaxIndex_new-MinIndex_new)+Field.([VarName 'Histo']);
|
---|
[884] | 424 | end
|
---|
[960] | 425 | elseif ~isequal(DataOut.(VarName),0)&& ~isequal(siz,sizmean)
|
---|
| 426 | disp_uvmat('ERROR',['unequal size of input field ' VarName ', need to project on a grid'],checkrun)
|
---|
| 427 | return
|
---|
| 428 | else
|
---|
| 429 | if errorvar(ivar)==0
|
---|
| 430 | check_bad=isnan(Field.(VarName));%=0 for NaN data values, 1 else
|
---|
| 431 | else
|
---|
| 432 | check_bad=isnan(Field.(VarName)) | Field.(Field.ListVarName{errorvar(ivar)})~=0;%=0 for NaN or error flagged data values, 1 else
|
---|
| 433 | end
|
---|
| 434 | Field.(VarName)(check_bad)=0; %set to zero NaN or data marked by error flag
|
---|
| 435 | DataOut.(VarName)=DataOut.(VarName)+ double(Field.(VarName)); % update the sum
|
---|
| 436 | NbData.(VarName)=NbData.(VarName)+ ~check_bad;% records the number of data for each point
|
---|
[884] | 437 | end
|
---|
| 438 | end
|
---|
[960] | 439 | %%%%%%%%%%%% END MAIN RUNNING OPERATIONS %%%%%%%%%%%%
|
---|
[884] | 440 | end
|
---|
[959] | 441 | %%%%%%%%%%%%%%%% end loop on field indices %%%%%%%%%%%%%%%%
|
---|
[960] | 442 |
|
---|
| 443 | if ~(isfield(Param,'ProjObject') && ismember(Param.ProjObject.ProjMode,{'inside','outside'}))
|
---|
| 444 | for ivar=1:length(Field.ListVarName)
|
---|
| 445 | VarName=Field.ListVarName{ivar};
|
---|
| 446 | DataOut.(VarName)=DataOut.(VarName)./NbData.(VarName); % normalize the mean
|
---|
| 447 | end
|
---|
[884] | 448 | end
|
---|
[960] | 449 | nbmissing=numel(index_series+index_j(islice)-index_j(1))-nbfiles;
|
---|
| 450 | if nbmissing~=0
|
---|
| 451 | if NbSlice_j==1
|
---|
| 452 | disp_uvmat('WARNING',[num2str(nbmissing) ' input files are missing or skipped'],checkrun)
|
---|
| 453 | else
|
---|
| 454 | disp(['WARNING: ' num2str(nbmissing) ' input files are missing or skipped in slice ' num2str(islice)])
|
---|
[884] | 455 | end
|
---|
| 456 | end
|
---|
[960] | 457 | if isempty(time) % time is read from files
|
---|
| 458 | if isfield(Field,'Time')
|
---|
| 459 | time_end=Field.Time(1);%last time read
|
---|
| 460 | if ~isempty(time_1)
|
---|
| 461 | DataOut.Time=time_1;
|
---|
| 462 | DataOut.Time_end=time_end;
|
---|
| 463 | end
|
---|
| 464 | end
|
---|
| 465 | else % time from ImaDoc prevails if it exists
|
---|
| 466 | DataOut.Time=time(1);
|
---|
| 467 | DataOut.Time_end=time(end);
|
---|
[884] | 468 | end
|
---|
[960] | 469 |
|
---|
| 470 | %% writing the result file
|
---|
[1097] | 471 | OutputFile=fullfile_uvmat(OutputPath,OutputDir,RootFile{1},FileExtOut,NomTypeOut,first_i,last_i,first_j_out,last_j_out);
|
---|
[960] | 472 | if strcmp(FileExtOut,'.png') %case of images
|
---|
| 473 | if isequal(FileInfo{1}.BitDepth,16)||(numel(FileInfo)==2 &&isequal(FileInfo{2}.BitDepth,16))
|
---|
| 474 | DataOut.A=uint16(DataOut.A);
|
---|
| 475 | imwrite(DataOut.A,OutputFile,'BitDepth',16); % case of 16 bit images
|
---|
| 476 | else
|
---|
| 477 | DataOut.A=uint8(DataOut.A);
|
---|
| 478 | imwrite(DataOut.A,OutputFile,'BitDepth',8); % case of 16 bit images
|
---|
| 479 | end
|
---|
[884] | 480 | disp([OutputFile ' written']);
|
---|
[960] | 481 | else %case of netcdf file , determine global attributes
|
---|
| 482 | errormsg=struct2nc(OutputFile,DataOut); %save result file
|
---|
| 483 | if isempty(errormsg)
|
---|
| 484 | disp([OutputFile ' written']);
|
---|
| 485 | else
|
---|
| 486 | disp(['error in writting result file: ' errormsg])
|
---|
| 487 | end
|
---|
| 488 | end % end averaging loop
|
---|
[959] | 489 | end
|
---|
[884] | 490 |
|
---|
| 491 | %% open the result file with uvmat (in RUN mode)
|
---|
| 492 | if checkrun
|
---|
| 493 | uvmat(OutputFile)% open the last result file with uvmat
|
---|
| 494 | end
|
---|