source: trunk/src/get_field.m @ 1194

Last change on this file since 1194 was 1194, checked in by sommeria, 8 days ago

several bugs repaired

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