source: trunk/src/get_field.m @ 764

Last change on this file since 764 was 764, checked in by sommeria, 10 years ago

improvement of movie-pair for uvmat and introduction of a separate window SetPair? in series.

File size: 42.2 KB
Line 
1%'get_field': display variables and attributes from a Netcdf file, and OK selected fields
2%------------------------------------------------------------------------
3% GetFieldData=get_field(FileName,ParamIn)
4% associated with the GUI get_field.fig
5%
6% OUPUT:
7% GetFieldData: structure containing the information on the selected
8%      fields, obtained by applying the fct red_GUI to the GUI get_field
9%   .FieldOption='vectors': variables are used for vector plot
10%                  'scalar': variables are used for scalar plot,
11%                  '1Dplot': variables are used for usual x-y plot,
12%                  'civdata...': go back to automatic reading of civ data
13%   .PanelVectors: sub-structure variables used as vector components
14%   .PanelScalar:
15% INPUT:
16% FileName: name (including path) of the netcdf file to open
17%
18%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
19%  Copyright Joel Sommeria, 2008, LEGI / CNRS-UJF-INPG, sommeria@coriolis-legi.org.
20%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
21%     This file is part of the toolbox UVMAT.
22%
23%     UVMAT is free software; you can redistribute it and/or modify
24%     it under the terms of the GNU General Public License as published by
25%     the Free Software Foundation; either version 2 of the License, or
26%     (at your option) any later version.
27%
28%     UVMAT is distributed in the hope that it will be useful,
29%     but WITHOUT ANY WARRANTY; without even the implied warranty of
30%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
31%     GNU General Public License (file UVMAT/COPYING.txt) for more details.
32%AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
33
34function varargout = get_field(varargin)
35
36% Last Modified by GUIDE v2.5 24-Apr-2014 22:45:34
37
38% Begin initialization code - DO NOT EDIT
39gui_Singleton = 1;
40gui_State = struct('gui_Name',       mfilename, ...
41                   'gui_Singleton',  gui_Singleton, ...
42                   'gui_OpeningFcn', @get_field_OpeningFcn, ...
43                   'gui_OutputFcn',  @get_field_OutputFcn, ...
44                   'gui_LayoutFcn',  [] , ...
45                   'gui_Callback',   []);
46if nargin && ischar(varargin{1})&& ~isempty(regexp(varargin{1},'_Callback','once'))
47    gui_State.gui_Callback = str2func(varargin{1});
48end
49
50if nargout
51    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
52else
53    gui_mainfcn(gui_State, varargin{:});
54end
55% End initialization code - DO NOT EDIT
56     
57%------------------------------------------------------------------------
58% --- Executes just before get_field is made visible.
59%------------------------------------------------------------------------
60function get_field_OpeningFcn(hObject, eventdata, handles,filename,ParamIn)
61
62%% GUI settings
63handles.output = 'Cancel';
64guidata(hObject, handles);
65set(hObject,'WindowButtonDownFcn',{'mouse_down'}) % allows mouse action with right button (zoom for uicontrol display)
66
67%% enter input data
68if ischar(filename)% input file name
69    set(handles.inputfile,'String',filename)% fill the input file name
70    Field=nc2struct(filename,[]);% reads the  field structure, without the variables
71else
72    'bad input to get_field'
73end
74if ~exist('ParamIn','var')
75    ParamIn=[];
76end
77if isfield(Field,'Txt')
78    msgbox_uvmat('ERROR',['get_field/nc2struct/' Field.Txt])% display error message for input file reading
79    return
80end
81if ~isfield(Field,'ListVarName')
82    return
83end
84
85%% look at singletons and variables with a single dimension
86Field.Display=Field;
87Field.Check0D=zeros(size(Field.ListVarName));% =1 for arrays with a single value
88NbVar=numel(Field.VarDimName);%nbre of variables in the input data
89for ilist=1:NbVar
90    if ischar(Field.VarDimName{ilist})
91        Field.VarDimName{ilist}={Field.VarDimName{ilist}}; %transform string into cell
92    end
93    NbDim=numel(Field.VarDimName{ilist});
94    check_singleton=false(1,NbDim);%  check singleton, false by default
95    for idim=1:NbDim
96        dim_index=strcmp(Field.VarDimName{ilist}{idim},Field.ListDimName);%index in the list of dimensions
97        check_singleton(idim)=isequal(Field.DimValue(dim_index),1);%check_singleton=1 for singleton
98    end
99    Field.Check0D(ilist)=(isequal(check_singleton,ones(1,NbDim)))||(~isequal(Field.VarType(ilist),4)&&~isequal(Field.VarType(ilist),5)&&~isequal(Field.VarType(ilist),6));% =1 if the variable reduces to a single value
100    if ~Field.Check0D(ilist)
101    Field.Display.VarDimName{ilist}=Field.VarDimName{ilist}(~check_singleton);% eliminate singletons in the list of variable dimensions
102    end
103end
104if ~isfield(Field,'VarAttribute')
105    Field.VarAttribute={};
106end
107if numel(Field.VarAttribute)<NbVar% complement VarAttribute by blanjs if neded
108    Field.VarAttribute(numel(Field.VarAttribute)+1:NbVar)=cell(1,NbVar-numel(Field.VarAttribute));
109end
110% Field.Display = list of variables and corresponding properties obtained after removal of variables with a single value and singleton dimensions
111Field.Display.ListVarName=Field.ListVarName(~Field.Check0D); %list of variables available for plots, after eliminating variables with a single value
112Field.Display.VarAttribute=Field.VarAttribute(~Field.Check0D);
113Field.Display.VarDimName=Field.Display.VarDimName(~Field.Check0D);
114Field.Display.ListDimName=Field.ListDimName(Field.DimValue~=1);% list of non singleton dimension names
115Field.Display.DimValue=Field.DimValue(Field.DimValue~=1);% corresponding list of non singleton dimension values
116
117
118%% analyse the input field cells
119[CellInfo,NbDim,errormsg]=find_field_cells(Field.Display);
120if ~isempty(errormsg)
121    msgbox_uvmat('ERROR',['get_field / Field_input / find_field_cells: ' errormsg])
122    return
123end
124[Field.MaxDim,imax]=max(NbDim);
125
126%% set time mode
127ListSwitchVarIndexTime={'file index'};% default setting: the time is the file index
128% look at global attributes with numerical values
129check_numvalue=false(1,numel(Field.ListGlobalAttribute));
130for ilist=1:numel(Field.ListGlobalAttribute)
131    Value=Field.(Field.ListGlobalAttribute{ilist});
132    check_numvalue(ilist)=isnumeric(Value);
133end
134Field.Display.ListGlobalAttribute=Field.ListGlobalAttribute(check_numvalue);% select the attributes with float numerical value
135if ~isempty(Field.Display.ListGlobalAttribute)
136    ListSwitchVarIndexTime=[ListSwitchVarIndexTime; {'attribute'}];% the time can be chosen as a global attribute
137end
138if Field.MaxDim>=2
139    ListSwitchVarIndexTime=[ListSwitchVarIndexTime;{'variable'};{'matrix index'}];% the time can be chosen as a dim index
140end
141
142%% select the Time attribute from input
143if isfield(ParamIn,'TimeAttrName')
144    time_index=find(strcmp(ParamIn.TimeAttrName,Field.Display.ListGlobalAttribute),1);
145else
146    time_index=find(~cellfun('isempty',regexp(Field.Display.ListGlobalAttribute,'Time')),1);% look for global attribute containing name 'Time'
147end
148if ~isempty(time_index)
149    set(handles.SwitchVarIndexTime,'Value',2);
150    set(handles.TimeName,'UserData',time_index)
151else
152    set(handles.SwitchVarIndexTime,'Value',1);
153end
154set(handles.SwitchVarIndexTime,'String',ListSwitchVarIndexTime)
155set(handles.get_field,'UserData',Field);% record the finput field structure
156SwitchVarIndexTime_Callback([], [], handles)
157
158%% set vector menu (priority) if detected or scalar menu for space dim >=2, or usual (x,y) plot for 1D fields
159set(handles.vector_x,'String',Field.Display.ListVarName)% fill the menu of x vector components
160set(handles.vector_y,'String',Field.Display.ListVarName)% fill the menu of y vector components
161set(handles.vector_z,'String',[{''} Field.Display.ListVarName])% fill the menu of y vector components
162set(handles.vec_color,'String',[{''} Field.Display.ListVarName])% fill the menu of y vector components
163set(handles.scalar,'Value',1)% fill the menu of y vector components
164set(handles.scalar,'String',Field.Display.ListVarName)% fill the menu for scalar
165set(handles.ordinate,'Value',1)% fill the menu of y vector components
166set(handles.ordinate,'String',Field.Display.ListVarName)% fill the menu of y coordinate for 1D plots
167checkseries=0;
168if isfield(ParamIn,'SeriesInput') && ParamIn.SeriesInput% case of call by series
169    set(handles.FieldOption,'value',1)
170    if isfield(Field,'Conventions')&& strcmp(Field.Conventions,'uvmat/civdata')
171    set(handles.FieldOption,'String',{'pick variables';'civdata...'})
172    else
173       set(handles.FieldOption,'String',{'pick variables'})
174    end
175    checkseries=1;
176    set(handles.scalar,'Max',2)
177elseif isfield(Field,'Conventions')&& strcmp(Field.Conventions,'uvmat/civdata')
178    set(handles.FieldOption,'String',{'1D plot';'scalar';'vectors';'civdata...'})% provides the possibility to come back to civdata
179    set(handles.scalar,'Max',1)
180else
181    set(handles.FieldOption,'String',{'1D plot';'scalar';'vectors'})
182    set(handles.scalar,'Max',1)
183end
184if Field.MaxDim>=2 && ~checkseries% case of 2D (or 3D) fields
185    check_vec_input=0;
186    if isfield(ParamIn,'vector_x')&& isfield(ParamIn,'vector_y')
187        ichoice_x=find(strcmp(ParamIn.vector_x,Field.Display.ListVarName),1);
188        ichoice_y=find(strcmp(ParamIn.vector_y,Field.Display.ListVarName),1);
189        if ~isempty(ichoice_x)&&~isempty(ichoice_y)
190            set(handles.vector_x,'UserData',ichoice_x)
191            set(handles.vector_y,'UserData',ichoice_y)
192            check_vec_input=1;
193        end
194    end
195    if ~check_vec_input && isfield(CellInfo{imax},'VarIndex_vector_x') &&  isfield(CellInfo{imax},'VarIndex_vector_y')
196        set(handles.vector_x,'UserData',CellInfo{imax}.VarIndex_vector_x(1))
197        set(handles.vector_y,'UserData',CellInfo{imax}.VarIndex_vector_y(1))
198        check_vec_input=1;
199    end
200    if check_vec_input
201        set(handles.FieldOption,'Value',3)% set vector selection option
202    else
203        set(handles.FieldOption,'Value',2)% set scalar selection option
204    end
205else % case of 1D fields
206    set(handles.FieldOption,'Value',1)
207end
208
209%% fill the general list of dimensions, variables, attributes
210if isfield(Field,'ListDimName')&&~isempty(Field.ListDimName)
211    Tabcell(:,1)=Field.ListDimName;
212    for iline=1:length(Field.ListDimName)
213        Tabcell{iline,2}=num2str(Field.DimValue(iline));
214    end
215    Tabchar=cell2tab(Tabcell,' = ');
216    set(handles.dimensions,'String',Tabchar)
217end
218
219%% fill menus for coordinates and time
220FieldOption_Callback(handles.variables,[], handles)% list the global attributes
221
222%% Make choices of coordinates from input
223if isfield(CellInfo{imax},'CoordIndex')
224    CoordIndex=CellInfo{imax}.CoordIndex;
225    if numel(CoordIndex)==2
226        YName=Field.ListVarName{CoordIndex(1)};
227        XName=Field.ListVarName{CoordIndex(2)};
228        ListCoord=get(handles.Coord_x,'String');
229        XIndex=find(strcmp(XName,ListCoord));
230        if ~isempty(XIndex)
231            set(handles.Coord_x,'Value',XIndex)
232        end
233        YIndex=find(strcmp(YName,ListCoord));
234        if ~isempty(YIndex)
235            set(handles.Coord_y,'Value',YIndex)
236        end
237    end
238end
239
240%% put the GUI on the lower right of the sceen
241set(hObject,'Unit','pixel')
242pos_view_field=get(hObject,'Position');
243set(0,'Unit','pixels')
244ScreenSize=get(0,'ScreenSize');
245pos_view_field(1)=ScreenSize(1)+ScreenSize(3)-pos_view_field(3);
246pos_view_field(2)=ScreenSize(2);
247set(hObject,'Position',pos_view_field)
248set(handles.get_field,'WindowStyle','modal')% Make the GUI modal
249
250%% set z coordinate menu if relevant
251if Field.MaxDim>=3
252    set(handles.Check3D,'Value',1)
253else
254    set(handles.Check3D,'Value',0)
255end
256Check3D_Callback(hObject, eventdata, handles)
257set(handles.variables,'Value',1)
258set(handles.variables,'String',[{'*'} Field.ListVarName])
259variables_Callback(handles.variables,[], handles)% list the global attributes
260drawnow
261uiwait(handles.get_field);
262
263%------------------------------------------------------------------------
264% --- Outputs from this function are returned to the command line.
265%------------------------------------------------------------------------
266function varargout = get_field_OutputFcn(hObject, eventdata, handles)
267
268varargout{1} = handles.output;
269delete(handles.get_field)
270
271%------------------------------------------------------------------------
272% --- Executes when user attempts to close get_field.
273%------------------------------------------------------------------------
274function get_field_CloseRequestFcn(hObject, eventdata, handles)
275
276if isequal(get(handles.get_field, 'waitstatus'), 'waiting')
277    % The GUI is still in UIWAIT, us UIRESUME
278    uiresume(handles.get_field);
279else
280    % The GUI is no longer waiting, just close it
281    delete(handles.get_field);
282end
283
284%------------------------------------------------------------------------
285% --- Executes on button press in OK.
286%------------------------------------------------------------------------
287function OK_Callback(hObject, eventdata, handles)
288
289handles.output=read_GUI(handles.get_field);
290guidata(hObject, handles);% Update handles structure
291uiresume(handles.get_field);
292drawnow
293
294% -----------------------------------------------------------------------
295% --- Activated by selection in the list of variables
296% ----------------------------------------------------------------------
297function variables_Callback(hObject, eventdata, handles)
298
299Tabchar={''};%default
300Tabcell=[];
301hselect_field=get(handles.variables,'parent');
302Field=get(handles.get_field,'UserData');
303index=get(handles.variables,'Value');%index in the list 'variables'
304
305%% list global TimeAttribute names and values if index=1 (blank TimeVariable display) is selected
306if isequal(index,1)
307    set(handles.attributes_txt,'String','global attributes')
308    if isfield(Field,'ListGlobalAttribute') && ~isempty(Field.ListGlobalAttribute)
309        for iline=1:length(Field.ListGlobalAttribute)
310            Tabcell{iline,1}=Field.ListGlobalAttribute{iline};
311            if isfield(Field, Field.ListGlobalAttribute{iline})
312                val=Field.(Field.ListGlobalAttribute{iline});
313                if ischar(val);% attribute value is char string
314                    Tabcell{iline,2}=val;
315                elseif size(val,1)==1 %attribute value is a number or matlab vector
316                    Tabcell{iline,2}=num2str(val);
317                end
318            end
319        end
320        Tabchar=cell2tab(Tabcell,'=');
321    end
322    %% list Attribute names and values associated to the Variable # index-1
323else
324    list_var=get(handles.variables,'String');
325    if index>numel(list_var)
326        return
327    end
328    var_select=list_var{index};
329    set(handles.attributes_txt,'String', ['attributes of ' var_select])
330    if isfield(Field,'VarAttribute')&& length(Field.VarAttribute)>=index-1
331        %         nbline=0;
332        VarAttr=Field.VarAttribute{index-1};
333        if isstruct(VarAttr)
334            attr_list=fieldnames(VarAttr);
335            for iline=1:length(attr_list)
336                Tabcell{iline,1}=attr_list{iline};
337                val=VarAttr.(attr_list{iline}) ;
338                if ischar(val);
339                    Tabcell{iline,2}=val;
340                else
341                    Tabcell{iline,2}=num2str(val);
342                end
343            end
344        end
345    end
346end
347if ~isempty(Tabcell)
348    Tabchar=cell2tab(Tabcell,'=');
349    %     Tabchar=[{''};Tabchar];
350end
351set(handles.attributes,'Value',1);% select the first item
352set(handles.attributes,'String',Tabchar);
353
354%% update dimensions;
355if isfield(Field,'ListDimName')
356    Tabdim={};%default
357    if isequal(index,1)%list all dimensions
358        dim_indices=1:length(Field.ListDimName);
359        set(handles.dimensions_txt,'String', 'dimensions')
360    else
361        DimCell=Field.VarDimName{index-1};
362        if ischar(DimCell)
363            DimCell={DimCell};
364        end
365        dim_indices=[];
366        for idim=1:length(DimCell)
367            dim_index=strcmp(DimCell{idim},Field.ListDimName);%vector with size of Field.ListDimName, =0
368            dim_index=find(dim_index,1);
369            dim_indices=[dim_indices dim_index];
370        end
371        set(handles.dimensions_txt,'String', ['dimensions of ' var_select])
372    end
373    for iline=1:length(dim_indices)
374        Tabdim{iline,1}=Field.ListDimName{dim_indices(iline)};
375        Tabdim{iline,2}=num2str(Field.DimValue(dim_indices(iline)));
376    end
377    Tabchar=cell2tab(Tabdim,' = ');
378    Tabchar=[{''} ;Tabchar];
379    set(handles.dimensions,'Value',1)
380    set(handles.dimensions,'String',Tabchar)
381end
382
383%------------------------------------------------------------------------
384% --- Executes on selection change in FieldOption.
385%------------------------------------------------------------------------
386function FieldOption_Callback(hObject, eventdata, handles)
387
388Field=get(handles.get_field,'UserData');
389FieldList=get(handles.FieldOption,'String');
390FieldOption=FieldList{get(handles.FieldOption,'Value')};
391switch FieldOption
392   
393    case '1D plot'
394        set(handles.Coordinates,'Visible','on')
395        set(handles.PanelOrdinate,'Visible','on')
396        pos=get(handles.PanelOrdinate,'Position');
397        pos(1)=2;
398        pos_coord=get(handles.Coordinates,'Position');
399        pos(2)=pos_coord(2)-pos(4)-2;
400        set(handles.PanelOrdinate,'Position',pos)
401        set(handles.PanelScalar,'Visible','off')
402        set(handles.PanelVectors,'Visible','off')
403        set(handles.Coord_y,'Visible','off')
404        set(handles.Y_title,'Visible','off')
405        set(handles.Coord_z,'Visible','off')
406        set(handles.Z_title,'Visible','off')
407        ordinate_Callback(hObject, eventdata, handles)
408       
409    case {'scalar','pick variables'}
410        set(handles.Coordinates,'Visible','on')
411        set(handles.PanelOrdinate,'Visible','off')
412        set(handles.PanelScalar,'Visible','on')
413        set(handles.PanelVectors,'Visible','off')
414        pos=get(handles.PanelScalar,'Position');
415        pos(1)=2;
416        pos_coord=get(handles.Coordinates,'Position');
417        pos(2)=pos_coord(2)-pos(4)-2;
418        set(handles.PanelScalar,'Position',pos)
419        set(handles.Coord_y,'Visible','on')
420        set(handles.Y_title,'Visible','on')
421        %default scalar selection
422        test_coord=zeros(size(Field.Display.VarDimName)); %=1 when variable #ilist is eligible as structured coordiante
423        for ilist=1:numel(Field.Display.VarDimName)
424            if isfield(Field.Display,'VarAttribute') && numel(Field.Display.VarAttribute)>=ilist && isfield(Field.Display.VarAttribute{ilist},'Role')
425                Role=Field.Display.VarAttribute{ilist}.Role;
426                if strcmp(Role,'coord_x')||strcmp(Role,'coord_y')
427                    test_coord(ilist)=1;
428                end
429            end
430            dimnames=Field.Display.VarDimName{ilist}; %list of dimensions for variable #ilist
431            if numel(dimnames)==1 && strcmp(dimnames{1},Field.Display.ListVarName{ilist})%dimension variable
432                test_coord(ilist)=1;
433            end
434        end
435        scalar_index=find(~test_coord,1);%get the first variable not a coordinate
436        if isempty(scalar_index)
437            set(handles.scalar,'Value',1)
438        else
439            set(handles.scalar,'Value',scalar_index)
440        end       
441        scalar_Callback(hObject, eventdata, handles)
442             
443    case 'vectors'
444        set(handles.PanelVectors,'Visible','on')
445        set(handles.Coordinates,'Visible','on')
446        set(handles.PanelOrdinate,'Visible','off')
447        set(handles.PanelScalar,'Visible','off')
448        pos=get(handles.PanelVectors,'Position');
449        pos(1)=2;
450        pos_coord=get(handles.Coordinates,'Position');
451        pos(2)=pos_coord(2)-pos(4)-2;
452        set(handles.PanelVectors,'Position',pos)
453        set(handles.Coord_y,'Visible','on')
454        set(handles.Y_title,'Visible','on')
455        %default vector selection
456        vector_x_value=get(handles.vector_x,'UserData');
457        vector_y_value=get(handles.vector_y,'UserData');
458        if ~isempty(vector_x_value)&&~isempty(vector_y_value)
459            set(handles.vector_x,'Value',vector_x_value)
460            set(handles.vector_y,'Value',vector_y_value)
461        else
462            test_coord=zeros(size(Field.Display.VarDimName)); %=1 when variable #ilist is eligible as structured coordinate
463            for ilist=1:numel(Field.Display.VarDimName)
464                if isfield(Field.Display,'VarAttribute') && numel(Field.Display.VarAttribute)>=ilist && isfield(Field.Display.VarAttribute{ilist},'Role')
465                    Role=Field.Display.VarAttribute{ilist}.Role;
466                    if strcmp(Role,'coord_x')||strcmp(Role,'coord_y')
467                        test_coord(ilist)=1;
468                    end
469                end
470                dimnames=Field.Display.VarDimName{ilist}; %list of dimensions for variable #ilist
471                if numel(dimnames)==1 && strcmp(dimnames{1},Field.Display.ListVarName{ilist})%dimension variable
472                    test_coord(ilist)=1;
473                end
474            end
475            vector_index=find(~test_coord,2);%get the two first variables not a coordinate
476            if isempty(vector_index)
477                set(handles.vector_x,'Value',1)
478                set(handles.vector_y,'Value',2)
479            else
480                set(handles.vector_x,'Value',vector_index(1))
481                set(handles.vector_y,'Value',vector_index(2))
482            end
483        end
484        vector_Callback(handles)
485       
486    case 'civdata...'
487        set(handles.PanelOrdinate,'Visible','off')
488        set(handles.PanelScalar,'Visible','off')
489        set(handles.PanelVectors,'Visible','off')
490        set(handles.Coordinates,'Visible','off')
491end
492
493%------------------------------------------------------------------------
494function ordinate_Callback(hObject, eventdata, handles)
495%------------------------------------------------------------------------
496Field=get(handles.get_field,'UserData');
497y_index=get(handles.ordinate,'Value');
498y_menu=get(handles.ordinate,'String');
499if isempty(y_menu)
500    return
501else
502YName=y_menu{y_index};
503end
504
505%% set list of possible coordinates
506test_component=zeros(size(Field.Display.VarDimName));%=1 when variable #ilist is eligible as unstructured coordinate
507test_coord=zeros(size(Field.Display.VarDimName)); %=1 when variable #ilist is eligible as structured coordiante
508ListCoord={''};
509dim_var=Field.Display.VarDimName{y_index};%list of dimensions of the selected variable
510
511for ilist=1:numel(Field.Display.VarDimName)
512    dimnames=Field.Display.VarDimName{ilist}; %list of dimensions for variable #ilist
513    if isequal(dimnames,dim_var)
514        test_component(ilist)=1;
515    elseif numel(dimnames)==1 && ~isempty(find(strcmp(dimnames{1},dim_var)))%variable ilist is a 1D array which can be coordinate variable
516        test_coord(ilist)=1;
517    end
518end
519var_component=find(test_component);% list of variable indices elligible as unstructured coordinates
520var_coord=find(test_coord);% % list of variable indices elligible as structured coordinates
521ListCoord=Field.Display.ListVarName([var_component var_coord]);
522
523%% set default coord selection
524if numel(find(test_coord))>3
525     SwitchVarIndexTime=get(handles.SwitchVarIndexTime,'String');
526    if numel(SwitchVarIndexTime)<3
527        SwitchVarIndexTime=[SwitchVarIndexTime;'matrix_index'];
528        set(handles.SwitchVarIndexTime,'String',SwitchVarIndexTime)
529    end
530    set(handles.SwitchVarIndexTime,'Value',3)% the last dim must be considered as time
531    SwitchVarIndexTime_Callback([], [], handles)
532end
533if numel(var_component)<2
534    if numel(test_coord)<2
535        ListCoord={''};
536    else
537        set(handles.Coord_x,'Value',2)
538        set(handles.Coord_y,'Value',1)
539    end
540else
541    coord_val=1;
542    for ilist=1:numel(var_component)
543        ivar=var_component(ilist);
544        if isfield(Field.Display,'VarAttribute') && numel(Field.Display.VarAttribute)>=ivar && isfield(Field.Display.VarAttribute{ivar},'Role')
545            Role=Field.Display.VarAttribute{ivar}.Role;
546            if strcmp(Role,'coord_x')
547                coord_val=ilist;
548            end
549        end
550    end
551    set(handles.Coord_x,'Value',coord_val)
552end
553set(handles.Coord_x,'String',ListCoord)
554
555
556%% set list of time coordinates
557menu=get(handles.SwitchVarIndexTime,'String');
558TimeOption=menu{get(handles.SwitchVarIndexTime,'Value')};
559switch TimeOption
560    case 'variable'
561        if numel(find(test_coord))<3
562            ListTime={''};
563        else
564            ListTime=Field.Display.ListVarName(find(test_coord,end));
565        end
566        set(handles.TimeName,'Value',1)
567        set(handles.TimeName,'String',ListTime)
568    case 'matrix index'
569        if numel(find(test_coord))<3
570            ListTime={''};
571        else
572            ListTime=Field.Display.VarDimName{find(test_coord,end)};
573        end
574        set(handles.TimeName,'Value',1)
575        set(handles.TimeName,'String',ListTime)
576end 
577update_field(handles,YName)
578         
579%------------------------------------------------------------------------
580% --- Executes on selection change in scalar menu.
581%------------------------------------------------------------------------
582function scalar_Callback(hObject, eventdata, handles)
583
584Field=get(handles.get_field,'UserData');
585scalar_index=get(handles.scalar,'Value');
586scalar_menu=get(handles.scalar,'String');
587ScalarName=scalar_menu{scalar_index};
588
589%% set list of possible coordinates
590test_component=zeros(size(Field.Display.VarDimName));%=1 when variable #ilist is eligible as unstructured coordinate
591test_coord=zeros(size(Field.Display.VarDimName)); %=1 when variable #ilist is eligible as structured coordiante
592dim_var=Field.Display.VarDimName{scalar_index};%list of dimensions of the selected variable
593if ~get(handles.CheckDimensionX,'Value') 
594    %look for coordinate variables among the other variables
595    for ilist=1:numel(Field.Display.VarDimName)
596        dimnames=Field.Display.VarDimName{ilist}; %list of dimensions for variable #ilist
597        if isequal(dimnames,dim_var)
598            test_component(ilist)=1;% the listed variable has the same dimension as the selected scalar-> possibly chosen as unstructured coordinate
599        elseif numel(dimnames)==1 && ~isempty(find(strcmp(dimnames{1},dim_var), 1))%variable ilist is a 1D array which can be coordinate variable
600            test_coord(ilist)=1;
601        end
602    end
603end
604var_component=find(test_component);% list of variable indices elligible as unstructured coordinates
605var_coord=find(test_coord);% % list of variable indices elligible as structured coordinates
606ListCoord=Field.Display.ListVarName([var_component var_coord]);
607
608%% set default coord selection
609% if numel(find(test_coord))>3
610%     SwitchVarIndexTime=get(handles.SwitchVarIndexTime,'String');
611%     if numel(SwitchVarIndexTime)<3
612%         SwitchVarIndexTime=[SwitchVarIndexTime;'matrix_index'];
613%         set(handles.SwitchVarIndexTime,'String',SwitchVarIndexTime)
614%     end
615%     set(handles.SwitchVarIndexTime,'Value',3)% the last dim must be considered as time
616%     SwitchVarIndexTime_Callback([], [], handles)
617% end
618
619coord_val=[0 0];
620% look for labelled unstructured coordinates
621for ilist=1:numel(var_component)
622    ivar=var_component(ilist);
623    if isfield(Field.Display,'VarAttribute') && numel(Field.Display.VarAttribute)>=ivar && isfield(Field.Display.VarAttribute{ivar},'Role')
624        Role=Field.Display.VarAttribute{ivar}.Role;
625        if strcmp(Role,'coord_x')
626            coord_val(1)=ilist;
627        elseif strcmp(Role,'coord_y')
628            coord_val(2)=ilist;
629        end
630    end
631end
632if numel(find(coord_val))<2
633    if numel(var_coord)>=2
634        coord_val=[numel(var_component)+2 numel(var_component)+1];
635    else
636        coord_val=[1 2];
637    end
638end
639if  get(handles.CheckDimensionX,'Value')
640    set(handles.Coord_x,'Value',2)
641    set(handles.Coord_x,'String',dim_var')
642else
643    set(handles.Coord_x,'Value',coord_val(1))
644    set(handles.Coord_x,'String',ListCoord)
645end
646if  get(handles.CheckDimensionX,'Value')
647    set(handles.Coord_y,'Value',1)
648    set(handles.Coord_y,'String',dim_var')
649else
650    set(handles.Coord_y,'Value',coord_val(2))
651    set(handles.Coord_y,'String',ListCoord)
652end
653if  get(handles.CheckDimensionX,'Value')
654    set(handles.Coord_z,'Value',1)
655    set(handles.Coord_z,'String',dim_var')
656else
657    set(handles.Coord_z,'Value',coord_val(2))
658    set(handles.Coord_z,'String',ListCoord)
659end
660
661%% set list of time coordinates
662menu=get(handles.SwitchVarIndexTime,'String');
663TimeOption=menu{get(handles.SwitchVarIndexTime,'Value')};
664switch TimeOption
665    case 'variable'
666        if numel(find(test_coord))<3
667            ListTime={''};
668        else
669            ListTime=Field.Display.ListVarName(find(test_coord,end));
670        end
671        set(handles.TimeName,'Value',1)
672        set(handles.TimeName,'String',ListTime)
673    case 'dim index'
674        if numel(find(test_coord))<3
675            ListTime={''};
676        else
677            ListTime=Field.Display.VarDimName{find(test_coord,end)};
678        end
679        set(handles.TimeName,'Value',1)
680        set(handles.TimeName,'String',ListTime)
681end 
682update_field(handles,ScalarName)
683
684% --- Executes on button press in check_rgb.
685function check_rgb_Callback(hObject, eventdata, handles)
686
687
688%------------------------------------------------------------------------
689% --- Executes on selection change in vector_x.
690%------------------------------------------------------------------------
691function vector_x_Callback(hObject, eventdata, handles)
692
693vector_x_menu=get(handles.vector_x,'String');
694vector_x_index=get(handles.vector_x,'Value');
695vector_x=vector_x_menu{vector_x_index};
696vector_Callback(handles)
697update_field(handles,vector_x)
698
699%------------------------------------------------------------------------
700% --- Executes on selection change in vector_x.
701function vector_y_Callback(hObject, eventdata, handles)
702%------------------------------------------------------------------------
703vector_y_menu=get(handles.vector_x,'String');
704vector_y_index=get(handles.vector_x,'Value');
705vector_y=vector_y_menu{vector_y_index};
706vector_Callback(handles)
707update_field(handles,vector_y)
708
709%------------------------------------------------------------------------
710% --- Executes on selection change in vector_z.
711function vector_z_Callback(hObject, eventdata, handles)
712%------------------------------------------------------------------------
713vector_z_menu=get(handles.vector_z,'String');
714vector_z_index=get(handles.vector_z,'Value');
715vector_z=vector_z_menu{vector_z_index};
716vector_Callback(handles)
717update_field(handles,vector_z)
718
719%------------------------------------------------------------------------
720% --- Executes on selection change in vec_color.
721function vec_color_Callback(hObject, eventdata, handles)
722%------------------------------------------------------------------------
723index=get(handles.vec_color,'Value');
724string=get(handles.vec_color,'String');
725VarName=string{index};
726vector_Callback(handles)
727update_field(handles,VarName)
728
729%------------------------------------------------------------------------
730% --- Executes on selection change in vector_x or vector_y
731function vector_Callback( handles)
732%------------------------------------------------------------------------
733Field=get(handles.get_field,'UserData');
734vector_x_index=get(handles.vector_x,'Value');
735vector_y_index=get(handles.vector_y,'Value');
736vec_color_index=get(handles.vec_color,'Value');
737
738%% set list of possible coordinates
739test_component=zeros(size(Field.Display.VarDimName));%=1 when variable #ilist is eligible as unstructured coordinate
740test_coord=zeros(size(Field.Display.VarDimName)); %=1 when variable #ilist is eligible as structured coordiante
741check_consistent=1;%check that the selected vector components (and possibly color var) have the same dimensiosn
742ListCoord={''};
743dim_var=Field.Display.VarDimName{vector_x_index};%list of dimensions of the selected variable
744if ~isequal(dim_var,Field.Display.VarDimName{vector_y_index})
745    check_consistent=0;
746elseif vec_color_index~=1 && ~isequal(dim_var,Field.Display.VarDimName{vec_color_index})
747    check_consistent=0;
748end
749% the two vector components have consistent dimensions
750if check_consistent
751    for ilist=1:numel(Field.Display.VarDimName)
752        dimnames=Field.Display.VarDimName{ilist}; %list of dimensions for variable #ilist
753        if isequal(dimnames,dim_var)
754            test_component(ilist)=1;
755        elseif numel(dimnames)==1 && ~isempty(find(strcmp(dimnames{1},dim_var)))%variable ilist is a 1D array which can be coordinate variable
756            test_coord(ilist)=1;
757        end
758    end
759    var_component=find(test_component);% list of variable indices elligible as unstructured coordinates
760    var_coord=find(test_coord);% % list of variable indices elligible as structured coordinates
761    ListCoord=Field.Display.ListVarName([var_component var_coord]);
762   
763    %% set default coord selection
764    if numel(find(test_coord))>3
765        set(handles.SwitchVarIndexTime,'Value',3)% the last dim must be considered as time
766    end
767    if numel(var_component)<2
768        if numel(test_coord)<2
769            ListCoord={''};
770        else
771            set(handles.Coord_x,'Value',2)
772            set(handles.Coord_y,'Value',1)
773        end
774    else
775        coord_val=[0 0];
776        for ilist=1:numel(var_component)
777            ivar=var_component(ilist);
778            if isfield(Field.Display,'VarAttribute') && numel(Field.Display.VarAttribute)>=ivar && isfield(Field.Display.VarAttribute{ivar},'Role')
779                Role=Field.Display.VarAttribute{ivar}.Role;
780                if strcmp(Role,'coord_x')
781                    coord_val(1)=ilist;
782                elseif strcmp(Role,'coord_y')
783                    coord_val(2)=ilist;
784                end
785            end
786        end
787        if isempty(find(coord_val))
788            coord_val=var_coord;% case of dimension coordinates
789        end
790        if numel(find(coord_val))<2
791            %coord_val=[numel(var_component)+2 numel(var_component)+1];
792            coord_val=[1 2];
793        end
794        set(handles.Coord_x,'Value',coord_val(1))
795        set(handles.Coord_y,'Value',coord_val(2))
796    end
797end
798set(handles.Coord_y,'String',ListCoord)
799set(handles.Coord_x,'String',ListCoord)
800
801
802%% set list of time coordinates
803menu=get(handles.SwitchVarIndexTime,'String');
804TimeOption=menu{get(handles.SwitchVarIndexTime,'Value')};
805switch TimeOption
806    case 'variable'
807        if numel(find(test_coord))<3
808            ListTime={''};
809        else
810            ListTime=Field.Display.ListVarName(find(test_coord,end));
811        end
812        set(handles.TimeName,'Value',1)
813        set(handles.TimeName,'String',ListTime)
814    case 'dim index'
815        if numel(find(test_coord))<3
816            ListTime={''};
817        else
818            ListTime=Field.Display.VarDimName{find(test_coord,end)};
819        end
820        set(handles.TimeName,'Value',1)
821        set(handles.TimeName,'String',ListTime)
822end 
823
824%------------------------------------------------------------------------
825% --- Executes on selection change in SwitchVarIndexX.
826%------------------------------------------------------------------------
827function SwitchVarIndexX_Callback(hObject, eventdata, handles)
828
829%------------------------------------------------------------------------
830% --- Executes on selection change in Coord_x.
831%------------------------------------------------------------------------
832function Coord_x_Callback(hObject, eventdata, handles)
833
834index=get(handles.Coord_x,'Value');
835string=get(handles.Coord_x,'String');
836VarName=string{index};
837update_field(handles,VarName)
838
839%------------------------------------------------------------------------
840% --- Executes on selection change in Coord_y.
841%------------------------------------------------------------------------
842function Coord_y_Callback(hObject, eventdata, handles)
843
844index=get(handles.Coord_y,'Value');
845string=get(handles.Coord_y,'String');
846VarName=string{index};
847update_field(handles,VarName)
848
849%------------------------------------------------------------------------
850% --- Executes on selection change in Coord_z.
851%------------------------------------------------------------------------
852function Coord_z_Callback(hObject, eventdata, handles)
853
854index=get(handles.Coord_z,'Value');
855string=get(handles.Coord_z,'String');
856VarName=string{index};
857update_field(handles,VarName)
858
859%------------------------------------------------------------------------
860% --- Executes on selection change in SwitchVarIndexTime.
861%------------------------------------------------------------------------
862
863function SwitchVarIndexTime_Callback(hObject, eventdata, handles)
864
865Field=get(handles.get_field,'UserData');
866menu=get(handles.SwitchVarIndexTime,'String');
867option=menu{get(handles.SwitchVarIndexTime,'Value')};
868
869switch option
870    case 'file index'
871        set(handles.TimeName, 'Visible','off')% the time is taken as the file index
872    case 'attribute'
873        set(handles.TimeName, 'Visible','on')% timeName menu represents the available attributes
874        time_index=get(handles.TimeName,'UserData');    %select the input data
875        if isempty(time_index)
876            PreviousList=get(handles.TimeName, 'String');
877            if ~isempty(PreviousList)
878                PreviousAttr=PreviousList{get(handles.TimeName, 'Value')};
879                index=find(strcmp(PreviousAttr,Field.Display.ListGlobalAttributes),1);
880            end
881        end
882        if isempty(time_index)
883            time_index=find(~cellfun('isempty',regexp(Field.Display.ListGlobalAttribute,'Time')),1);% index of the attributes containing the string 'Time'
884        end     
885        if ~isempty(time_index)
886            set(handles.TimeName,'Value',time_index)
887        else
888            set(handles.TimeName,'Value',1)
889        end
890        set(handles.TimeName, 'String',Field.Display.ListGlobalAttribute)
891
892    case 'variable'% TimeName menu represents the available variables
893        set(handles.TimeName, 'Visible','on')
894        VarNbDim=cellfun('length',Field.Display.VarDimName); % check the nbre of dimensions of each input variable
895        TimeVarName=Field.Display.ListVarName(VarNbDim==1);% list of variables with a single dimension (candidate for time)
896        List=get(handles.TimeName,'String');% list of names on the menu for time
897        if isempty(List)
898            ind=1;
899        else
900            option=List{get(handles.TimeName,'Value')};% previous selected option
901            ind=find(strcmp(option,TimeVarName)); %check whether the previous selection is available in the newlist
902            if isempty(ind)
903                ind=1;
904            end
905        end
906        if ~isempty(TimeVarName)
907            set(handles.TimeName, 'Value',ind);% select first value in the menu if the option is not found
908            set(handles.TimeName, 'String',TimeVarName)% update the menu for time name
909        end
910    case 'matrix index'% TimeName menu represents the available dimensions
911        set(handles.TimeName, 'Visible','on')     
912        set(handles.TimeName, 'Value',1);
913        set(handles.TimeName, 'String',Field.Display.ListDimName)
914end
915TimeName_Callback(hObject, [], handles)
916
917%-----------------------------------------------------------------------
918function update_field(handles,VarName)
919%-----------------------------------------------------------------------
920Field=get(handles.get_field,'UserData');
921index=name2index(VarName,Field.ListVarName);
922if ~isempty(index)
923    set(handles.variables,'Value',index+1)
924    variables_Callback(handles.variables, [], handles)
925end
926
927%------------------------------------------------------------------------
928% --- give index numbers of the strings str in the list ListvarName
929% -----------------------------------------------------------------------
930function VarIndex_y=name2index(cell_str,ListVarName)
931
932VarIndex_y=[];
933if ischar(cell_str)
934    for ivar=1:length(ListVarName)
935        varlist=ListVarName{ivar};
936        if isequal(varlist,cell_str)
937            VarIndex_y= ivar;
938            break
939        end
940    end
941elseif iscell(cell_str)
942    for isel=1:length(cell_str)
943        varsel=cell_str{isel};
944        for ivar=1:length(ListVarName)
945            varlist=ListVarName{ivar};
946            if isequal(varlist,varsel)
947                VarIndex_y=[VarIndex_y ivar];
948            end
949        end
950    end
951end
952
953% --- Executes on button press in CheckDimensionY.
954function CheckDimensionX_Callback(hObject, eventdata, handles)
955FieldList=get(handles.FieldOption,'String');
956FieldOption=FieldList{get(handles.FieldOption,'Value')};
957switch FieldOption
958    case '1D plot'
959       
960    case {'scalar','pick variables'}
961       scalar_Callback(hObject, eventdata, handles)
962    case 'vectors'
963end
964
965% % --- Executes on button press in CheckDimensionY.
966% function CheckDimensionY_Callback(hObject, eventdata, handles)
967% FieldList=get(handles.FieldOption,'String');
968% FieldOption=FieldList{get(handles.FieldOption,'Value')};
969% switch FieldOption
970%     case '1D plot'
971%         
972%     case {'scalar','pick variables'}
973%        scalar_Callback(hObject, eventdata, handles)
974%     case 'vectors'
975% end
976%
977%
978% % --- Executes on button press in CheckDimensionZ.
979% function CheckDimensionZ_Callback(hObject, eventdata, handles)
980% FieldList=get(handles.FieldOption,'String');
981% FieldOption=FieldList{get(handles.FieldOption,'Value')};
982% switch FieldOption
983%     case '1D plot'
984%         
985%     case 'scalar'
986%        scalar_Callback(hObject, eventdata, handles)
987%     case 'vectors'
988% end
989
990% --- Executes on selection change in TimeName.
991function TimeName_Callback(hObject, eventdata, handles)
992Field=get(handles.get_field,'UserData');
993index=get(handles.SwitchVarIndexTime,'Value');
994MenuIndex=get(handles.TimeName,'Value');
995string=get(handles.TimeName,'String');
996TimeName='';%default
997if ~isempty(string)&&iscell(string)
998TimeName=string{MenuIndex};
999end
1000switch index
1001    case 1
1002        set(handles.num_TimeDimension,'String','')
1003        set(handles.TimeUnit,'String','index')
1004    case 2
1005        set(handles.num_TimeDimension,'String','')
1006        attr_index=find(strcmpi([TimeName 'Unit'],Field.ListGlobalAttribute));% look for time unit
1007        if ~isempty(attr_index)
1008            AttrName=Field.ListGlobalAttribute{attr_index};
1009            set(handles.TimeUnit,'String',Field.(AttrName))
1010        else
1011            set(handles.TimeUnit,'String','')
1012        end
1013    case {3 ,4}
1014        if index==3  % TimeName is used to chose a variable
1015            VarIndex=name2index(TimeName,Field.ListVarName);
1016            DimName=Field.VarDimName{VarIndex};
1017            DimIndex=name2index(DimName,Field.ListDimName);
1018            DimValue=Field.DimValue(DimIndex);
1019            set(handles.num_TimeDimension,'String',num2str(DimValue))
1020            unit='';
1021            if isfield(Field,'VarAttribute')&& isfield(Field.VarAttribute{VarIndex},'Unit')
1022                unit=Field.VarAttribute{VarIndex}.Unit;
1023            end
1024            set(handles.TimeUnit,'String',unit)
1025            update_field(handles,TimeName)
1026        elseif index==4% TimeName is used to chose a dimension
1027            DimName=string{MenuIndex};
1028            DimIndex=name2index(DimName,Field.ListDimName);
1029            DimValue=Field.DimValue(DimIndex);
1030            set(handles.num_TimeDimension,'String',num2str(DimValue))
1031            set(handles.TimeUnit,'String','index')
1032        end
1033end
1034
1035
1036% --- Executes on button press in Check3D.
1037function Check3D_Callback(hObject, eventdata, handles)
1038if get(handles.Check3D,'Value')
1039    status='on';
1040else
1041    status='off';
1042end
1043set(handles.Coord_z,'Visible',status)
1044% set(handles.CheckDimensionZ,'Visible',status)
1045set(handles.Z_title,'Visible',status)
1046set(handles.vector_z,'Visible',status)
1047set(handles.W_title,'Visible',status)   
Note: See TracBrowser for help on using the repository browser.