source: trunk/src/plot_field.m @ 421

Last change on this file since 421 was 421, checked in by sommeria, 12 years ago

bugs corrections and improvements following tutorial presentation

File size: 54.2 KB
Line 
1%'plot_field': plot any field with the structure defined in the uvmat package
2%------------------------------------------------------------------------
3%
4%  This function is used by uvmat to plot fields. It automatically chooses the representation
5% appropriate to the input field structure:
6%     2D vector fields are represented by arrows, 2D scalar fields by grey scale images or contour plots, 1D fields are represented by usual plot with (abscissa, ordinate).
7%  The input field structure is first tested by check_field_structure.m,
8%  then split into blocks of related variables  by find_field_indices.m.
9%  The dimensionality of each block is obtained  by this function
10%  considering the presence of variables with the attribute .Role='coord_x'
11%  and/or coord_y and/or coord_z (case of unstructured coordinates), or
12%  dimension variables (case of matrices).
13%
14% function [PlotType,PlotParamOut,haxes]= plot_field(Data,haxes,PlotParam,htext,PosColorbar)
15%
16% OUPUT:
17% PlotType: type of plot: 'text','line'(curve plot),'plane':2D view,'volume'
18% PlotParamOut: structure, representing the updated  plotting parameters, in case of automatic scaling
19% haxes: handle of the plotting axis, when a new figure is created.
20%
21%INPUT
22%    Data:   structure describing the field to plot
23%         (optional) .ListGlobalAttribute: cell listing the names of the global attributes
24%                    .Att_1,Att_2... : values of the global attributes
25%         (requested)  .ListVarName: list of variable names to select (cell array of  char strings {'VarName1', 'VarName2',...} )
26%         (requested)  .VarDimName: list of dimension names for each element of .ListVarName (cell array of string cells)
27%                      .VarAttribute: cell of attributes for each element of .ListVarName (cell array of structures of the form VarAtt.key=value)
28%         (requested) .Var1, .Var2....: variables (Matlab arrays) with names listed in .ListVarName
29
30%            Variable attribute .Role :
31%    The only variable attribute used for plotting purpose is .Role which can take
32%    the values
33%       Role = 'scalar':  (default) represents a scalar field
34%            = 'coord_x', 'coord_y',  'coord_z': represents a separate set of
35%                        unstructured coordinate x, y  or z
36%            = 'vector': represents a vector field whose number of components
37%                is given by the last dimension (called 'nb_dim')
38%            = 'vector_x', 'vector_y', 'vector_z'  :represents the x, y or z  component of a vector 
39%            = 'warnflag' : provides a warning flag about the quality of data in a 'Field', default=0, no warning
40%            = 'errorflag': provides an error flag marking false data,
41%                   default=0, no error. Different non zero values can represent different criteria of elimination.
42%
43%   haxes: handle of the plotting axes to update with the new plot. If this input is absent or not a valid axes handle, a new figure is created.
44%
45%   PlotParam: structure containing the parameters for plotting, as read on the uvmat or view_field GUI (by function 'read_GUI.m').
46%      Contains three substructures:
47%     .Coordinates: coordinate parameters:
48%           .CheckFixLimits:=0 (default) adjust axes limit to the X,Y data, =1: preserves the previous axes limits
49%     .Coordinates.CheckFixEqual: =0 (default):automatic adjustment of the graph, keep 1 to 1 aspect ratio for x and y scales.
50%            --scalars--
51%    .Scalar.MaxA: upper bound (saturation color) for the scalar representation, max(field) by default
52%    .Scalar.MinA: lower bound (saturation) for the scalar representation, min(field) by default
53%    .Scalar.CheckFixScal: =0 (default) lower and upper bounds of the scalar representation set to the min and max of the field
54%               =1 lower and upper bound imposed by .AMax and .MinA
55%    .Scalar.CheckBW= 1: black and white representation imposed, =0 color imposed (color scale or rgb),
56%                   =[]: automatic (B/W for integer positive scalars, color  else)
57%    .Scalar.CheckContours= 1: represent scalars by contour plots (Matlab function 'contour'); =0 by default
58%    .IncrA : contour interval
59%            -- vectors--
60%    .Vectors.VecScale: scale for the vector representation
61%    .Vectors.CheckFixVec: =0 (default) automatic length for vector representation, =1: length set by .VecScale
62%    .Vectors.CheckHideFalse= 0 (default) false vectors represented in magenta, =1: false vectors not represented;
63%    .Vectors.CheckHideWarning= 0 (default) vectors marked by warnflag~=0 marked in black, 1: no warning representation;
64%    .Vectors.CheckDecimate4 = 0 (default) all vectors reprtesented, =1: half of  the vectors represented along each coordinate
65%         -- vector color--
66%    .Vectors.ColorCode= 'black','white': imposed color  (default ='blue')
67%                        'rgb', : three colors red, blue, green depending
68%                        on thresholds .colcode1 and .colcode2 on the input  scalar value (C)
69%                        'brg': like rgb but reversed color order (blue, green, red)
70%                        '64 colors': continuous color from blue to red (multijet)
71%    .Vectors.colcode1 : first threshold for rgb, first value for'continuous'
72%    .Vectors.colcode2 : second threshold for rgb, last value (saturation) for 'continuous'
73%    .Vectors.CheckFixedCbounds;  =0 (default): the bounds on C representation are min and max, =1: they are fixed by .Minc and .MaxC
74%    .Vectors.MinC = imposed minimum of the scalar field used for vector color;
75%    .Vectors.MaxC = imposed maximum of the scalar field used for vector color;
76%
77% PosColorbar: if not empty, display a colorbar for B&W images
78%               imposed position of the colorbar (ex [0.821 0.471 0.019 0.445])
79
80%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
81%  Copyright Joel Sommeria, 2008, LEGI / CNRS-UJF-INPG, sommeria@coriolis-legi.org.
82%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
83%     This file is part of the toolbox UVMAT.
84%
85%     UVMAT is free software; you can redistribute it and/or modify
86%     it under the terms of the GNU General Public License as published by
87%     the Free Software Foundation; either version 2 of the License, or
88%     (at your option) any later version.
89%
90%     UVMAT is distributed in the hope that it will be useful,
91%     but WITHOUT ANY WARRANTY; without even the implied warranty of
92%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
93%     GNU General Public License (file UVMAT/COPYING.txt) for more details.
94%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
95
96function [PlotType,PlotParamOut,haxes]= plot_field(Data,haxes,PlotParam,PosColorbar)
97
98%% default input and output
99if ~exist('PlotParam','var'),PlotParam=[];end;
100if ~exist('PosColorbar','var'),PosColorbar=[];end;
101PlotType='text'; %default
102PlotParamOut=PlotParam;%default
103if ~isfield(PlotParam,'Coordinates')
104    PlotParam.Coordinates=[];
105end
106
107%% check input structure
108index_2D=[];
109index_1D=[];
110index_0D=[];
111errormsg=check_field_structure(Data);
112if ~isempty(errormsg)
113    msgbox_uvmat('ERROR',['input of plot_field/check_field_structure: ' errormsg])
114    display(['input of plot_field/check_field_structure: ' errormsg])
115    return
116end
117% check the cells of fields :
118[CellVarIndex,NbDim,VarType,errormsg]=find_field_indices(Data);
119if ~isempty(errormsg)
120    msgbox_uvmat('ERROR',['input of plot_field/find_field_indices: ' errormsg]);
121    return
122end
123index_2D=find(NbDim==2,2);%find 2D fields (at most 2)
124index_3D=find(NbDim>2,1);
125if ~isempty(index_3D)
126    if isfield(Data,'NbDim')&& isequal(Data.NbDim,2)
127        index_2D=[index_2D index_3D];
128    else
129        msgbox_uvmat('ERROR','volume plot not implemented yet');
130        return
131    end
132end
133index_1D=find(NbDim==1);
134index_0D=find(NbDim==0);
135%remove coordinates variables from 1D plot
136if ~isempty(index_2D)
137    for ivar=1:length(index_1D)
138        if isequal(CellVarIndex{index_1D(ivar)},VarType{index_1D(ivar)}.coord)
139            index_1D(ivar)=0;
140        end
141    end
142    index_1D=index_1D(index_1D>0);
143end
144
145%% pure text display
146if isempty(index_2D) && isempty(index_1D)% no plot
147    hfig=findobj(allchild(0),'Tag','fig_text_display');
148    if isempty(hfig)
149        hfig=figure('name','text_display','Tag','fig_text_display');
150    end
151    htext=findobj(hfig,'Tag','text_display');
152    if isempty(htext)
153        htext=uicontrol('Style','listbox','Units','normalized', 'Position',[0.05 0.09 0.9 0.71],'Tag','text_display');
154    end
155    if isempty(index_0D)
156        set(htext,'String',{''})
157    else
158        [errormsg]=plot_text(Data,CellVarIndex(index_0D),VarType(index_0D),htext);
159    end
160    haxes=[];
161end
162
163%% test axes and figure
164if ~isempty(index_2D)|| ~isempty(index_1D)%  plot
165    testnewfig=1;%test to create a new figure (default)
166    testzoomaxes=0;%test for the existence of a zoom secondary figure attached to the plotting axes
167    if exist('haxes','var')
168        if ishandle(haxes)
169            if isequal(get(haxes,'Type'),'axes')
170                testnewfig=0;
171                AxeData=get(haxes,'UserData');
172                if isfield(AxeData,'ZoomAxes')&& ishandle(AxeData.ZoomAxes)
173                    if isequal(get(AxeData.ZoomAxes,'Type'),'axes')
174                        testzoomaxes=1;
175                        zoomaxes=AxeData.ZoomAxes;
176                    end
177                end
178            end
179        end
180    end
181    % create a new figure and axes if the plotting axes does not exist
182    if testnewfig
183        hfig=figure;
184        set(hfig,'Units','normalized')
185        haxes=axes;
186        set(haxes,'position',[0.13,0.2,0.775,0.73])
187        PlotParam.NextPlot='add'; %parameter for plot_profile and plot_his
188    else
189        hfig=get(haxes,'parent');
190        set(0,'CurrentFigure',hfig)% the parent of haxes becomes the current figure
191        set(hfig,'CurrentAxes',haxes)%  haxes becomes the current axes of the parent figure
192    end
193   
194    %% set axes properties
195    if isfield(PlotParam.Coordinates,'CheckFixLimits') && isequal(PlotParam.Coordinates.CheckFixLimits,1)  %adjust the graph limits
196        set(haxes,'XLimMode', 'manual')
197        set(haxes,'YLimMode', 'manual')
198    else
199        set(haxes,'XLimMode', 'auto')
200        set(haxes,'YLimMode', 'auto')
201    end
202    if ~isfield(PlotParam.Coordinates,'CheckFixEqual')&& isfield(Data,'CoordUnit')
203        PlotParam.Coordinates.CheckFixEqual=1;% if CoordUnit is defined, the two coordiantes should be plotted with equal scale by default
204    end
205    if isfield(PlotParam.Coordinates,'CheckFixEqual') && isequal(PlotParam.Coordinates.CheckFixEqual,1)
206        set(haxes,'DataAspectRatioMode','manual')
207        set(haxes,'DataAspectRatio',[1 1 1])
208    else
209        set(haxes,'DataAspectRatioMode','auto')%automatic aspect ratio
210    end
211    errormsg='';
212   
213    %% plot if the input field is valid
214    AxeData=get(haxes,'UserData');
215    if isempty(index_2D)
216        plot_plane([],[],[],haxes);%removes images or vector plots if any
217    else  %plot 2D field
218        [tild,PlotParamOut,PlotType,errormsg]=plot_plane(Data,CellVarIndex(index_2D),VarType(index_2D),haxes,PlotParam,PosColorbar);
219        AxeData.NbDim=2;
220        if testzoomaxes && isempty(errormsg)
221            [zoomaxes,PlotParamOut,tild,errormsg]=plot_plane(Data,CellVarIndex(index_2D),VarType(index_2D),zoomaxes,PlotParam,PosColorbar);
222            AxeData.ZoomAxes=zoomaxes;
223        end
224    end
225    if isempty(index_1D)
226        if ~isempty(haxes)
227            plot_profile([],[],[],haxes);%
228        end
229    else %plot 1D field (usual graph y vs x)
230        Coordinates=plot_profile(Data,CellVarIndex(index_1D),VarType(index_1D),haxes,PlotParam.Coordinates);%
231        if testzoomaxes
232            [zoomaxes,Coordinates]=plot_profile(Data,CellVarIndex(index_1D),VarType(index_1D),zoomaxes,PlotParam.Coordinates);
233            AxeData.ZoomAxes=zoomaxes;
234        end
235        if ~isempty(Coordinates)
236            PlotParamOut.Coordinates=Coordinates;
237        end
238        PlotType='line';
239    end
240    % text display
241    htext=findobj(hfig,'Tag','text_display');
242    if ~isempty(htext)
243        if isempty(index_0D)
244            set(htext,'String',{''})
245        else
246            [errormsg]=plot_text(Data,CellVarIndex(index_0D),VarType(index_0D),htext);
247        end
248    end
249end
250
251%% display error message
252if ~isempty(errormsg)
253    msgbox_uvmat('ERROR', errormsg)
254end
255
256%% update the parameters stored in AxeData
257if ishandle(haxes)
258    if isfield(PlotParamOut,'MinX')
259        AxeData.RangeX=[PlotParamOut.MinX PlotParamOut.MaxX];%'[PlotParamOut.MinX PlotParamOut.MaxX];
260        AxeData.RangeY=[PlotParamOut.MinY PlotParamOut.MaxY];%[PlotParamOut.MinY PlotParamOut.MaxY]
261    end
262    set(haxes,'UserData',AxeData)
263end
264
265%% update the plotted field stored in parent figure
266
267FigData=get(hfig,'UserData');
268if strcmp(get(hfig,'tag'),'view_field')
269    set(hfig,'UserData',[]); % refresh user data in view_field (set by civ/TestCiv )
270end
271tagaxes=get(haxes,'tag');% tag of the current plot axis
272if isfield(FigData,tagaxes)
273    FigData.(tagaxes)=Data;
274    set(hfig,'UserData',FigData)
275end
276
277%-------------------------------------------------------------------
278function errormsg=plot_text(FieldData,CellVarIndex,VarTypeCell,htext)
279%-------------------------------------------------------------------
280errormsg=[];
281txt_cell={};
282for icell=1:length(CellVarIndex)
283    VarIndex=CellVarIndex{icell};%  indices of the selected variables in the list data.ListVarName
284    for ivar=1:length(VarIndex)
285        checkancillary=0;
286        if length(FieldData.VarAttribute)>=VarIndex(ivar)
287            VarAttribute=FieldData.VarAttribute{VarIndex(ivar)};
288            if isfield(VarAttribute,'Role')&&(strcmp(VarAttribute.Role,'ancillary')||strcmp(VarAttribute.Role,'coord_tps')...
289                    ||strcmp(VarAttribute.Role,'vector_x_tps')||strcmp(VarAttribute.Role,'vector_y_tps'))
290                checkancillary=1;
291            end
292        end
293        if ~checkancillary% does not display variables with attribute '.Role=ancillary'
294            VarName=FieldData.ListVarName{VarIndex(ivar)};
295            VarValue=FieldData.(VarName);
296            if size(VarValue,1)~=1
297                VarValue=VarValue';
298            end
299            if size(VarValue,1)==1
300            txt=[VarName '=' num2str(VarValue)];
301            txt_cell=[txt_cell;{txt}];
302            end
303        end
304    end
305end
306set(htext,'String',txt_cell)
307set(htext,'UserData',txt_cell)% for storage during mouse display
308
309%-------------------------------------------------------------------
310function CoordinatesOut=plot_profile(data,CellVarIndex,VarType,haxes,Coordinates)
311%-------------------------------------------------------------------
312
313if ~exist('Coordinates','var')
314    Coordinates=[];
315end
316CoordinatesOut=Coordinates; %default
317hfig=get(haxes,'parent');
318%suppress existing plot isf empty data
319if isempty(data)
320    hplot=findobj(haxes,'tag','plot_line');
321    if ~isempty(hplot)
322        delete(hplot)
323    end
324    hlegend=findobj(hfig,'tag','legend');
325    if ~isempty(hlegend)
326        delete(hlegend)
327    end
328    return
329end
330
331ColorOrder=[1 0 0;0 0.5 0;0 0 1;0 0.75 0.75;0.75 0 0.75;0.75 0.75 0;0.25 0.25 0.25];
332set(haxes,'ColorOrder',ColorOrder)
333if isfield(Coordinates,'NextPlot')
334    set(haxes,'NextPlot',Coordinates.NextPlot)
335end
336% adjust the size of the plot to include the whole field,
337
338legend_str={};
339
340%% prepare the string for plot command
341plotstr='hhh=plot(';
342coord_x_index=[];
343xtitle='';
344ytitle='';
345test_newplot=1;
346
347%loop on input  fields
348for icell=1:length(CellVarIndex)
349    VarIndex=CellVarIndex{icell};%  indices of the selected variables in the list data.ListVarName
350    if ~isempty(VarType{icell}.coord_x)
351        coord_x_index=VarType{icell}.coord_x;
352    else
353        coord_x_index_cell=VarType{icell}.coord(1);
354        if isequal(coord_x_index_cell,0)
355             continue  % the cell has no abscissa, skip it
356        end
357        coord_x_index=coord_x_index_cell;
358    end
359    testplot=ones(size(data.ListVarName));%default test for plotted variables
360    xtitle=[xtitle data.ListVarName{coord_x_index}];
361    eval(['coord_x{icell}=data.' data.ListVarName{coord_x_index} ';']);%coordinate variable set as coord_x
362    if isfield(data,'VarAttribute')&& numel(data.VarAttribute)>=coord_x_index && isfield(data.VarAttribute{coord_x_index},'units')
363        xtitle=[xtitle '(' data.VarAttribute{coord_x_index}.units '), '];
364    else
365        xtitle=[xtitle ', '];
366    end
367    eval(['coord_x{icell}=data.' data.ListVarName{coord_x_index} ';']);%coordinate variable set as coord_x
368    XMin(icell)=min(coord_x{icell});
369    XMax(icell)=max(coord_x{icell});
370    testplot(coord_x_index)=0;
371    if ~isempty(VarType{icell}.ancillary')
372        testplot(VarType{icell}.ancillary)=0;
373    end
374    if ~isempty(VarType{icell}.warnflag')
375        testplot(VarType{icell}.warnflag)=0;
376    end
377    if isfield(data,'VarAttribute')
378        VarAttribute=data.VarAttribute;
379        for ivar=1:length(VarIndex)
380            if length(VarAttribute)>=VarIndex(ivar) && isfield(VarAttribute{VarIndex(ivar)},'long_name')
381                plotname{VarIndex(ivar)}=VarAttribute{VarIndex(ivar)}.long_name;
382            else
383                plotname{VarIndex(ivar)}=data.ListVarName{VarIndex(ivar)};%name for display in plot A METTRE
384            end
385        end
386    end
387    if ~isempty(VarType{icell}.discrete')
388        charplot_0='''+''';
389    else
390        charplot_0='''-''';
391    end
392    YMin=0;
393    YMax=1;%default
394    for ivar=1:length(VarIndex)
395        if testplot(VarIndex(ivar))
396            VarName=data.ListVarName{VarIndex(ivar)};
397            ytitle=[ytitle VarName];
398            if isfield(data,'VarAttribute')&& numel(data.VarAttribute)>=VarIndex(ivar) && isfield(data.VarAttribute{VarIndex(ivar)},'units')
399                ytitle=[ytitle '(' data.VarAttribute{VarIndex(ivar)}.units '), '];
400            else
401                ytitle=[ytitle ', '];
402            end
403            eval(['data.' VarName '=squeeze(data.' VarName ');'])
404            %eval(['min(data.' VarName ')'])
405            YMin(ivar)=min(min(data.(VarName)));
406            YMax(ivar)=max(max(data.(VarName)));
407            plotstr=[plotstr 'coord_x{' num2str(icell) '},data.' VarName ',' charplot_0 ','];
408            eval(['nbcomponent2=size(data.' VarName ',2);']);
409            eval(['nbcomponent1=size(data.' VarName ',1);']);
410            if numel(coord_x{icell})==2
411                coord_x{icell}=linspace(coord_x{icell}(1),coord_x{icell}(2),nbcomponent1);
412            end
413            if nbcomponent1==1|| nbcomponent2==1
414                legend_str=[legend_str {VarName}]; %variable with one component
415            else  %variable with severals  components
416                for ic=1:min(nbcomponent1,nbcomponent2)
417                    legend_str=[legend_str [VarName '_' num2str(ic)]]; %variable with severals  components
418                end                                                   % labeled by their index (e.g. color component)
419            end
420        end
421    end
422    YMin_cell(icell)=min(YMin);
423    YMax_cell(icell)=max(YMax);
424end
425
426%% activate the plot
427if test_newplot && ~isequal(plotstr,'hhh=plot(') 
428    set(hfig,'CurrentAxes',haxes)
429    tag=get(haxes,'tag');   
430    %%%
431    plotstr=[plotstr '''tag'',''plot_line'');'];   
432    eval(plotstr)                  %execute plot (instruction  plotstr)
433    %%%
434    set(haxes,'tag',tag)
435    grid(haxes, 'on')
436    hxlabel=xlabel(xtitle(1:end-2));% xlabel (removes ', ' at the end)
437    set(hxlabel,'Interpreter','none')% desable tex interpreter
438    if length(legend_str)>=1
439        hylabel=ylabel(ytitle(1:end-2));% ylabel (removes ', ' at the end)
440        set(hylabel,'Interpreter','none')% desable tex interpreter
441    end
442    if ~isempty(legend_str)
443        hlegend=findobj(hfig,'Tag','legend');
444        if isempty(hlegend)
445            hlegend=legend(legend_str);
446            txt=ver('MATLAB');
447            Release=txt.Release;
448            relnumb=str2double(Release(3:4));% should be changed to Version for better compatibility
449            if relnumb >= 14
450                set(hlegend,'Interpreter','none')% desable tex interpreter
451            end
452        else
453            legend_old=get(hlegend,'String');
454            if isequal(size(legend_old,1),size(legend_str,1))&&~isequal(legend_old,legend_str)
455                set(hlegend,'String',[legend_old legend_str]);
456            end
457        end
458    end
459    title_str='';
460    if isfield(data,'filename')
461       [Path, title_str, ext]=fileparts(data.filename);
462       title_str=[title_str ext];
463    end
464    if isfield(data,'Action')
465        if ~isequal(title_str,'')
466            title_str=[title_str ', '];
467        end
468        title_str=[title_str data.Action];
469    end
470    htitle=title(title_str);
471    txt=ver('MATLAB');
472    Release=txt.Release;
473    relnumb=str2double(Release(3:4));
474    if relnumb >= 14
475        set(htitle,'Interpreter','none')% desable tex interpreter
476    end
477end
478
479%% determine axes bounds
480%CoordinatesOut.RangeX=[min(XMin) max(XMax)];
481%CoordinatesOut.RangeY=[min(YMin_cell) max(YMax_cell)];
482fix_lim=isfield(Coordinates,'CheckFixLimits') && Coordinates.CheckFixLimits;
483if fix_lim
484    if ~isfield(Coordinates,'MinX')||~isfield(Coordinates,'MaxX')||~isfield(Coordinates,'MinY')||~isfield(Coordinates,'MaxY')
485        fix_lim=0; %free limits if lits are not set,
486    end
487end
488if fix_lim
489    set(haxes,'XLim',[Coordinates.MinX Coordinates.MaxX])
490    set(haxes,'YLim',[Coordinates.MinY Coordinates.MaxY])
491else   
492    CoordinatesOut.MinX=min(XMin);
493    CoordinatesOut.MaxX=max(XMax);
494    CoordinatesOut.MinY=min(YMin_cell);
495    CoordinatesOut.MaxY=max(YMax_cell);
496end
497
498%-------------------------------------------------------------------
499function [haxes,PlotParamOut,PlotType,errormsg]=plot_plane(Data,CellVarIndex,VarTypeCell,haxes,PlotParam,PosColorbar)
500%-------------------------------------------------------------------
501
502grid(haxes, 'off')% remove grid (possibly remaining from other graphs)
503%default plotting parameters
504PlotType='plane';%default
505if ~exist('PlotParam','var')
506    PlotParam=[];
507end
508
509if ~isfield(PlotParam,'Scalar')
510    PlotParam.Scalar=[];
511end
512if ~isfield(PlotParam,'Vectors')
513    PlotParam.Vectors=[];
514end
515
516PlotParamOut=PlotParam;%default
517hfig=get(haxes,'parent');
518hcol=findobj(hfig,'Tag','Colorbar'); %look for colorbar axes
519hima=findobj(haxes,'Tag','ima');% search existing image in the current axes
520errormsg='';%default
521test_ima=0; %default: test for image or map plot
522test_vec=0; %default: test for vector plots
523test_black=0;
524test_false=0;
525test_C=0;
526XName='';
527x_units='';
528YName='';
529y_units='';
530for icell=1:length(CellVarIndex) % length(CellVarIndex) =1 or 2 (from the calling function)
531    VarType=VarTypeCell{icell};
532    if ~isempty(VarType.coord_tps)
533        continue
534    end
535    ivar_X=VarType.coord_x; % defines (unique) index for the variable representing unstructured x coordinate (default =[])
536    ivar_Y=VarType.coord_y; % defines (unique)index for the variable representing unstructured y coordinate (default =[])
537    ivar_U=VarType.vector_x; % defines (unique) index for the variable representing x vector component (default =[])
538    ivar_V=VarType.vector_y; % defines (unique) index for the variable representing y vector component (default =[])
539    ivar_C=[VarType.scalar VarType.image VarType.color VarType.ancillary]; %defines index (indices) for the scalar or ancillary fields
540    if numel(ivar_C)>1
541        errormsg= 'error in plot_field: too many scalar inputs';
542        return
543    end
544    ivar_F=VarType.warnflag; %defines index (unique) for warning flag variable
545    ivar_FF=VarType.errorflag; %defines index (unique) for error flag variable
546    ind_coord=find(VarType.coord);
547    if numel(ind_coord)==2
548        VarType.coord=VarType.coord(ind_coord);
549    end
550    if ~isempty(ivar_U) && ~isempty(ivar_V)% vector components detected
551        if test_vec
552            errormsg='error in plot_field: attempt to plot two vector fields';
553            return
554        else
555            test_vec=1;
556            vec_U=Data.(Data.ListVarName{ivar_U});
557            vec_V=Data.(Data.ListVarName{ivar_V});
558            if ~isempty(ivar_X) && ~isempty(ivar_Y)% 2D field (with unstructured coordinates or structured ones (then ivar_X and ivar_Y empty)
559                XName=Data.ListVarName{ivar_X};
560                YName=Data.ListVarName{ivar_Y};
561                eval(['vec_X=reshape(Data.' XName ',[],1);'])
562                eval(['vec_Y=reshape(Data.' YName ',[],1);'])
563            elseif numel(VarType.coord)==2 && ~isequal(VarType.coord,[0 0]);%coordinates defines by dimension variables
564                eval(['y=Data.' Data.ListVarName{VarType.coord(1)} ';'])
565                eval(['x=Data.' Data.ListVarName{VarType.coord(2)} ';'])
566                if numel(y)==2 % y defined by first and last values on aregular mesh
567                    y=linspace(y(1),y(2),size(vec_U,1));
568                end
569                if numel(x)==2 % y defined by first and last values on aregular mesh
570                    x=linspace(x(1),x(2),size(vec_U,2));
571                end
572                [vec_X,vec_Y]=meshgrid(x,y); 
573            else
574                errormsg='error in plot_field: invalid coordinate definition for vector field';
575                return
576            end
577            if ~isempty(ivar_C)
578                 eval(['vec_C=Data.' Data.ListVarName{ivar_C} ';']) ;
579                 vec_C=reshape(vec_C,1,numel(vec_C));
580                 test_C=1;
581            end
582            if ~isempty(ivar_F)%~(isfield(PlotParam.Vectors,'HideWarning')&& isequal(PlotParam.Vectors.HideWarning,1))
583                if test_vec
584                    vec_F=Data.(Data.ListVarName{ivar_F}); % warning flags for  dubious vectors
585                    if  ~(isfield(PlotParam.Vectors,'CheckHideWarning') && isequal(PlotParam.Vectors.CheckHideWarning,1))
586                        test_black=1;
587                    end
588                end
589            end
590            if ~isempty(ivar_FF) %&& ~test_false
591                if test_vec% TODO: deal with FF for structured coordinates
592                    vec_FF=Data.(Data.ListVarName{ivar_FF}); % flags for false vectors
593                end
594            end
595        end
596    elseif ~isempty(ivar_C) %scalar or image
597        if test_ima
598             errormsg='attempt to plot two scalar fields or images';
599            return
600        end
601        eval(['A=squeeze(Data.' Data.ListVarName{ivar_C} ');']) ;% scalar represented as color image
602        test_ima=1;
603        if ~isempty(ivar_X) && ~isempty(ivar_Y)% 2D field (with unstructured coordinates  (then ivar_X and ivar_Y not empty)
604            A=reshape(A,1,[]);
605            XName=Data.ListVarName{ivar_X};
606            YName=Data.ListVarName{ivar_Y};
607            eval(['AX=reshape(Data.' XName ',1,[]);'])
608            eval(['AY=reshape(Data.' YName ',1,[]);'])
609            [A,AX,AY]=proj_grid(AX',AY',A',[],[],'np>256');  % interpolate on a grid 
610            if isfield(Data,'VarAttribute')
611                if numel(Data.VarAttribute)>=ivar_X && isfield(Data.VarAttribute{ivar_X},'units')
612                    x_units=[' (' Data.VarAttribute{ivar_X}.units ')'];
613                end
614                if numel(Data.VarAttribute)>=ivar_Y && isfield(Data.VarAttribute{ivar_Y},'units')
615                    y_units=[' (' Data.VarAttribute{ivar_Y}.units ')'];
616                end
617            end       
618        elseif numel(VarType.coord)==2 %structured coordinates
619            XName=Data.ListVarName{VarType.coord(2)};
620            YName=Data.ListVarName{VarType.coord(1)};
621            eval(['AY=Data.' Data.ListVarName{VarType.coord(1)} ';'])
622            eval(['AX=Data.' Data.ListVarName{VarType.coord(2)} ';'])
623            test_interp_X=0; %default, regularly meshed X coordinate
624            test_interp_Y=0; %default, regularly meshed Y coordinate
625            if isfield(Data,'VarAttribute')
626                if numel(Data.VarAttribute)>=VarType.coord(2) && isfield(Data.VarAttribute{VarType.coord(2)},'units')
627                    x_units=Data.VarAttribute{VarType.coord(2)}.units;
628                end
629                if numel(Data.VarAttribute)>=VarType.coord(1) && isfield(Data.VarAttribute{VarType.coord(1)},'units')
630                    y_units=Data.VarAttribute{VarType.coord(1)}.units;
631                end
632            end 
633            if numel(AY)>2
634                DAY=diff(AY);
635                DAY_min=min(DAY);
636                DAY_max=max(DAY);
637                if sign(DAY_min)~=sign(DAY_max);% =1 for increasing values, 0 otherwise
638                     errormsg=['errror in plot_field.m: non monotonic dimension variable ' Data.ListVarName{VarType.coord(1)} ];
639                      return
640                end
641                test_interp_Y=(DAY_max-DAY_min)> 0.0001*abs(DAY_max);
642            end
643            if numel(AX)>2
644                DAX=diff(AX);
645                DAX_min=min(DAX);
646                DAX_max=max(DAX);
647                if sign(DAX_min)~=sign(DAX_max);% =1 for increasing values, 0 otherwise
648                     errormsg=['errror in plot_field.m: non monotonic dimension variable ' Data.ListVarName{VarType.coord(2)} ];
649                      return
650                end
651                test_interp_X=(DAX_max-DAX_min)> 0.0001*abs(DAX_max);
652            end 
653            if test_interp_Y         
654                npxy(1)=max([256 floor((AY(end)-AY(1))/DAY_min) floor((AY(end)-AY(1))/DAY_max)]);
655                yI=linspace(AY(1),AY(end),npxy(1));
656                if ~test_interp_X
657                    xI=linspace(AX(1),AX(end),size(A,2));%default
658                    AX=xI;
659                end
660            end
661            if test_interp_X 
662                npxy(2)=max([256 floor((AX(end)-AX(1))/DAX_min) floor((AX(end)-AX(1))/DAX_max)]);
663                xI=linspace(AX(1),AX(end),npxy(2));   
664                if ~test_interp_Y
665                   yI=linspace(AY(1),AY(end),size(A,1));
666                   AY=yI;
667                end
668            end
669            if test_interp_X || test_interp_Y               
670                [AX2D,AY2D]=meshgrid(AX,AY);
671                A=interp2(AX2D,AY2D,double(A),xI,yI');
672            end
673            AX=[AX(1) AX(end)];% keep only the lower and upper bounds for image represnetation
674            AY=[AY(1) AY(end)];
675        else
676            errormsg='error in plot_field: invalid coordinate definition ';
677            return
678        end
679    end
680    %define coordinates as CoordUnits, if not defined as attribute for each variable
681    if isfield(Data,'CoordUnit')
682        if isempty(x_units)
683            x_units=Data.CoordUnit;
684        end
685        if isempty(y_units)
686            y_units=Data.CoordUnit;
687        end
688    end
689       
690end
691
692%%   image or scalar plot %%%%%%%%%%%%%%%%%%%%%%%%%%
693
694if isfield(PlotParam.Scalar,'ListContour')
695    CheckContour=strcmp(PlotParam.Scalar.ListContour,'contours');
696else
697    CheckContour=0; %default
698end
699PlotParamOut=PlotParam; %default
700if test_ima
701    % distinguish B/W and color images
702    np=size(A);%size of image
703    siz=numel(np);
704    if siz>3
705       errormsg=['unrecognized scalar type: ' num2str(siz) ' dimensions'];
706            return
707    end
708    if siz==3
709        if np(3)==1
710            siz=2;%B W image
711        elseif np(3)==3
712            siz=3;%color image
713        else
714            errormsg=['unrecognized scalar type in plot_field: considered as 2D field with ' num2str(np(3)) ' color components'];
715            return
716        end
717    end
718   
719    %set the color map
720    if isfield(PlotParam.Scalar,'CheckBW') && ~isempty(PlotParam.Scalar.CheckBW)
721        BW=PlotParam.Scalar.CheckBW; %BW=0 color imposed, else gray scale imposed.
722    else % BW imposed automatically chosen
723        BW=(siz==2) && (isa(A,'uint8')|| isa(A,'uint16'));% non color images represented in gray scale by default
724        PlotParamOut.Scalar.CheckBW=BW;
725    end
726    %case of grey level images or contour plot
727    if siz==2
728        if ~isfield(PlotParam.Scalar,'CheckFixScalar')
729            PlotParam.Scalar.CheckFixScalar=0;%default
730        end
731        if ~isfield(PlotParam.Scalar,'MinA')
732            PlotParam.Scalar.MinA=[];%default
733        end
734        if ~isfield(PlotParam.Scalar,'MaxA')
735            PlotParam.Scalar.MaxA=[];%default
736        end
737        Aline=[];
738        if ~PlotParam.Scalar.CheckFixScalar ||isempty(PlotParam.Scalar.MinA)||~isa(PlotParam.Scalar.MinA,'double')  %correct if there is no numerical data in edit box
739            Aline=reshape(A,1,[]);
740            Aline=Aline(~isnan(A));
741            if isempty(Aline)
742                 errormsg='NaN input scalar or image in plot_field';
743                return
744            end
745            MinA=double(min(Aline));
746        else
747            MinA=PlotParam.Scalar.MinA;
748        end;
749        if ~PlotParam.Scalar.CheckFixScalar||isempty(PlotParam.Scalar.MaxA)||~isa(PlotParam.Scalar.MaxA,'double') %correct if there is no numerical data in edit box
750            if isempty(Aline)
751               Aline=reshape(A,1,[]);
752               Aline=Aline(~isnan(A));
753               if isempty(Aline)
754                 errormsg='NaN input scalar or image in plot_field';
755                return
756               end
757            end
758            MaxA=double(max(Aline));
759        else
760            MaxA=PlotParam.Scalar.MaxA; 
761        end;
762        PlotParamOut.Scalar.MinA=MinA;
763        PlotParamOut.Scalar.MaxA=MaxA;
764        % case of contour plot
765        if CheckContour
766            if ~isempty(hima) && ishandle(hima)
767                delete(hima)
768            end
769            if ~isfield(PlotParam.Scalar,'IncrA')
770                PlotParam.Scalar.IncrA=NaN;
771            end
772            if isempty(PlotParam.Scalar.IncrA)|| isnan(PlotParam.Scalar.IncrA)% | PlotParam.Scalar.AutoScal==0
773                cont=colbartick(MinA,MaxA);
774                intercont=cont(2)-cont(1);%default
775                PlotParamOut.Scalar.IncrA=intercont;
776            else
777               intercont=PlotParam.Scalar.IncrA;
778            end
779            B=A;           
780            abscontmin=intercont*floor(MinA/intercont);
781            abscontmax=intercont*ceil(MaxA/intercont);
782            contmin=intercont*floor(min(min(B))/intercont);
783            contmax=intercont*ceil(max(max(B))/intercont);
784            cont_pos_plus=0:intercont:contmax;
785            cont_pos_min=double(contmin):intercont:-intercont;
786            cont_pos=[cont_pos_min cont_pos_plus];
787            sizpx=(AX(end)-AX(1))/(np(2)-1);
788            sizpy=(AY(1)-AY(end))/(np(1)-1);
789            x_cont=AX(1):sizpx:AX(end); % pixel x coordinates for image display
790            y_cont=AY(1):-sizpy:AY(end); % pixel x coordinates for image display
791           % axes(haxes)% set the input axes handle as current axis
792    txt=ver('MATLAB');
793    Release=txt.Release;
794            relnumb=str2double(Release(3:4));
795            if relnumb >= 14
796                    vec=linspace(0,1,(abscontmax-abscontmin)/intercont);%define a greyscale colormap with steps intercont
797                map=[vec' vec' vec'];
798                colormap(map);
799                [var,hcontour]=contour(x_cont,y_cont,B,cont_pos);       
800                set(hcontour,'Fill','on')
801                set(hcontour,'LineStyle','none')
802                hold on
803            end
804            [var_p,hcontour_p]=contour(x_cont,y_cont,B,cont_pos_plus,'k-');
805            hold on
806            [var_m,hcontour_m]=contour(x_cont,y_cont,B,cont_pos_min,':');
807            set(hcontour_m,'LineColor',[1 1 1])
808            hold off
809            caxis([abscontmin abscontmax])
810            colormap(map);
811                       if isfield(PlotParam.Coordinates,'CheckFixEqual') && isequal(PlotParam.Coordinates.CheckFixEqual,1)
812                set(haxes,'DataAspectRatioMode','manual')
813                set(haxes,'DataAspectRatio',[1 1 1])
814           end
815        end
816       
817        % set  colormap for  image display
818        if ~CheckContour
819            % rescale the grey levels with min and max, put a grey scale colorbar
820            B=A;
821            if BW
822                vec=linspace(0,1,255);%define a linear greyscale colormap
823                map=[vec' vec' vec'];
824                colormap(map);  %grey scale color map
825            else
826                colormap('default'); % standard faulse colors for div, vort , scalar fields
827            end
828        end
829       
830    % case of color images
831    else
832        if BW
833            B=uint16(sum(A,3));
834        else
835            B=uint8(A);
836        end
837        MinA=0;
838        MaxA=255;
839    end
840   
841    % display usual image
842    if ~CheckContour     
843        % interpolate field to increase resolution of image display
844        test_interp=1;
845        if max(np) <= 64
846            npxy=8*np;% increase the resolution 8 times
847        elseif max(np) <= 128
848            npxy=4*np;% increase the resolution 4 times
849        elseif max(np) <= 256
850            npxy=2*np;% increase the resolution 2 times
851        else
852            npxy=np;
853            test_interp=0; % no interpolation done
854        end
855        if test_interp==1%if we interpolate   
856            x=linspace(AX(1),AX(2),np(2));
857            y=linspace(AY(1),AY(2),np(1));
858            [X,Y]=meshgrid(x,y);
859            xi=linspace(AX(1),AX(2),npxy(2));
860            yi=linspace(AY(1),AY(2),npxy(1));
861            B = interp2(X,Y,double(B),xi,yi');
862        end           
863        % create new image if there  no image handle is found
864        if isempty(hima)
865            tag=get(haxes,'Tag');
866            if MinA<MaxA
867                hima=imagesc(AX,AY,B,[MinA MaxA]);
868            else % to deal with uniform field
869                hima=imagesc(AX,AY,B,[MaxA-1 MaxA]);
870            end
871            % the function imagesc reset the axes 'DataAspectRatioMode'='auto', change if .CheckFixEqual is
872            % requested:
873           if isfield(PlotParam.Coordinates,'CheckFixEqual') && isequal(PlotParam.Coordinates.CheckFixEqual,1)
874                set(haxes,'DataAspectRatioMode','manual')
875                set(haxes,'DataAspectRatio',[1 1 1])
876           end
877            set(hima,'Tag','ima')
878            set(hima,'HitTest','off')
879            set(haxes,'Tag',tag);%preserve the axes tag (removed by image fct !!!)     
880            uistack(hima, 'bottom')
881        % update an existing image
882        else
883            set(hima,'CData',B);
884            if MinA<MaxA
885                set(haxes,'CLim',[MinA MaxA])
886            else
887                set(haxes,'CLim',[MinA MaxA+1])
888            end
889            set(hima,'XData',AX);
890            set(hima,'YData',AY);
891        end
892        % set the transparency to 0.5 if vectors are also plotted
893        if test_vec
894            set(hima,'AlphaData',0.5)
895        else
896            set(hima,'AlphaData',1)
897        end
898    end
899    test_ima=1;
900   
901    %display the colorbar code for B/W images if Poscolorbar not empty
902    if siz==2 && exist('PosColorbar','var')&& ~isempty(PosColorbar)
903        if isempty(hcol)||~ishandle(hcol)
904             hcol=colorbar;%create new colorbar
905        end
906        if length(PosColorbar)==4
907                 set(hcol,'Position',PosColorbar)           
908        end
909        %YTick=0;%default
910        if MaxA>MinA
911            if CheckContour
912                colbarlim=get(hcol,'YLim');
913                scale_bar=(colbarlim(2)-colbarlim(1))/(abscontmax-abscontmin);               
914                YTick=cont_pos(2:end-1);
915                YTick_scaled=colbarlim(1)+scale_bar*(YTick-abscontmin);
916                set(hcol,'YTick',YTick_scaled);
917            elseif (isfield(PlotParam.Scalar,'CheckBW') && isequal(PlotParam.Scalar.CheckBW,1))||isa(A,'uint8')|| isa(A,'uint16')%images
918                hi=get(hcol,'children');
919                if iscell(hi)%multiple images in colorbar
920                    hi=hi{1};
921                end
922                set(hi,'YData',[MinA MaxA])
923                set(hi,'CData',(1:256)')
924                set(hcol,'YLim',[MinA MaxA])
925                YTick=colbartick(MinA,MaxA);
926                set(hcol,'YTick',YTick)               
927            else
928                hi=get(hcol,'children');
929                if iscell(hi)%multiple images in colorbar
930                    hi=hi{1};
931                end
932                set(hi,'YData',[MinA MaxA])
933                set(hi,'CData',(1:64)')
934                YTick=colbartick(MinA,MaxA);
935                set(hcol,'YLim',[MinA MaxA])
936                set(hcol,'YTick',YTick)
937            end
938            set(hcol,'Yticklabel',num2str(YTick'));
939        end
940    elseif ishandle(hcol)
941        delete(hcol); %erase existing colorbar if not needed
942    end
943else%no scalar plot
944    if ~isempty(hima) && ishandle(hima)
945        delete(hima)
946    end
947    if ~isempty(hcol)&& ishandle(hcol)
948       delete(hcol)
949    end
950    PlotParamOut=rmfield(PlotParamOut,'Scalar');
951end
952
953%%   vector plot %%%%%%%%%%%%%%%%%%%%%%%%%%
954if test_vec
955   %vector scale representation
956    if size(vec_U,1)==numel(vec_Y) && size(vec_U,2)==numel(vec_X); % x, y  coordinate variables
957        [vec_X,vec_Y]=meshgrid(vec_X,vec_Y);
958    end   
959    vec_X=reshape(vec_X,1,numel(vec_X));%reshape in matlab vectors
960    vec_Y=reshape(vec_Y,1,numel(vec_Y));
961    vec_U=reshape(vec_U,1,numel(vec_U));
962    vec_V=reshape(vec_V,1,numel(vec_V));
963     MinMaxX=max(vec_X)-min(vec_X);
964    if  isfield(PlotParam.Vectors,'CheckFixVectors') && isequal(PlotParam.Vectors.CheckFixVectors,1)&& isfield(PlotParam.Vectors,'VecScale')...
965               &&~isempty(PlotParam.Vectors.VecScale) && isa(PlotParam.Vectors.VecScale,'double') %fixed vector scale
966        scale=PlotParam.Vectors.VecScale;  %impose the length of vector representation
967    else
968        if ~test_false %remove false vectors   
969            indsel=1:numel(vec_X);%
970        end
971        if isempty(vec_U)
972            scale=1;
973        else
974            if isempty(indsel)
975                MaxU=max(abs(vec_U));
976                MaxV=max(abs(vec_V));
977            else
978                MaxU=max(abs(vec_U(indsel)));
979                MaxV=max(abs(vec_V(indsel)));
980            end
981            scale=MinMaxX/(max(MaxU,MaxV)*50);
982            PlotParam.Vectors.VecScale=scale;%update the 'scale' display
983        end
984    end
985   
986    %record vectors on the plotting axes
987    if test_C==0
988        vec_C=ones(1,numel(vec_X));
989    end
990   
991    %decimate by a factor 2 in vector mesh(4 in nbre of vectors)
992    if isfield(PlotParam.Vectors,'CheckDecimate4') && PlotParam.Vectors.CheckDecimate4
993        diffy=diff(vec_Y); %difference dy=vec_Y(i+1)-vec_Y(i)
994        dy_thresh=max(abs(diffy))/2;
995        ind_jump=find(abs(diffy) > dy_thresh); %indices with diff(vec_Y)> max/2, detect change of line
996        ind_sel=1:ind_jump(1);%select the first line
997        for i=2:2:length(ind_jump)-1
998            ind_sel=[ind_sel (ind_jump(i)+1:ind_jump(i+1))];% select the odd lines
999        end
1000        nb_sel=length(ind_sel);
1001        ind_sel=ind_sel(1:2:nb_sel);% take half the points on a line
1002        vec_X=vec_X(ind_sel);
1003        vec_Y=vec_Y(ind_sel);
1004        vec_U=vec_U(ind_sel);
1005        vec_V=vec_V(ind_sel);
1006        vec_C=vec_C(ind_sel);
1007        if ~isempty(ivar_F)
1008           vec_F=vec_F(ind_sel);
1009        end
1010        if ~isempty(ivar_FF)
1011           vec_FF=vec_FF(ind_sel);
1012        end
1013    end
1014   
1015    %get main level color code
1016    [colorlist,col_vec,PlotParamOut.Vectors]=set_col_vec(PlotParam.Vectors,vec_C);
1017   
1018    % take flags into account: add flag colors to the list of colors
1019    sizlist=size(colorlist);
1020    nbcolor=sizlist(1);
1021    if test_black
1022       nbcolor=nbcolor+1;
1023       colorlist(nbcolor,:)=[0 0 0]; %add black to the list of colors
1024       if ~isempty(ivar_FF)
1025          %  ind_flag=find(vec_F~=1 & vec_F~=0 & vec_FF==0);  %flag warning but not false
1026            col_vec(vec_F~=1 & vec_F~=0 & vec_FF==0)=nbcolor;
1027       else
1028            col_vec(vec_F~=1 & vec_F~=0)=nbcolor;
1029       end
1030    end
1031    nbcolor=nbcolor+1;
1032    if ~isempty(ivar_FF)
1033        if isfield(PlotParam.Vectors,'CheckHideFalse') && PlotParam.Vectors.CheckHideFalse==1
1034            colorlist(nbcolor,:)=[NaN NaN NaN];% no plot of false vectors
1035        else
1036            colorlist(nbcolor,:)=[1 0 1];% magenta color
1037        end
1038        col_vec(vec_FF~=0)=nbcolor;
1039    end
1040    %plot vectors:
1041    quiresetn(haxes,vec_X,vec_Y,vec_U,vec_V,scale,colorlist,col_vec);   
1042
1043else
1044    hvec=findobj(haxes,'Tag','vel');
1045    if ~isempty(hvec)
1046        delete(hvec);
1047    end
1048    PlotParamOut=rmfield(PlotParamOut,'Vectors');
1049end
1050
1051%listfields={'AY','AX','A','X','Y','U','V','C','W','F','FF'};
1052%listdim={'AY','AX',{'AY','AX'},'nb_vectors','nb_vectors','nb_vectors','nb_vectors','nb_vectors','nb_vectors','nb_vectors','nb_vectors'};
1053%Role={'coord_y','coord_x','scalar','coord_x','coord_y','vector_x','vector_y','scalar','vector_z','warnflag','errorflag'};
1054%ind_select=[];
1055nbvar=0;
1056
1057%store the coordinate extrema occupied by the field
1058if ~isempty(Data)
1059    XMin=[];
1060    XMax=[];
1061    YMin=[];
1062    YMax=[];
1063    fix_lim=isfield(PlotParam.Coordinates,'CheckFixLimits') && PlotParam.Coordinates.CheckFixLimits;
1064    if fix_lim
1065        if isfield(PlotParam.Coordinates,'MinX')&&isfield(PlotParam.Coordinates,'MaxX')&&isfield(PlotParam.Coordinates,'MinY')&&isfield(PlotParam.Coordinates,'MaxY')
1066            XMin=PlotParam.Coordinates.MinX;
1067            XMax=PlotParam.Coordinates.MaxX;
1068            YMin=PlotParam.Coordinates.MinY;
1069            YMax=PlotParam.Coordinates.MaxY;
1070        end  %else PlotParamOut.XMin =PlotParam.XMin...
1071    else
1072        if test_ima %both background image and vectors coexist, take the wider bound
1073            XMin=min(AX);
1074            XMax=max(AX);
1075            YMin=min(AY);
1076            YMax=max(AY);
1077            if test_vec
1078                XMin=min(XMin,min(vec_X));
1079                XMax=max(XMax,max(vec_X));
1080                YMin=min(YMin,min(vec_Y));
1081                YMax=max(YMax,max(vec_Y));
1082            end
1083        elseif test_vec
1084            XMin=min(vec_X);
1085            XMax=max(vec_X);
1086            YMin=min(vec_Y);
1087            YMax=max(vec_Y);
1088        end
1089    end
1090%     PlotParamOut.RangeX=[XMin XMax]; %range of x, to be stored in the user data of the plot axes
1091%     PlotParamOut.RangeY=[YMin YMax]; %range of x, to be stored in the user data of the plot axes
1092%     if ~fix_lim
1093        PlotParamOut.Coordinates.MinX=XMin;
1094        PlotParamOut.Coordinates.MaxX=XMax;
1095        PlotParamOut.Coordinates.MinY=YMin;
1096        PlotParamOut.Coordinates.MaxY=YMax;
1097        if XMax>XMin
1098            set(haxes,'XLim',[XMin XMax]);% set x limits of frame in axes coordinates
1099        end
1100        if YMax>YMin
1101            set(haxes,'YLim',[YMin YMax]);% set x limits of frame in axes coordinates
1102        end
1103%     end
1104    set(haxes,'YDir','normal')
1105    set(get(haxes,'XLabel'),'String',[XName ' (' x_units ')']);
1106    set(get(haxes,'YLabel'),'String',[YName ' (' y_units ')']);
1107    PlotParamOut.Coordinates.x_units=x_units;
1108    PlotParamOut.Coordinates.y_units=y_units;
1109end
1110%-------------------------------------------------------------------
1111% --- function for plotting vectors
1112%INPUT:
1113% haxes: handles of the plotting axes
1114% x,y,u,v: vectors coordinates and vector components to plot, arrays withb the same dimension
1115% scale: scaling factor for vector length representation
1116% colorlist(icolor,:): list of vector colors, dim (nbcolor,3), depending on color #i
1117% col_vec: matlab vector setting the color number #i for each velocity vector
1118function quiresetn(haxes,x,y,u,v,scale,colorlist,col_vec)
1119%-------------------------------------------------------------------
1120%define arrows
1121theta=0.5 ;%angle arrow
1122alpha=0.3 ;%length arrow
1123rot=alpha*[cos(theta) -sin(theta); sin(theta) cos(theta)]';
1124%find the existing lines
1125h=findobj(haxes,'Tag','vel');% search existing lines in the current axes
1126sizh=size(h);
1127set(h,'EraseMode','xor');
1128set(haxes,'NextPlot','replacechildren');
1129
1130%drawnow
1131%create lines (if no lines) or modify them
1132if ~isequal(size(col_vec),size(x))
1133    col_vec=ones(size(x));% case of error in col_vec input
1134end
1135sizlist=size(colorlist);
1136ncolor=sizlist(1);
1137
1138for icolor=1:ncolor
1139    %determine the line positions for each color icolor
1140    ind=find(col_vec==icolor);
1141    xc=x(ind);
1142    yc=y(ind);
1143    uc=u(ind)*scale;
1144    vc=v(ind)*scale;
1145    n=size(xc);
1146    xN=NaN*ones(size(xc));
1147    matx=[xc(:)-uc(:)/2 xc(:)+uc(:)/2 xN(:)]';
1148    matx=reshape(matx,1,3*n(2));
1149    maty=[yc(:)-vc(:)/2 yc(:)+vc(:)/2 xN(:)]';
1150    maty=reshape(maty,1,3*n(2));
1151   
1152    %determine arrow heads
1153    arrowplus=rot*[uc;vc];
1154    arrowmoins=rot'*[uc;vc];
1155    x1=xc+uc/2-arrowplus(1,:);
1156    x2=xc+uc/2;
1157    x3=xc+uc/2-arrowmoins(1,:);
1158    y1=yc+vc/2-arrowplus(2,:);
1159    y2=yc+vc/2;
1160    y3=yc+vc/2-arrowmoins(2,:);
1161    matxar=[x1(:) x2(:) x3(:) xN(:)]';
1162    matxar=reshape(matxar,1,4*n(2));
1163    matyar=[y1(:) y2(:) y3(:) xN(:)]';
1164    matyar=reshape(matyar,1,4*n(2));
1165    %draw the line or modify the existing ones
1166%     tri=reshape(1:3*length(uc),3,[])';   
1167    isn=isnan(colorlist(icolor,:));%test if color NaN
1168    if 2*icolor > sizh(1) %if icolor exceeds the number of existing ones
1169        if ~isn(1) %if the vectors are visible color not nan
1170            if n(2)>0
1171                hold on
1172                line(matx,maty,'Color',colorlist(icolor,:),'Tag','vel');% plot new lines
1173                line(matxar,matyar,'Color',colorlist(icolor,:),'Tag','vel');% plot arrows
1174            end
1175        end
1176    else
1177        if isn(1)
1178            delete(h(2*icolor-1))
1179            delete(h(2*icolor))
1180        else
1181            set(h(2*icolor-1),'Xdata',matx,'Ydata',maty);
1182            set(h(2*icolor-1),'Color',colorlist(icolor,:));
1183            set(h(2*icolor-1),'EraseMode','xor');
1184            set(h(2*icolor),'Xdata',matxar,'Ydata',matyar);
1185            set(h(2*icolor),'Color',colorlist(icolor,:));
1186            set(h(2*icolor),'EraseMode','xor');
1187        end
1188    end
1189end
1190if sizh(1) > 2*ncolor
1191    for icolor=ncolor+1 : sizh(1)/2%delete additional objects
1192        delete(h(2*icolor-1))
1193        delete(h(2*icolor))
1194    end
1195end
1196
1197%-------------------------------------------------------------------
1198% ---- determine tick positions for colorbar
1199function YTick=colbartick(MinA,MaxA)
1200%-------------------------------------------------------------------
1201%determine tick positions with "simple" values between MinA and MaxA
1202YTick=0;%default
1203maxabs=max([abs(MinA) abs(MaxA)]);
1204if maxabs>0
1205ord=10^(floor(log10(maxabs)));%order of magnitude
1206div=1;
1207siz2=1;
1208while siz2<2
1209    values=-10:div:10;
1210    ind=find((ord*values-MaxA)<0 & (ord*values-MinA)>0);%indices of 'values' such that MinA<ord*values<MaxA
1211    siz=size(ind);
1212    if siz(2)<4%if there are less than 4 selected values (4 levels)
1213        values=-9:0.5*div:9;
1214        ind=find((ord*values-MaxA)<0 & (ord*values-MinA)>0);
1215    end
1216    siz2=size(ind,2);
1217    div=div/10;
1218end
1219YTick=ord*values(ind);
1220end
1221
1222% -------------------------------------------------------------------------
1223% --- 'proj_grid': project  fields with unstructured coordinantes on a regular grid
1224function [A,rangx,rangy]=proj_grid(vec_X,vec_Y,vec_A,rgx_in,rgy_in,npxy_in)
1225% -------------------------------------------------------------------------
1226if length(vec_Y)<2
1227    msgbox_uvmat('ERROR','less than 2 points in proj_grid.m');
1228    return;
1229end
1230diffy=diff(vec_Y); %difference dy=vec_Y(i+1)-vec_Y(i)
1231index=find(diffy);% find the indices of vec_Y after wich a change of horizontal line occurs(diffy non zero)
1232if isempty(index); msgbox_uvmat('ERROR','points aligned along abscissa in proj_grid.m'); return; end;%points aligned% A FAIRE: switch to line plot.
1233diff2=diff(diffy(index));% diff2 = fluctuations of the detected vertical grid mesh dy
1234if max(abs(diff2))>0.001*abs(diffy(index(1))) % if max(diff2) is larger than 1/1000 of the first mesh dy
1235    % the data are not regularly spaced and must be interpolated  on a regular grid
1236    if exist('rgx_in','var') & ~isempty (rgx_in) & isnumeric(rgx_in) & length(rgx_in)==2%  positions imposed from input
1237        rangx=rgx_in; % first and last positions
1238        rangy=rgy_in;
1239        dxy(1)=1/(npxy_in(1)-1);%grid mesh in y
1240        dxy(2)=1/(npxy_in(2)-1);%grid mesh in x
1241        dxy(1)=(rangy(2)-rangy(1))/(npxy_in(1)-1);%grid mesh in y
1242        dxy(2)=(rangx(2)-rangx(1))/(npxy_in(2)-1);%grid mesh in x
1243    else % interpolation grid automatically determined
1244        rangx(1)=min(vec_X);
1245        rangx(2)=max(vec_X);
1246        rangy(2)=min(vec_Y);
1247        rangy(1)=max(vec_Y);
1248        dxymod=sqrt((rangx(2)-rangx(1))*(rangy(1)-rangy(2))/length(vec_X));
1249        dxy=[-dxymod/4 dxymod/4];% increase the resolution 4 times
1250    end
1251    xi=[rangx(1):dxy(2):rangx(2)];
1252    yi=[rangy(1):dxy(1):rangy(2)];
1253    A=griddata_uvmat(vec_X,vec_Y,vec_A,xi,yi');
1254    A=reshape(A,length(yi),length(xi));
1255else
1256    x=vec_X(1:index(1));% the set of abscissa (obtained on the first line)
1257    indexend=index(end);% last vector index of line change
1258    ymax=vec_Y(indexend+1);% y coordinate AFTER line change
1259    ymin=vec_Y(index(1));
1260    y=vec_Y(index);
1261    y(length(y)+1)=ymax;
1262    nx=length(x);   %number of grid points in x
1263    ny=length(y);   % number of grid points in y
1264    B=(reshape(vec_A,nx,ny))'; %vec_A reshaped as a rectangular matrix
1265    [X,Y]=meshgrid(x,y);% positions X and Y also reshaped as matrix
1266
1267    %linear interpolation to improve the image resolution and/or adjust
1268    %to prescribed positions
1269    test_interp=1;
1270    if exist('rgx_in','var') & ~isempty (rgx_in) & isnumeric(rgx_in) & length(rgx_in)==2%  positions imposed from input
1271        rangx=rgx_in; % first and last positions
1272        rangy=rgy_in;
1273        npxy=npxy_in;
1274    else       
1275        rangx=[vec_X(1) vec_X(nx)];% first and last position found for x
1276          rangy=[max(ymax,ymin) min(ymax,ymin)];
1277        if max(nx,ny) <= 64 & isequal(npxy_in,'np>256')
1278            npxy=[8*ny 8*nx];% increase the resolution 8 times
1279        elseif max(nx,ny) <= 128 & isequal(npxy_in,'np>256')
1280            npxy=[4*ny 4*nx];% increase the resolution 4 times
1281        elseif max(nx,ny) <= 256 & isequal(npxy_in,'np>256')
1282            npxy=[2*ny 2*nx];% increase the resolution 2 times
1283        else
1284            npxy=[ny nx];
1285            test_interp=0; % no interpolation done
1286        end
1287    end
1288    if test_interp==1%if we interpolate
1289        xi=[rangx(1):(rangx(2)-rangx(1))/(npxy(2)-1):rangx(2)];
1290        yi=[rangy(1):(rangy(2)-rangy(1))/(npxy(1)-1):rangy(2)];
1291        [XI,YI]=meshgrid(xi,yi);
1292        A = interp2(X,Y,B,XI,YI);
1293    else %no interpolation for a resolution higher than 256
1294        A=B;
1295    end
1296end
Note: See TracBrowser for help on using the repository browser.