source: trunk/src/plot_field.m @ 651

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

various bugs corrected. Introduction of campaign lists in Open menu

File size: 57.1 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=1;
907        if max(np) <= 64
908            npxy=8*np;% increase the resolution 8 times
909        elseif max(np) <= 128
910            npxy=4*np;% increase the resolution 4 times
911        elseif max(np) <= 256
912            npxy=2*np;% increase the resolution 2 times
913        else
914            npxy=np;
915            test_interp=0; % no interpolation done
916        end
917        if test_interp==1%if we interpolate
918            x=linspace(AX(1),AX(2),np(2));
919            y=linspace(AY(1),AY(2),np(1));
920            [X,Y]=meshgrid(x,y);
921            xi=linspace(AX(1),AX(2),npxy(2));
922            yi=linspace(AY(1),AY(2),npxy(1));
923            B = interp2(X,Y,double(B),xi,yi');
924        end
925        % create new image if there  no image handle is found
926        if isempty(hima)
927            tag=get(haxes,'Tag');
928            if MinA<MaxA
929                hima=imagesc(AX,AY,B,[MinA MaxA]);
930            else % to deal with uniform field
931                hima=imagesc(AX,AY,B,[MaxA-1 MaxA]);
932            end
933            % the function imagesc reset the axes 'DataAspectRatioMode'='auto', change if .CheckFixAspectRatio is
934            % requested:
935            set(hima,'Tag','ima')
936            set(hima,'HitTest','off')
937            set(haxes,'Tag',tag);%preserve the axes tag (removed by image fct !!!)
938            uistack(hima, 'bottom')
939            % update an existing image
940        else
941            set(hima,'CData',B);
942            if MinA<MaxA
943                set(haxes,'CLim',[MinA MaxA])
944            else
945                set(haxes,'CLim',[MinA MaxA+1])
946            end
947            set(hima,'XData',AX);
948            set(hima,'YData',AY);
949        end
950       
951        % set the transparency to 0.5 if vectors are also plotted
952        if isfield(PlotParam.Scalar,'Opacity')&& ~isempty(PlotParam.Scalar.Opacity)
953            set(hima,'AlphaData',PlotParam.Scalar.Opacity)
954        else
955            if test_vec
956                set(hima,'AlphaData',0.5)%set opacity to 0.5 by default in the presence of vectors
957                PlotParamOut.Scalar.Opacity=0.5;
958            else
959                set(hima,'AlphaData',1)% full opacity (no transparency) by default
960            end
961        end
962    end
963    test_ima=1;
964   
965    %display the colorbar code for B/W images if Poscolorbar not empty
966    if ~isempty(PosColorbar)
967        if siz==2 && exist('PosColorbar','var')
968            if isempty(hcol)||~ishandle(hcol)
969                hcol=colorbar;%create new colorbar
970            end
971            if length(PosColorbar)==4
972                set(hcol,'Position',PosColorbar)
973            end
974            %YTick=0;%default
975            if MaxA>MinA
976                if CheckContour
977                    colbarlim=get(hcol,'YLim');
978                    scale_bar=(colbarlim(2)-colbarlim(1))/(abscontmax-abscontmin);
979                    YTick=cont_pos(2:end-1);
980                    YTick_scaled=colbarlim(1)+scale_bar*(YTick-abscontmin);
981                    set(hcol,'YTick',YTick_scaled);
982                elseif (isfield(PlotParam.Scalar,'CheckBW') && isequal(PlotParam.Scalar.CheckBW,1))||isa(A,'uint8')|| isa(A,'uint16')%images
983                    hi=get(hcol,'children');
984                    if iscell(hi)%multiple images in colorbar
985                        hi=hi{1};
986                    end
987                    set(hi,'YData',[MinA MaxA])
988                    set(hi,'CData',(1:256)')
989                    set(hcol,'YLim',[MinA MaxA])
990                    YTick=colbartick(MinA,MaxA);
991                    set(hcol,'YTick',YTick)
992                else
993                    hi=get(hcol,'children');
994                    if iscell(hi)%multiple images in colorbar
995                        hi=hi{1};
996                    end
997                    set(hi,'YData',[MinA MaxA])
998                    set(hi,'CData',(1:64)')
999                    YTick=colbartick(MinA,MaxA);
1000                    set(hcol,'YLim',[MinA MaxA])
1001                    set(hcol,'YTick',YTick)
1002                end
1003                set(hcol,'Yticklabel',num2str(YTick'));
1004            end
1005        elseif ishandle(hcol)
1006            delete(hcol); %erase existing colorbar if not needed
1007        end
1008    end
1009else%no scalar plot
1010    if ~isempty(hima) && ishandle(hima)
1011        delete(hima)
1012    end
1013    if ~isempty(PosColorbar) && ~isempty(hcol)&& ishandle(hcol)
1014        delete(hcol)
1015    end
1016    PlotParamOut=rmfield(PlotParamOut,'Scalar');
1017end
1018
1019%%   vector plot %%%%%%%%%%%%%%%%%%%%%%%%%%
1020if test_vec
1021   %vector scale representation
1022    if size(vec_U,1)==numel(vec_Y) && size(vec_U,2)==numel(vec_X); % x, y  coordinate variables
1023        [vec_X,vec_Y]=meshgrid(vec_X,vec_Y);
1024    end   
1025    vec_X=reshape(vec_X,1,numel(vec_X));%reshape in matlab vectors
1026    vec_Y=reshape(vec_Y,1,numel(vec_Y));
1027    vec_U=reshape(vec_U,1,numel(vec_U));
1028    vec_V=reshape(vec_V,1,numel(vec_V));
1029     MinMaxX=max(vec_X)-min(vec_X);
1030    if  isfield(PlotParam.Vectors,'CheckFixVectors') && isequal(PlotParam.Vectors.CheckFixVectors,1)&& isfield(PlotParam.Vectors,'VecScale')...
1031               &&~isempty(PlotParam.Vectors.VecScale) && isa(PlotParam.Vectors.VecScale,'double') %fixed vector scale
1032        scale=PlotParam.Vectors.VecScale;  %impose the length of vector representation
1033    else
1034        if ~test_false %remove false vectors   
1035            indsel=1:numel(vec_X);%
1036        end
1037        if isempty(vec_U)
1038            scale=1;
1039        else
1040            if isempty(indsel)
1041                MaxU=max(abs(vec_U));
1042                MaxV=max(abs(vec_V));
1043            else
1044                MaxU=max(abs(vec_U(indsel)));
1045                MaxV=max(abs(vec_V(indsel)));
1046            end
1047            scale=MinMaxX/(max(MaxU,MaxV)*50);
1048            PlotParam.Vectors.VecScale=scale;%update the 'scale' display
1049        end
1050    end
1051   
1052    %record vectors on the plotting axes
1053    if test_C==0
1054        vec_C=ones(1,numel(vec_X));
1055    end
1056   
1057    %decimate by a factor 2 in vector mesh(4 in nbre of vectors)
1058    check_decimate=0;
1059    if isfield(PlotParam.Vectors,'CheckDecimate4') && PlotParam.Vectors.CheckDecimate4
1060        check_decimate=1;
1061        diffy=diff(vec_Y); %difference dy=vec_Y(i+1)-vec_Y(i)
1062        dy_thresh=max(abs(diffy))/2;
1063        ind_jump=find(abs(diffy) > dy_thresh); %indices with diff(vec_Y)> max/2, detect change of line
1064        ind_sel=1:ind_jump(1);%select the first line
1065        for i=2:2:length(ind_jump)-1
1066            ind_sel=[ind_sel (ind_jump(i)+1:ind_jump(i+1))];% select the odd lines
1067        end
1068        nb_sel=length(ind_sel);
1069        ind_sel=ind_sel(1:2:nb_sel);% take half the points on a line
1070    elseif isfield(PlotParam.Vectors,'CheckDecimate16') && PlotParam.Vectors.CheckDecimate16
1071        check_decimate=1;
1072        diffy=diff(vec_Y); %difference dy=vec_Y(i+1)-vec_Y(i)
1073        dy_thresh=max(abs(diffy))/2;
1074        ind_jump=find(abs(diffy) > dy_thresh); %indices with diff(vec_Y)> max/2, detect change of line
1075        ind_sel=1:ind_jump(1);%select the first line
1076        for i=2:4:length(ind_jump)-1
1077            ind_sel=[ind_sel (ind_jump(i)+1:ind_jump(i+1))];% select the odd lines
1078        end
1079        nb_sel=length(ind_sel);
1080        ind_sel=ind_sel(1:4:nb_sel);% take half the points on a line
1081    end
1082    if check_decimate
1083        vec_X=vec_X(ind_sel);
1084        vec_Y=vec_Y(ind_sel);
1085        vec_U=vec_U(ind_sel);
1086        vec_V=vec_V(ind_sel);
1087        vec_C=vec_C(ind_sel);
1088        if ~isempty(ivar_F)
1089           vec_F=vec_F(ind_sel);
1090        end
1091        if ~isempty(ivar_FF)
1092           vec_FF=vec_FF(ind_sel);
1093        end
1094    end
1095   
1096    %get main level color code
1097    [colorlist,col_vec,PlotParamOut.Vectors]=set_col_vec(PlotParam.Vectors,vec_C);
1098   
1099    % take flags into account: add flag colors to the list of colors
1100    sizlist=size(colorlist);
1101    nbcolor=sizlist(1);
1102    if test_black
1103       nbcolor=nbcolor+1;
1104       colorlist(nbcolor,:)=[0 0 0]; %add black to the list of colors
1105       if ~isempty(ivar_FF)
1106          %  ind_flag=find(vec_F~=1 & vec_F~=0 & vec_FF==0);  %flag warning but not false
1107            col_vec(vec_F~=1 & vec_F~=0 & vec_FF==0)=nbcolor;
1108       else
1109            col_vec(vec_F~=1 & vec_F~=0)=nbcolor;
1110       end
1111    end
1112    nbcolor=nbcolor+1;
1113    if ~isempty(ivar_FF)
1114        if isfield(PlotParam.Vectors,'CheckHideFalse') && PlotParam.Vectors.CheckHideFalse==1
1115            colorlist(nbcolor,:)=[NaN NaN NaN];% no plot of false vectors
1116        else
1117            colorlist(nbcolor,:)=[1 0 1];% magenta color
1118        end
1119        col_vec(vec_FF~=0)=nbcolor;
1120    end
1121    %plot vectors:
1122    quiresetn(haxes,vec_X,vec_Y,vec_U,vec_V,scale,colorlist,col_vec);   
1123
1124else
1125    hvec=findobj(haxes,'Tag','vel');
1126    if ~isempty(hvec)
1127        delete(hvec);
1128    end
1129    PlotParamOut=rmfield(PlotParamOut,'Vectors');
1130end
1131% nbvar=0;
1132
1133%store the coordinate extrema occupied by the field
1134if ~isempty(Data)
1135    MinX=[];
1136    MaxX=[];
1137    MinY=[];
1138    MaxY=[];
1139    fix_lim=isfield(PlotParam.Coordinates,'CheckFixLimits') && PlotParam.Coordinates.CheckFixLimits;
1140    if fix_lim
1141        if isfield(PlotParam.Coordinates,'MinX')&&isfield(PlotParam.Coordinates,'MaxX')&&isfield(PlotParam.Coordinates,'MinY')&&isfield(PlotParam.Coordinates,'MaxY')
1142            MinX=PlotParam.Coordinates.MinX;
1143            MaxX=PlotParam.Coordinates.MaxX;
1144            MinY=PlotParam.Coordinates.MinY;
1145            MaxY=PlotParam.Coordinates.MaxY;
1146        end  %else PlotParamOut.MinX =PlotParam.MinX...
1147    else
1148        if test_ima %both background image and vectors coexist, take the wider bound
1149            MinX=min(AX);
1150            MaxX=max(AX);
1151            MinY=min(AY);
1152            MaxY=max(AY);
1153            if test_vec
1154                MinX=min(MinX,min(vec_X));
1155                MaxX=max(MaxX,max(vec_X));
1156                MinY=min(MinY,min(vec_Y));
1157                MaxY=max(MaxY,max(vec_Y));
1158            end
1159        elseif test_vec
1160            MinX=min(vec_X);
1161            MaxX=max(vec_X);
1162            MinY=min(vec_Y);
1163            MaxY=max(vec_Y);
1164        end
1165    end
1166    PlotParamOut.Coordinates.MinX=MinX;
1167    PlotParamOut.Coordinates.MaxX=MaxX;
1168    PlotParamOut.Coordinates.MinY=MinY;
1169    PlotParamOut.Coordinates.MaxY=MaxY;
1170    if MaxX>MinX
1171        set(haxes,'XLim',[MinX MaxX]);% set x limits of frame in axes coordinates
1172    end
1173    if MaxY>MinY
1174        set(haxes,'YLim',[MinY MaxY]);% set x limits of frame in axes coordinates
1175    end
1176    set(haxes,'YDir','normal')
1177    set(get(haxes,'XLabel'),'String',[XName ' (' x_units ')']);
1178    set(get(haxes,'YLabel'),'String',[YName ' (' y_units ')']);
1179    PlotParamOut.Coordinates.x_units=x_units;
1180    PlotParamOut.Coordinates.y_units=y_units;
1181end
1182if isfield(PlotParam,'Coordinates') && isfield(PlotParam.Coordinates,'CheckFixAspectRatio') && isequal(PlotParam.Coordinates.CheckFixAspectRatio,1)
1183    set(haxes,'DataAspectRatioMode','manual')
1184    if isfield(PlotParam.Coordinates,'AspectRatio')
1185        set(haxes,'DataAspectRatio',[PlotParam.Coordinates.AspectRatio 1 1])
1186    end
1187else
1188    set(haxes,'DataAspectRatioMode','auto')
1189end
1190%-------------------------------------------------------------------
1191% --- function for plotting vectors
1192%INPUT:
1193% haxes: handles of the plotting axes
1194% x,y,u,v: vectors coordinates and vector components to plot, arrays withb the same dimension
1195% scale: scaling factor for vector length representation
1196% colorlist(icolor,:): list of vector colors, dim (nbcolor,3), depending on color #i
1197% col_vec: matlab vector setting the color number #i for each velocity vector
1198function quiresetn(haxes,x,y,u,v,scale,colorlist,col_vec)
1199%-------------------------------------------------------------------
1200%define arrows
1201theta=0.5 ;%angle arrow
1202alpha=0.3 ;%length arrow
1203rot=alpha*[cos(theta) -sin(theta); sin(theta) cos(theta)]';
1204%find the existing lines
1205h=findobj(haxes,'Tag','vel');% search existing lines in the current axes
1206sizh=size(h);
1207set(h,'EraseMode','xor');
1208set(haxes,'NextPlot','replacechildren');
1209
1210%drawnow
1211%create lines (if no lines) or modify them
1212if ~isequal(size(col_vec),size(x))
1213    col_vec=ones(size(x));% case of error in col_vec input
1214end
1215sizlist=size(colorlist);
1216ncolor=sizlist(1);
1217
1218for icolor=1:ncolor
1219    %determine the line positions for each color icolor
1220    ind=find(col_vec==icolor);
1221    xc=x(ind);
1222    yc=y(ind);
1223    uc=u(ind)*scale;
1224    vc=v(ind)*scale;
1225    n=size(xc);
1226    xN=NaN*ones(size(xc));
1227    matx=[xc(:)-uc(:)/2 xc(:)+uc(:)/2 xN(:)]';
1228    matx=reshape(matx,1,3*n(2));
1229    maty=[yc(:)-vc(:)/2 yc(:)+vc(:)/2 xN(:)]';
1230    maty=reshape(maty,1,3*n(2));
1231   
1232    %determine arrow heads
1233    arrowplus=rot*[uc;vc];
1234    arrowmoins=rot'*[uc;vc];
1235    x1=xc+uc/2-arrowplus(1,:);
1236    x2=xc+uc/2;
1237    x3=xc+uc/2-arrowmoins(1,:);
1238    y1=yc+vc/2-arrowplus(2,:);
1239    y2=yc+vc/2;
1240    y3=yc+vc/2-arrowmoins(2,:);
1241    matxar=[x1(:) x2(:) x3(:) xN(:)]';
1242    matxar=reshape(matxar,1,4*n(2));
1243    matyar=[y1(:) y2(:) y3(:) xN(:)]';
1244    matyar=reshape(matyar,1,4*n(2));
1245    %draw the line or modify the existing ones
1246%     tri=reshape(1:3*length(uc),3,[])';   
1247    isn=isnan(colorlist(icolor,:));%test if color NaN
1248    if 2*icolor > sizh(1) %if icolor exceeds the number of existing ones
1249        if ~isn(1) %if the vectors are visible color not nan
1250            if n(2)>0
1251                hold on
1252                line(matx,maty,'Color',colorlist(icolor,:),'Tag','vel');% plot new lines
1253                line(matxar,matyar,'Color',colorlist(icolor,:),'Tag','vel');% plot arrows
1254            end
1255        end
1256    else
1257        if isn(1)
1258            delete(h(2*icolor-1))
1259            delete(h(2*icolor))
1260        else
1261            set(h(2*icolor-1),'Xdata',matx,'Ydata',maty);
1262            set(h(2*icolor-1),'Color',colorlist(icolor,:));
1263            set(h(2*icolor-1),'EraseMode','xor');
1264            set(h(2*icolor),'Xdata',matxar,'Ydata',matyar);
1265            set(h(2*icolor),'Color',colorlist(icolor,:));
1266            set(h(2*icolor),'EraseMode','xor');
1267        end
1268    end
1269end
1270if sizh(1) > 2*ncolor
1271    for icolor=ncolor+1 : sizh(1)/2%delete additional objects
1272        delete(h(2*icolor-1))
1273        delete(h(2*icolor))
1274    end
1275end
1276
1277%-------------------------------------------------------------------
1278% ---- determine tick positions for colorbar
1279function YTick=colbartick(MinA,MaxA)
1280%-------------------------------------------------------------------
1281%determine tick positions with "simple" values between MinA and MaxA
1282YTick=0;%default
1283maxabs=max([abs(MinA) abs(MaxA)]);
1284if maxabs>0
1285ord=10^(floor(log10(maxabs)));%order of magnitude
1286div=1;
1287siz2=1;
1288while siz2<2
1289    values=-10:div:10;
1290    ind=find((ord*values-MaxA)<0 & (ord*values-MinA)>0);%indices of 'values' such that MinA<ord*values<MaxA
1291    siz=size(ind);
1292    if siz(2)<4%if there are less than 4 selected values (4 levels)
1293        values=-9:0.5*div:9;
1294        ind=find((ord*values-MaxA)<0 & (ord*values-MinA)>0);
1295    end
1296    siz2=size(ind,2);
1297    div=div/10;
1298end
1299YTick=ord*values(ind);
1300end
1301
1302% -------------------------------------------------------------------------
1303% --- 'proj_grid': project  fields with unstructured coordinantes on a regular grid
1304function [A,rangx,rangy]=proj_grid(vec_X,vec_Y,vec_A,rgx_in,rgy_in,npxy_in)
1305% -------------------------------------------------------------------------
1306if length(vec_Y)<2
1307    msgbox_uvmat('ERROR','less than 2 points in proj_grid.m');
1308    return;
1309end
1310diffy=diff(vec_Y); %difference dy=vec_Y(i+1)-vec_Y(i)
1311index=find(diffy);% find the indices of vec_Y after wich a change of horizontal line occurs(diffy non zero)
1312if isempty(index); msgbox_uvmat('ERROR','points aligned along abscissa in proj_grid.m'); return; end;%points aligned% A FAIRE: switch to line plot.
1313diff2=diff(diffy(index));% diff2 = fluctuations of the detected vertical grid mesh dy
1314if max(abs(diff2))>0.001*abs(diffy(index(1))) % if max(diff2) is larger than 1/1000 of the first mesh dy
1315    % the data are not regularly spaced and must be interpolated  on a regular grid
1316    if exist('rgx_in','var') & ~isempty (rgx_in) & isnumeric(rgx_in) & length(rgx_in)==2%  positions imposed from input
1317        rangx=rgx_in; % first and last positions
1318        rangy=rgy_in;
1319        dxy(1)=1/(npxy_in(1)-1);%grid mesh in y
1320        dxy(2)=1/(npxy_in(2)-1);%grid mesh in x
1321        dxy(1)=(rangy(2)-rangy(1))/(npxy_in(1)-1);%grid mesh in y
1322        dxy(2)=(rangx(2)-rangx(1))/(npxy_in(2)-1);%grid mesh in x
1323    else % interpolation grid automatically determined
1324        rangx(1)=min(vec_X);
1325        rangx(2)=max(vec_X);
1326        rangy(2)=min(vec_Y);
1327        rangy(1)=max(vec_Y);
1328        dxymod=sqrt((rangx(2)-rangx(1))*(rangy(1)-rangy(2))/length(vec_X));
1329        dxy=[-dxymod/4 dxymod/4];% increase the resolution 4 times
1330    end
1331    xi=[rangx(1):dxy(2):rangx(2)];
1332    yi=[rangy(1):dxy(1):rangy(2)];
1333    A=griddata_uvmat(vec_X,vec_Y,vec_A,xi,yi');
1334    A=reshape(A,length(yi),length(xi));
1335else
1336    x=vec_X(1:index(1));% the set of abscissa (obtained on the first line)
1337    indexend=index(end);% last vector index of line change
1338    ymax=vec_Y(indexend+1);% y coordinate AFTER line change
1339    ymin=vec_Y(index(1));
1340    y=vec_Y(index);
1341    y(length(y)+1)=ymax;
1342    nx=length(x);   %number of grid points in x
1343    ny=length(y);   % number of grid points in y
1344    B=(reshape(vec_A,nx,ny))'; %vec_A reshaped as a rectangular matrix
1345    [X,Y]=meshgrid(x,y);% positions X and Y also reshaped as matrix
1346
1347    %linear interpolation to improve the image resolution and/or adjust
1348    %to prescribed positions
1349    test_interp=1;
1350    if exist('rgx_in','var') & ~isempty (rgx_in) & isnumeric(rgx_in) & length(rgx_in)==2%  positions imposed from input
1351        rangx=rgx_in; % first and last positions
1352        rangy=rgy_in;
1353        npxy=npxy_in;
1354    else       
1355        rangx=[vec_X(1) vec_X(nx)];% first and last position found for x
1356          rangy=[max(ymax,ymin) min(ymax,ymin)];
1357        if max(nx,ny) <= 64 & isequal(npxy_in,'np>256')
1358            npxy=[8*ny 8*nx];% increase the resolution 8 times
1359        elseif max(nx,ny) <= 128 & isequal(npxy_in,'np>256')
1360            npxy=[4*ny 4*nx];% increase the resolution 4 times
1361        elseif max(nx,ny) <= 256 & isequal(npxy_in,'np>256')
1362            npxy=[2*ny 2*nx];% increase the resolution 2 times
1363        else
1364            npxy=[ny nx];
1365            test_interp=0; % no interpolation done
1366        end
1367    end
1368    if test_interp==1%if we interpolate
1369        xi=[rangx(1):(rangx(2)-rangx(1))/(npxy(2)-1):rangx(2)];
1370        yi=[rangy(1):(rangy(2)-rangy(1))/(npxy(1)-1):rangy(2)];
1371        [XI,YI]=meshgrid(xi,yi);
1372        A = interp2(X,Y,B,XI,YI);
1373    else %no interpolation for a resolution higher than 256
1374        A=B;
1375    end
1376end
Note: See TracBrowser for help on using the repository browser.