source: trunk/src/series/time_series.m @ 1130

Last change on this file since 1130 was 1127, checked in by g7moreau, 5 months ago

Update Joel email

File size: 26.0 KB
RevLine 
[572]1%'time_series': extract a time series after projection on an object (points , line..)
[457]2% this function can be used as a template for applying a global operation on a series of input fields
[169]3%------------------------------------------------------------------------
[374]4% function GUI_input=time_series(Param)
[169]5%
[457]6%%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%%
7%
[169]8%OUTPUT
[596]9% ParamOut: sets options in the GUI series.fig needed for the function
[169]10%
11%INPUT:
[457]12% In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series.
13% In batch mode, Param is the name of the corresponding xml file containing the same information
[596]14% when Param.Action.RUN=0 (as activated when the current Action is selected
15% in series), the function ouput paramOut set the activation of the needed GUI elements
[169]16%
[596]17% Param contains the elements:(use the menu bar command 'export/GUI config' in series to
18% see the current structure Param)
[457]19%    .InputTable: cell of input file names, (several lines for multiple input)
20%                      each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension}
21%    .OutputSubDir: name of the subdirectory for data outputs
[474]22%    .OutputDirExt: directory extension for data outputs
[457]23%    .Action: .ActionName: name of the current activated function
24%             .ActionPath:   path of the current activated function
[596]25%             .ActionExt: fct extension ('.m', Matlab fct, '.sh', compiled   Matlab fct
26%             .RUN =0 for GUI input, =1 for function activation
27%             .RunMode='local','background', 'cluster': type of function  use
28%             
[457]29%    .IndexRange: set the file or frame indices on which the action must be performed
30%    .FieldTransform: .TransformName: name of the selected transform function
31%                     .TransformPath:   path  of the selected transform function
32%    .InputFields: sub structure describing the input fields withfields
[596]33%              .FieldName: name(s) of the field
[457]34%              .VelType: velocity type
35%              .FieldName_1: name of the second field in case of two input series
36%              .VelType_1: velocity type of the second field in case of two input series
[596]37%              .Coord_y: name of y coordinate variable
38%              .Coord_x: name of x coordinate variable
[457]39%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
40%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
[596]41
[810]42%=======================================================================
[1126]43% Copyright 2008-2024, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
[810]44%   http://www.legi.grenoble-inp.fr
[1127]45%   Joel.Sommeria - Joel.Sommeria (A) univ-grenoble-alpes.fr
[810]46%
47%     This file is part of the toolbox UVMAT.
48%
49%     UVMAT is free software; you can redistribute it and/or modify
50%     it under the terms of the GNU General Public License as published
51%     by the Free Software Foundation; either version 2 of the license,
52%     or (at your option) any later version.
53%
54%     UVMAT is distributed in the hope that it will be useful,
55%     but WITHOUT ANY WARRANTY; without even the implied warranty of
56%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
57%     GNU General Public License (see LICENSE.txt) for more details.
58%=======================================================================
59
[457]60function ParamOut=time_series(Param)
[27]61
[606]62%% set the input elements needed on the GUI series when the action is selected in the menu ActionName or InputTable refreshed
[875]63if isstruct(Param) && isequal(Param.Action.RUN,0)% function activated from the GUI series but not RUN
[605]64    ParamOut.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default)
65    ParamOut.WholeIndexRange='off';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default)
66    ParamOut.NbSlice='on'; %nbre of slices ('off' by default)
67    ParamOut.VelType='two';% menu for selecting the velocity type (options 'off'/'one'/'two',  'off' by default)
68    ParamOut.FieldName='two';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default)
[1001]69    ParamOut.FieldTransform = {'phys','phys_polar'};%can use a transform function, proposed list (needed for compilation)
70    ParamOut.TransformPath=fullfile(fileparts(which('uvmat')),'transform_field');% path to transform functions (needed for compilation only)   
71    if 1==2 % loop used to enforce compilation of transform fct, never entered.
72        phys
73        phys_polar
74    end
[605]75    ParamOut.ProjObject='on';%can use projection object(option 'off'/'on',
76    ParamOut.Mask='off';%can use mask option   (option 'off'/'on', 'off' by default)
77    ParamOut.OutputDirExt='.tseries';%set the output dir extension
78    ParamOut.OutputFileMode='NbSlice';% '=NbInput': 1 output file per input file index, '=NbInput_i': 1 file per input file index i, '=NbSlice': 1 file per slice
[871]79    % check for selection of a projection object
80    hseries=findobj(allchild(0),'Tag','series');% handles of the GUI series
[875]81    hhseries=guidata(hseries);
[871]82    if  ~isfield(Param,'ProjObject')
[1085]83        msgbox_uvmat('WARNING','you may need to introduce a projection object for the time_series');
[871]84    end
[875]85   
[871]86    % introduce bin size for histograms
[872]87    if isfield(Param,'CheckObject') &&Param.CheckObject
[871]88        SeriesData=get(hseries,'UserData');
[872]89        if ismember(SeriesData.ProjObject.ProjMode,{'inside','outside'})
[875]90            answer=msgbox_uvmat('INPUT_TXT','set bin size for histograms (or keep ''auto'' by default)?','auto');
[880]91            ParamOut.ActionInput.VarMesh=str2num(answer);
[871]92        end
93    end
[875]94   
[874]95    % test for subtraction
[875]96    if size(Param.InputTable,1)>2
97        msgbox_uvmat('WARNING','''time_series'' uses only one or two input lines (two for substraction). To concatene fields first use ''merge_proj''');
98    end
[1119]99%     if size(Param.InputTable,1)>=2
100%         answer=msgbox_uvmat('INPUT_Y-N','substract the two input file series with sub_field.m?');
101%         if strcmp(answer,'Yes')
102%             if isempty(Param.FieldTransform.TransformName)
103%                 set(hhseries.TransformName,'value',2) %select sub_field
104%             end
105%         else
106%             set(hhseries.InputTable,'Data',Param.InputTable(1,:))
107%         end
108%     end
[875]109   
[871]110    % check the existence of the first and last file in the series
[875]111    first_j=[];
[716]112    if isfield(Param.IndexRange,'first_j'); first_j=Param.IndexRange.first_j; end
113    last_j=[];
114    if isfield(Param.IndexRange,'last_j'); last_j=Param.IndexRange.last_j; end
115    PairString='';
116    if isfield(Param.IndexRange,'PairString'); PairString=Param.IndexRange.PairString; end
117    [i1,i2,j1,j2] = get_file_index(Param.IndexRange.first_i,first_j,PairString);
118    FirstFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},...
119        Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2);
120    if ~exist(FirstFileName,'file')
121        msgbox_uvmat('WARNING',['the first input file ' FirstFileName ' does not exist'])
[871]122    else
123        [i1,i2,j1,j2] = get_file_index(Param.IndexRange.last_i,last_j,PairString);
124        LastFileName=fullfile_uvmat(Param.InputTable{1,1},Param.InputTable{1,2},Param.InputTable{1,3},...
125            Param.InputTable{1,5},Param.InputTable{1,4},i1,i2,j1,j2);
126        if ~exist(LastFileName,'file')
127            msgbox_uvmat('WARNING',['the last input file ' LastFileName ' does not exist'])
128        end
[605]129    end
[599]130    return
[27]131end
132
[526]133%%%%%%%%%%%% STANDARD PART  %%%%%%%%%%%%
[624]134ParamOut=[]; %default output
[592]135%% read input parameters from an xml file if input is a file name (batch mode)
136checkrun=1;
[457]137if ischar(Param)
[592]138    Param=xml2struct(Param);% read Param as input file (batch case)
139    checkrun=0;
[374]140end
[624]141hseries=findobj(allchild(0),'Tag','series');
142RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series
143WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series
[592]144
[624]145%% define the directory for result file (with path=RootPath{1})
[474]146OutputDir=[Param.OutputSubDir Param.OutputDirExt];
[457]147
[609]148%% root input file(s) name, type and index series
[457]149RootPath=Param.InputTable(:,1);
150RootFile=Param.InputTable(:,3);
151SubDir=Param.InputTable(:,2);
152NomType=Param.InputTable(:,4);
153FileExt=Param.InputTable(:,5);
[960]154
[751]155hdisp=disp_uvmat('WAITING...','checking the file series',checkrun);
[960]156% gives the series of input file names and indices set by the input parameters:
[374]157[filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param);
[526]158% filecell{iview,fileindex}:
[457]159%        iview: line in the table corresponding to a given file series
[960]160%        fileindex: file index with i and j reshaped as a 1D array
161% 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
[457]162% i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices
[960]163if ~isempty(hdisp),delete(hdisp),end;%end the waiting display
[374]164
[960]165NbView=numel(i1_series);%number of input file series (lines in InputTable)
166NbField_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices)
167NbField_i=size(i1_series{1},2); %nb of fields for the i index
168NbField=NbField_j*NbField_i; %total number of fields
169
[609]170%% determine the file type on each line from the first input file
[984]171ImageTypeOptions={'image','multimage','mmreader','video','cine_phantom'};
[457]172NcTypeOptions={'netcdf','civx','civdata'};
[970]173FileType=cell(1,NbView);
174FileInfo=cell(1,NbView);
175MovieObject=cell(1,NbView);
176CheckImage=cell(1,NbView);
177CheckNc=cell(1,NbView);
178frame_index=cell(1,NbView);
[874]179
[970]180for iview=1:NbView
[457]181    if ~exist(filecell{iview,1}','file')
[668]182        disp_uvmat('ERROR',['the first input file ' filecell{iview,1} ' does not exist'],checkrun)
[27]183        return
184    end
[784]185    [FileInfo{iview},MovieObject{iview}]=get_file_info(filecell{iview,1});
[783]186    FileType{iview}=FileInfo{iview}.FileType;
[768]187    if strcmp(FileType{iview},'civdata')||strcmp(FileType{iview},'civx')
188        if ~isfield(Param.InputFields,'VelType')
189            FileType{iview}='netcdf';% civ data read as usual netcdf files
190        end
191    end
[457]192    CheckImage{iview}=~isempty(find(strcmp(FileType{iview},ImageTypeOptions)));% =1 for images
193    CheckNc{iview}=~isempty(find(strcmp(FileType{iview},NcTypeOptions)));% =1 for netcdf files
[768]194    if isempty(j1_series{iview})
195        frame_index{iview}=i1_series{iview};
196    else
[457]197        frame_index{iview}=j1_series{iview};
198    end
[27]199end
200
[457]201%% calibration data and timing: read the ImaDoc files
[470]202[XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series);
[768]203if ~isempty(errormsg)
204    disp_uvmat('ERROR',['error in reading xmlfile: ' errormsg],checkrun)
205    return
206end
[470]207if size(time,1)>1
[457]208    diff_time=max(max(diff(time)));
209    if diff_time>0
[668]210        disp_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time)],checkrun)
[599]211    end
[531]212    time=time(1,:);% choose the time data from the first sequence
[457]213end
[27]214
[457]215%% coordinate transform or other user defined transform
[1114]216transform_fct='';%default fct handle
[478]217if isfield(Param,'FieldTransform')&&~isempty(Param.FieldTransform.TransformName)
[1114]218    currentdir=pwd;
219    cd(Param.FieldTransform.TransformPath)
[474]220    transform_fct=str2func(Param.FieldTransform.TransformName);
[1114]221    cd (currentdir)
[883]222    if isfield(Param,'TransformInput')
[1114]223        for iview=1:NbView
224            XmlData{iview}.TransformInput=Param.TransformInput;
225        end
226    end       
[457]227end
[474]228
[457]229%%%%%%%%%%%% END STANDARD PART  %%%%%%%%%%%%
[599]230% EDIT FROM HERE
[27]231
[656]232%% check the validity of  the input file types
233if ~CheckImage{1}&&~CheckNc{1}
[668]234    disp_uvmat('ERROR',['invalid file type input ' FileType{1}],checkrun)
[457]235    return
[27]236end
[970]237if NbView==2 && ~isequal(CheckImage{1},CheckImage{2})
[668]238    disp_uvmat('ERROR','input must be two image series or two netcdf file series',checkrun)
[259]239    return
240end
[635]241
242%% settings for the output file
[656]243FileExtOut='.nc';% write result as .nc files for netcdf inputs
[609]244NomTypeOut=nomtype2pair(NomType{1});% determine the index nomenclature type for the output file
[635]245first_i=i1_series{1}(1);
246last_i=i1_series{1}(end);
247if isempty(j1_series{1})% if there is no second index j
248    first_j=1;last_j=1;
249else
250    first_j=j1_series{1}(1);
251    last_j=j1_series{1}(end);
252end
[1091]253OutputPath=fullfile(Param.OutputPath,Param.Experiment,Param.Device)
[457]254
255%% Set field names and velocity types
256InputFields{1}=[];%default (case of images)
[970]257if NbView==2
[867]258    InputFields{2}=[];%default (case of images)
259end
[457]260if isfield(Param,'InputFields')
261    InputFields{1}=Param.InputFields;
[970]262    if NbView==2
[867]263        InputFields{2}=Param.InputFields;%default
[457]264        if isfield(Param.InputFields,'FieldName_1')
265            InputFields{2}.FieldName=Param.InputFields.FieldName_1;
266            if isfield(Param.InputFields,'VelType_1')
267                InputFields{2}.VelType=Param.InputFields.VelType_1;
268            end
269        end
270    end
271end
[27]272
[457]273%% Initiate output fields
274%initiate the output structure as a copy of the first input one (reproduce fields)
[464]275[DataOut,tild,errormsg] = read_field(filecell{1,1},FileType{1},InputFields{1},1);
[457]276if ~isempty(errormsg)
[668]277    disp_uvmat('ERROR',['error reading ' filecell{1,1} ': ' errormsg],checkrun)
[457]278    return
279end
280time_1=[];
281if isfield(DataOut,'Time')
282    time_1=DataOut.Time(1);
283end
284if CheckNc{iview}
285    if isempty(strcmp('Conventions',DataOut.ListGlobalAttribute))
286        DataOut.ListGlobalAttribute=['Conventions' DataOut.ListGlobalAttribute];
287    end
288    DataOut.Conventions='uvmat';
289    DataOut.ListGlobalAttribute=[DataOut.ListGlobalAttribute {Param.Action}];
290    ActionKey='Action';
291    while isfield(DataOut,ActionKey)
292        ActionKey=[ActionKey '_1'];
293    end
294    DataOut.(ActionKey)=Param.Action;
295    DataOut.ListGlobalAttribute=[DataOut.ListGlobalAttribute {ActionKey}];
296    if isfield(DataOut,'Time')
297        DataOut.ListGlobalAttribute=[DataOut.ListGlobalAttribute {'Time','Time_end'}];
298    end
299end
300
[871]301nbfile=0;% not used , to check
[599]302nbmissing=0;
[880]303VarMesh=[];
[871]304checkhisto=0;
[1069]305checkline=0;
306if isfield(Param,'ProjObject')
307    if ismember(Param.ProjObject.ProjMode,{'inside','outside'})
[871]308    checkhisto=1;
[880]309    if isfield(Param,'ActionInput') && isfield(Param.ActionInput,'VarMesh')%case of histograms
310        VarMesh=Param.ActionInput.VarMesh;
[1091]311    elseif isequal(Param.IndexRange.NbSlice,1)
[884]312        VarMesh=[];
313        disp_uvmat('WARNING','automatic bin size for histograms, select time_series again to set the value',checkrun)
[871]314    end
[1069]315    elseif ismember(Param.ProjObject.Type,{'line'})
316        checkline=1;
317    end
[871]318end
[875]319
[599]320%%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%%
[970]321for index=1:NbField
322    update_waitbar(WaitbarHandle,index/NbField)
[635]323    if ~isempty(RUNHandle) && ~strcmp(get(RUNHandle,'BusyAction'),'queue')
[624]324        disp('program stopped by user')
325        break % leave the loop if stop is ordered
[599]326    end
[970]327    Data=cell(1,NbView);%initiate the set Data;
[599]328    nbtime=0;
329    dt=[];
330    %%%%%%%%%%%%%%%% loop on views (input lines) %%%%%%%%%%%%%%%%
[970]331    for iview=1:NbView
[599]332        % reading input file(s)
333        [Data{iview},tild,errormsg] = read_field(filecell{iview,index},FileType{iview},InputFields{iview},frame_index{iview}(index));
334        if ~isempty(errormsg)
335            errormsg=['time_series / read_field / ' errormsg];
[880]336            disp(errormsg)
337            break% exit the loop on iview
[442]338        end
[599]339        if ~isempty(NbSlice_calib)
340            Data{iview}.ZIndex=mod(i1_series{iview}(index)-1,NbSlice_calib{iview})+1;%Zindex for phys transform
341        end
342    end
[880]343    if ~isempty(errormsg)
344        continue %in case of input error skip the current input field, go to next index
345    end
346    Field=Data{1}; % default input field structure
347    % coordinate transform (or other user defined transform)
348    if ~isempty(transform_fct)
349        switch nargin(transform_fct)
350            case 4
351                if length(Data)==2
352                    Field=transform_fct(Data{1},XmlData{1},Data{2},XmlData{2});
353                else
[875]354                    Field=transform_fct(Data{1},XmlData{1});
[880]355                end
356            case 3
357                if length(Data)==2
358                    Field=transform_fct(Data{1},XmlData{1},Data{2});
359                else
360                    Field=transform_fct(Data{1},XmlData{1});
361                end
362            case 2
363                Field=transform_fct(Data{1},XmlData{1});
364            case 1
365                Field=transform_fct(Data{1});
[599]366        end
[880]367    end
368   
369    %field projection on an object
370    if Param.CheckObject
371        % calculate tps coefficients if needed
372        if isfield(Param.ProjObject,'ProjMode')&& strcmp(Param.ProjObject.ProjMode,'interp_tps')
373            Field=tps_coeff_field(Field,check_proj_tps);
[599]374        end
[880]375        [Field,errormsg]=proj_field(Field,Param.ProjObject,VarMesh);
376        if ~isempty(errormsg)
377            disp_uvmat('ERROR',['time_series / proj_field / ' errormsg],checkrun)
378            return
379        end
380    end
381    %         nbfile=nbfile+1;
382   
383    % initiate the time series at the first iteration
384    if index==1
385        % stop program if the first field reading is in error
386        if ~isempty(errormsg)
387            disp_uvmat('ERROR',['time_series / sub_field / ' errormsg],checkrun)
388            return
389        end
390        if ~isfield(Field,'ListVarName')
391            disp_uvmat('ERROR','no variable in the projected field',checkrun)
392            return
393        end
394        DataOut=Field;%output reproduced the first projected field by default
395        nbvar=length(Field.ListVarName);
396        if nbvar==0
397            disp_uvmat('ERROR','no input variable selected',checkrun)
398            return
399        end
400        if checkhisto%case of histograms
401            testsum=zeros(1,nbvar);%initiate flag for action on each variable
402            for ivar=1:numel(Field.ListVarName)% list of variable names before projection (histogram)
403                VarName=Field.ListVarName{ivar};
404                if isfield(Data{1},VarName)
405                    DataOut.ListVarName=[DataOut.ListVarName {[VarName 'Histo']}];
406                    DataOut.VarDimName=[DataOut.VarDimName {{'Time',VarName}}];
407                    StatName=pdf2stat;% get the names of statistical quantities to calcuilate at each time
408                    for istat=1:numel(StatName)
409                        DataOut.ListVarName=[DataOut.ListVarName {[VarName StatName{istat}]}];
410                        DataOut.VarDimName=[DataOut.VarDimName {'Time'}];
[871]411                    end
[880]412                    testsum(ivar)=1;
413                    DataOut.(VarName)=Field.(VarName);
[970]414                    DataOut.([VarName 'Histo'])=zeros([NbField numel(DataOut.(VarName))]);
[880]415                    VarMesh=Field.(VarName)(2)-Field.(VarName)(1);
[871]416                end
[880]417            end
418            disp(['mesh for histogram = ' num2str(VarMesh)])
419        else
420            testsum=2*ones(1,nbvar);%initiate flag for action on each variable
421            if isfield(Field,'VarAttribute') % look for coordinate and flag variables
422                for ivar=1:nbvar
423                    if length(Field.VarAttribute)>=ivar && isfield(Field.VarAttribute{ivar},'Role')
424                        var_role=Field.VarAttribute{ivar}.Role;%'role' of the variable
425                        if isequal(var_role,'errorflag')
426                            disp_uvmat('ERROR','do not handle error flags in time series',checkrun)
427                            return
[27]428                        end
[880]429                        if isequal(var_role,'warnflag')
430                            testsum(ivar)=0;  % not recorded variable
431                            eval(['DataOut=rmfield(DataOut,''' Field.ListVarName{ivar} ''');']);%remove variable
[27]432                        end
[1069]433                        if strcmp(var_role,'coord_x')||strcmp(var_role,'coord_z')||strcmp(var_role,'coord')
[880]434                            testsum(ivar)=1; %constant coordinates, record without time evolution
[474]435                        end
[1069]436                        if strcmp(var_role,'coord_y')&& ~checkline
437                             testsum(ivar)=1;
438                        end
[27]439                    end
[880]440                    % check whether the variable ivar is a dimension variable
441                    DimCell=Field.VarDimName{ivar};
442                    if ischar(DimCell)
443                        DimCell={DimCell};
[474]444                    end
[880]445                    if numel(DimCell)==1 && isequal(Field.ListVarName{ivar},DimCell{1})%detect dimension variables
446                        testsum(ivar)=1;
447                    end
[474]448                end
449            end
[880]450            for ivar=1:nbvar
451                if testsum(ivar)==2
452                    VarName=Field.ListVarName{ivar};
453                    siz=size(Field.(VarName));
[970]454                    DataOut.(VarName)=zeros([NbField siz]);
[330]455                end
[871]456            end
[880]457        end
458        DataOut.ListVarName=[{'Time'} DataOut.ListVarName];
459    end
460    % end initialisation for index==1
461   
462    % append data from the current field
463
464    if checkhisto % case of histogram (projection mode=inside or outside)
465        for ivar=1:length(Field.ListVarName)
466            VarName=Field.ListVarName{ivar};
467            if isfield(Data{1},VarName)
468                MaxValue=max(DataOut.(VarName));% current max of histogram absissa
469                MinValue=min(DataOut.(VarName));% current min of histogram absissa
470                MaxIndex=round(MaxValue/VarMesh);
471                MinIndex=round(MinValue/VarMesh);
472                MaxIndex_new=round(max(Field.(VarName)/VarMesh));% max of the current field
473                MinIndex_new=round(min(Field.(VarName)/VarMesh));
474                if MaxIndex_new>MaxIndex% the variable max for the current field exceeds the previous one
475                    DataOut.(VarName)=[DataOut.(VarName) VarMesh*(MaxIndex+1:MaxIndex_new)];% append the new variable values
[970]476                    DataOut.([VarName 'Histo'])=[DataOut.([VarName 'Histo']) zeros(NbField,MaxIndex_new-MaxIndex)]; % append the new histo values
[599]477                end
[880]478                if MinIndex_new <= MinIndex-1
479                    DataOut.(VarName)=[VarMesh*(MinIndex_new:MinIndex-1) DataOut.(VarName)];% insert the new variable values
[970]480                    DataOut.([VarName 'Histo'])=[zeros(NbField,MinIndex-MinIndex_new) DataOut.([VarName 'Histo'])];% insert the new histo values
[880]481                    ind_start=1;
482                else
483                    ind_start=MinIndex_new-MinIndex+1;
484                end
485                DataOut.([VarName 'Histo'])(index,ind_start:ind_start+MaxIndex_new-MinIndex_new)=...
486                    DataOut.([VarName 'Histo'])(index,ind_start:ind_start+MaxIndex_new-MinIndex_new)+Field.([VarName 'Histo']);
[881]487                VarVal=pdf2stat((Field.(VarName))',(Field.([VarName 'Histo']))');% max of the current field
[880]488                for istat=1:numel(VarVal)
489                    DataOut.([VarName StatName{istat}])(index)=VarVal(istat);
490                end
[27]491            end
[599]492        end
[880]493    else % not histogram
494        for ivar=1:length(Field.ListVarName)
495            VarName=Field.ListVarName{ivar};
496            VarVal=Field.(VarName);
497            if testsum(ivar)==2% test for recorded variable
498                if isempty(errormsg)
499                    VarVal=shiftdim(VarVal,-1); %shift dimension
500                    DataOut.(VarName)(index,:,:)=VarVal;%concanete the current field to the time series
501                end
502            elseif testsum(ivar)==1% variable representing fixed coordinates
503                VarInit=DataOut.(VarName);
504                if isempty(errormsg) && ~isequal(VarVal,VarInit)
505                    disp_uvmat('ERROR',['time series requires constant coordinates ' VarName ': use projection mode interp'],checkrun)
506                    return
507                end
[474]508            end
[27]509        end
[880]510    end
511   
512    % record the time:
[1110]513    if isempty(errormsg)
[880]514    if isempty(time)% time not set by xml filer(s)
515        if isfield(Data{1},'Time')
516            DataOut.Time(index,1)=Field.Time;
517        else
518            DataOut.Time(index,1)=index;%default
[27]519        end
[880]520    else % time from ImaDoc prevails  TODO: correct
521        DataOut.Time(index,1)=time(index);%
[330]522    end
[1110]523    end
[881]524    index
[880]525    % record the number of missing input fields
526    if ~isempty(errormsg)
527        nbmissing=nbmissing+1;
528        display(['index=' num2str(index) ':' errormsg])
529    end
[599]530end
[880]531
[599]532%%%%%%% END OF LOOP WITHIN A SLICE
533
534%remove time for global attributes if exists
535Time_index=find(strcmp('Time',DataOut.ListGlobalAttribute));
536if ~isempty(Time_index)
537    DataOut.ListGlobalAttribute(Time_index)=[];
538end
539DataOut.Conventions='uvmat';
540for ivar=1:numel(DataOut.ListVarName)
541    VarName=DataOut.ListVarName{ivar};
542    eval(['DataOut.' VarName '=squeeze(DataOut.' VarName ');']) %remove singletons
543end
544
545% add time dimension
546for ivar=1:length(Field.ListVarName)
[751]547    DimCell=Field.VarDimName{ivar};
548    if ischar(DimCell),DimCell={DimCell};end
549    if testsum(ivar)==2% variable for which time series is calculated
[599]550        DataOut.VarDimName{ivar}=[{'Time'} DimCell];
[751]551    elseif testsum(ivar)==1 % variable represneting a fixed coordinate
[599]552        DataOut.VarDimName{ivar}=DimCell;
[330]553    end
[599]554end
555indexremove=find(~testsum);
556if ~isempty(indexremove)
557    DataOut.ListVarName(1+indexremove)=[];
558    DataOut.VarDimName(indexremove)=[];
559    if isfield(DataOut,'Role') && ~isempty(DataOut.Role{1})%generaliser aus autres attributs
560        DataOut.Role(1+indexremove)=[];
[330]561    end
[27]562end
[107]563
[599]564%shift variable attributes
565if isfield(DataOut,'VarAttribute')
566    DataOut.VarAttribute=[{[]} DataOut.VarAttribute];
567end
568DataOut.VarDimName=[{'Time'} DataOut.VarDimName];
569DataOut.Action=Param.Action;%name of the processing programme
570test_time=diff(DataOut.Time)>0;% test that the readed time is increasing (not constant)
571if ~test_time
[970]572    DataOut.Time=1:NbField;
[599]573end
574
575if ~isequal(nbmissing,0)
[668]576    disp_uvmat('WARNING',[num2str(nbmissing) ' files skipped: missing files or bad input, see command window display'],checkrun)
[599]577end
578
[609]579%% name of result file
[1091]580OutputFile=fullfile_uvmat(OutputPath,OutputDir,RootFile{1},FileExtOut,NomTypeOut,first_i,last_i,first_j,last_j);
[599]581errormsg=struct2nc(OutputFile,DataOut); %save result file
582if isempty(errormsg)
583    display([OutputFile ' written'])
584else
[668]585    disp_uvmat('ERROR',['error in Series/struct2nc: ' errormsg],checkrun)
[599]586end
587
[880]588%% plot the time series for  (the last one in case of multislices)
[1091]589if checkrun && isequal(Param.IndexRange.NbSlice,1)%&& isfield(Param,'ProjObject') && strcmp(Param.ProjObject.Type,'points')
[880]590    %% open the result file with uvmat (in RUN mode)
591    uvmat(OutputFile)% open the last result file with uvmat
[474]592end
[27]593
594
[1091]595
Note: See TracBrowser for help on using the repository browser.