source: trunk/src/plot_field.m @ 659

Last change on this file since 659 was 652, checked in by sommeria, 11 years ago

bug corrected for reading low resolution color image

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