[581] | 1 | %'get_field': display variables and attributes from a Netcdf file, and OK selected fields |
---|
[204] | 2 | %------------------------------------------------------------------------ |
---|
[674] | 3 | % GetFieldData=get_field(FileName,ParamIn) |
---|
[204] | 4 | % associated with the GUI get_field.fig |
---|
| 5 | % |
---|
[674] | 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 | % |
---|
[204] | 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 | |
---|
| 34 | function varargout = get_field(varargin) |
---|
| 35 | |
---|
[693] | 36 | % Last Modified by GUIDE v2.5 23-Oct-2013 23:44:17 |
---|
[204] | 37 | |
---|
| 38 | % Begin initialization code - DO NOT EDIT |
---|
[581] | 39 | gui_Singleton = 1; |
---|
[204] | 40 | gui_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', []); |
---|
| 46 | if nargin && ischar(varargin{1})&& ~isempty(regexp(varargin{1},'_Callback','once')) |
---|
| 47 | gui_State.gui_Callback = str2func(varargin{1}); |
---|
| 48 | end |
---|
| 49 | |
---|
| 50 | if nargout |
---|
| 51 | [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:}); |
---|
| 52 | else |
---|
| 53 | gui_mainfcn(gui_State, varargin{:}); |
---|
| 54 | end |
---|
| 55 | % End initialization code - DO NOT EDIT |
---|
[674] | 56 | |
---|
[204] | 57 | %------------------------------------------------------------------------ |
---|
| 58 | % --- Executes just before get_field is made visible. |
---|
[648] | 59 | %------------------------------------------------------------------------ |
---|
[581] | 60 | function get_field_OpeningFcn(hObject, eventdata, handles,filename,ParamIn) |
---|
[204] | 61 | |
---|
[648] | 62 | %% GUI settings |
---|
[581] | 63 | handles.output = 'Cancel'; |
---|
[204] | 64 | guidata(hObject, handles); |
---|
[434] | 65 | set(hObject,'WindowButtonDownFcn',{'mouse_down'}) % allows mouse action with right button (zoom for uicontrol display) |
---|
[204] | 66 | |
---|
[648] | 67 | %% enter input data |
---|
[674] | 68 | if 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 |
---|
| 71 | else |
---|
| 72 | 'bad input to get_field' |
---|
| 73 | end |
---|
| 74 | if ~exist('ParamIn','var') |
---|
| 75 | ParamIn=[]; |
---|
| 76 | end |
---|
[648] | 77 | if isfield(Field,'Txt') |
---|
[674] | 78 | msgbox_uvmat('ERROR',['get_field/nc2struct/' Field.Txt])% display error message for input file reading |
---|
[648] | 79 | return |
---|
[227] | 80 | end |
---|
[204] | 81 | if ~isfield(Field,'ListVarName') |
---|
| 82 | return |
---|
| 83 | end |
---|
[582] | 84 | |
---|
[648] | 85 | %% look at singletons and variables with a single dimension |
---|
| 86 | Field.Display=Field; |
---|
| 87 | Field.Check0D=zeros(size(Field.ListVarName));% =1 for arrays with a single value |
---|
| 88 | NbVar=numel(Field.VarDimName); |
---|
| 89 | for ilist=1:NbVar |
---|
[582] | 90 | if ischar(Field.VarDimName{ilist}) |
---|
| 91 | Field.VarDimName{ilist}={Field.VarDimName{ilist}}; %transform string into cell |
---|
| 92 | end |
---|
[648] | 93 | NbDim=numel(Field.VarDimName{ilist}); |
---|
[582] | 94 | check_singleton=false(1,NbDim); |
---|
| 95 | for idim=1:NbDim |
---|
[648] | 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 |
---|
[582] | 98 | end |
---|
[701] | 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 |
---|
[648] | 100 | if ~Field.Check0D(ilist) |
---|
| 101 | Field.Display.VarDimName{ilist}=Field.VarDimName{ilist}(~check_singleton);% eliminate singletons in the list of variable dimensions |
---|
[582] | 102 | end |
---|
[648] | 103 | %Field.NbDim(ilist)=numel(Field.VarDimNameNonSingleton{ilist});%nbre of array dimensions after elimination of singletons |
---|
[582] | 104 | end |
---|
[669] | 105 | if ~isfield(Field,'VarAttribute') |
---|
| 106 | Field.VarAttribute={}; |
---|
| 107 | end |
---|
[648] | 108 | if numel(Field.VarAttribute)<NbVar% complement VarAttribute by blanjs if neded |
---|
| 109 | Field.VarAttribute(numel(Field.VarAttribute)+1:NbVar)=cell(1,NbVar-numel(Field.VarAttribute)); |
---|
[582] | 110 | end |
---|
[672] | 111 | % Field.Display = list of variables and corresponding properties obtained after removal of singletons |
---|
[648] | 112 | Field.Display.ListVarName=Field.ListVarName(~Field.Check0D); |
---|
| 113 | Field.Display.VarAttribute=Field.VarAttribute(~Field.Check0D); |
---|
| 114 | Field.Display.VarDimName=Field.Display.VarDimName(~Field.Check0D); |
---|
| 115 | Field.Display.DimValue=Field.DimValue(Field.DimValue~=1); |
---|
| 116 | Field.Display.ListDimName=Field.ListDimName(Field.DimValue~=1); |
---|
[581] | 117 | |
---|
[648] | 118 | %% analyse the input field cells |
---|
| 119 | [CellInfo,NbDim,errormsg]=find_field_cells(Field.Display); |
---|
| 120 | if ~isempty(errormsg) |
---|
| 121 | msgbox_uvmat('ERROR',['get_field / Field_input / find_field_cells: ' errormsg]) |
---|
| 122 | return |
---|
| 123 | end |
---|
| 124 | [Field.MaxDim,imax]=max(NbDim); |
---|
| 125 | |
---|
[581] | 126 | %% set time mode |
---|
[646] | 127 | ListSwitchVarIndexTime={'file index'};% default setting: the time is the file index |
---|
[582] | 128 | % look at global attributes with numerical values |
---|
[674] | 129 | check_numvalue=false(1,numel(Field.ListGlobalAttribute)); |
---|
[646] | 130 | for ilist=1:numel(Field.ListGlobalAttribute) |
---|
| 131 | Value=Field.(Field.ListGlobalAttribute{ilist}); |
---|
| 132 | check_numvalue(ilist)=isnumeric(Value); |
---|
| 133 | end |
---|
[648] | 134 | Field.Display.ListGlobalAttribute=Field.ListGlobalAttribute(check_numvalue);% select the attributes with float numerical value |
---|
| 135 | if ~isempty(Field.Display.ListGlobalAttribute) |
---|
[646] | 136 | ListSwitchVarIndexTime=[ListSwitchVarIndexTime; {'attribute'}];% the time can be chosen as a global attribute |
---|
[582] | 137 | end |
---|
| 138 | if Field.MaxDim>=2 |
---|
[693] | 139 | ListSwitchVarIndexTime=[ListSwitchVarIndexTime;{'variable'};{'matrix index'}];% the time can be chosen as a dim index |
---|
[582] | 140 | end |
---|
[674] | 141 | |
---|
| 142 | %% select the Time attribute from input |
---|
| 143 | if isfield(ParamIn,'TimeAttrName') |
---|
| 144 | time_index=find(strcmp(ParamIn.TimeAttrName,Field.Display.ListGlobalAttribute),1); |
---|
| 145 | else |
---|
[693] | 146 | time_index=find(~cellfun('isempty',regexp(Field.Display.ListGlobalAttribute,'Time')),1);% look for global attribute containing name 'Time' |
---|
[674] | 147 | end |
---|
| 148 | if ~isempty(time_index) |
---|
[648] | 149 | set(handles.SwitchVarIndexTime,'Value',2); |
---|
[674] | 150 | set(handles.TimeName,'UserData',time_index) |
---|
[581] | 151 | else |
---|
[648] | 152 | set(handles.SwitchVarIndexTime,'Value',1); |
---|
[581] | 153 | end |
---|
[646] | 154 | set(handles.SwitchVarIndexTime,'String',ListSwitchVarIndexTime) |
---|
[582] | 155 | set(handles.get_field,'UserData',Field);% record the finput field structure |
---|
[648] | 156 | SwitchVarIndexTime_Callback([], [], handles) |
---|
[581] | 157 | |
---|
[582] | 158 | %% set vector menu (priority) if detected or scalar menu for space dim >=2, or usual (x,y) plot for 1D fields |
---|
[648] | 159 | set(handles.vector_x,'String',Field.Display.ListVarName)% fill the menu of x vector components |
---|
| 160 | set(handles.vector_y,'String',Field.Display.ListVarName)% fill the menu of y vector components |
---|
[672] | 161 | set(handles.vector_z,'String',[{''} Field.Display.ListVarName])% fill the menu of y vector components |
---|
| 162 | set(handles.vec_color,'String',[{''} Field.Display.ListVarName])% fill the menu of y vector components |
---|
[648] | 163 | set(handles.scalar,'Value',1)% fill the menu of y vector components |
---|
[672] | 164 | set(handles.scalar,'String',Field.Display.ListVarName)% fill the menu of y vector components |
---|
[648] | 165 | set(handles.ordinate,'Value',1)% fill the menu of y vector components |
---|
[672] | 166 | set(handles.ordinate,'String',Field.Display.ListVarName)% fill the menu of y vector components |
---|
[654] | 167 | if isfield(Field,'Conventions')&& strcmp(Field.Conventions,'uvmat/civdata') |
---|
[672] | 168 | set(handles.FieldOption,'String',{'1D plot';'scalar';'vectors';'civdata...'}) |
---|
[654] | 169 | else |
---|
[672] | 170 | set(handles.FieldOption,'String',{'1D plot';'scalar';'vectors'}) |
---|
[654] | 171 | end |
---|
[582] | 172 | if Field.MaxDim>=2 % case of 2D (or 3D) fields |
---|
[674] | 173 | check_vec_input=0; |
---|
| 174 | if isfield(ParamIn,'vector_x')&& isfield(ParamIn,'vector_y') |
---|
| 175 | ichoice_x=find(strcmp(ParamIn.vector_x,Field.Display.ListVarName),1); |
---|
| 176 | ichoice_y=find(strcmp(ParamIn.vector_y,Field.Display.ListVarName),1); |
---|
| 177 | if ~isempty(ichoice_x)&&~isempty(ichoice_y) |
---|
| 178 | set(handles.vector_x,'UserData',ichoice_x) |
---|
| 179 | set(handles.vector_y,'UserData',ichoice_y) |
---|
| 180 | check_vec_input=1; |
---|
| 181 | end |
---|
| 182 | end |
---|
| 183 | if ~check_vec_input && isfield(CellInfo{imax},'VarIndex_vector_x') && isfield(CellInfo{imax},'VarIndex_vector_y') |
---|
| 184 | set(handles.vector_x,'UserData',CellInfo{imax}.VarIndex_vector_x(1)) |
---|
| 185 | set(handles.vector_y,'UserData',CellInfo{imax}.VarIndex_vector_y(1)) |
---|
| 186 | check_vec_input=1; |
---|
| 187 | end |
---|
| 188 | if check_vec_input |
---|
[646] | 189 | set(handles.FieldOption,'Value',3)% set vector selection option |
---|
[204] | 190 | else |
---|
[674] | 191 | set(handles.FieldOption,'Value',2)% set scalar selection option |
---|
[204] | 192 | end |
---|
[582] | 193 | else % case of 1D fields |
---|
[644] | 194 | set(handles.FieldOption,'Value',1) |
---|
[204] | 195 | end |
---|
[582] | 196 | |
---|
[648] | 197 | %% fill the general list of dimensions, variables, attributes |
---|
| 198 | if isfield(Field,'ListDimName')&&~isempty(Field.ListDimName) |
---|
| 199 | Tabcell(:,1)=Field.ListDimName; |
---|
| 200 | for iline=1:length(Field.ListDimName) |
---|
| 201 | Tabcell{iline,2}=num2str(Field.DimValue(iline)); |
---|
| 202 | end |
---|
| 203 | Tabchar=cell2tab(Tabcell,' = '); |
---|
| 204 | set(handles.dimensions,'String',Tabchar) |
---|
| 205 | end |
---|
| 206 | set(handles.variables,'Value',1) |
---|
| 207 | set(handles.variables,'String',[{'*'} Field.ListVarName]) |
---|
| 208 | variables_Callback(handles.variables,[], handles)% list the global attributes |
---|
[644] | 209 | |
---|
[648] | 210 | %% fill menus for coordinates and time |
---|
| 211 | FieldOption_Callback(handles.variables,[], handles)% list the global attributes |
---|
| 212 | |
---|
[672] | 213 | %% Make choices of coordinates from input |
---|
| 214 | if isfield(CellInfo{imax},'CoordIndex') |
---|
| 215 | CoordIndex=CellInfo{imax}.CoordIndex; |
---|
| 216 | if numel(CoordIndex)==2 |
---|
| 217 | YName=Field.ListVarName{CoordIndex(1)}; |
---|
| 218 | XName=Field.ListVarName{CoordIndex(2)}; |
---|
| 219 | ListCoord=get(handles.Coord_x,'String'); |
---|
| 220 | XIndex=find(strcmp(XName,ListCoord)); |
---|
| 221 | if ~isempty(XIndex) |
---|
| 222 | set(handles.Coord_x,'Value',XIndex) |
---|
| 223 | end |
---|
| 224 | YIndex=find(strcmp(YName,ListCoord)); |
---|
| 225 | if ~isempty(YIndex) |
---|
| 226 | set(handles.Coord_y,'Value',YIndex) |
---|
| 227 | end |
---|
| 228 | end |
---|
| 229 | end |
---|
[648] | 230 | |
---|
| 231 | %% put the GUI on the lower right of the sceen |
---|
| 232 | set(hObject,'Unit','pixel') |
---|
| 233 | pos_view_field=get(hObject,'Position'); |
---|
| 234 | set(0,'Unit','pixels') |
---|
| 235 | ScreenSize=get(0,'ScreenSize'); |
---|
| 236 | pos_view_field(1)=ScreenSize(1)+ScreenSize(3)-pos_view_field(3); |
---|
| 237 | pos_view_field(2)=ScreenSize(2); |
---|
| 238 | set(hObject,'Position',pos_view_field) |
---|
| 239 | set(handles.get_field,'WindowStyle','modal')% Make the GUI modal |
---|
| 240 | drawnow |
---|
| 241 | uiwait(handles.get_field); |
---|
| 242 | |
---|
| 243 | return |
---|
| 244 | |
---|
| 245 | %% set z coordinate menu if relevant |
---|
| 246 | if Field.MaxDim>=3 |
---|
| 247 | set(handles.vector_z,'Visible','on') |
---|
| 248 | set(handles.vector_z,'String',Field.ListVarName(~Field.Check0D)) |
---|
| 249 | set(handles.Coord_z,'Visible','on') |
---|
| 250 | set(handles.SwitchVarIndexZ,'Visible','on') |
---|
| 251 | set(handles.Z_title,'Visible','on') |
---|
| 252 | else |
---|
| 253 | set(handles.vector_z,'Visible','off') |
---|
| 254 | set(handles.Coord_z,'Visible','off') |
---|
| 255 | set(handles.Z_title,'Visible','off') |
---|
[581] | 256 | end |
---|
[204] | 257 | |
---|
[674] | 258 | %% make selections according to ParamIn |
---|
| 259 | if isfield(ParamIn,'vector_x') && isfield(ParamIn,'vector_y') |
---|
| 260 | |
---|
| 261 | end |
---|
| 262 | |
---|
[204] | 263 | %------------------------------------------------------------------------ |
---|
[672] | 264 | % --- Outputs from this function are returned to the command line. |
---|
[648] | 265 | %------------------------------------------------------------------------ |
---|
[582] | 266 | function varargout = get_field_OutputFcn(hObject, eventdata, handles) |
---|
[672] | 267 | |
---|
[582] | 268 | varargout{1} = handles.output; |
---|
| 269 | delete(handles.get_field) |
---|
| 270 | |
---|
[648] | 271 | %------------------------------------------------------------------------ |
---|
| 272 | % --- Executes when user attempts to close get_field. |
---|
| 273 | %------------------------------------------------------------------------ |
---|
| 274 | function get_field_CloseRequestFcn(hObject, eventdata, handles) |
---|
[582] | 275 | |
---|
[648] | 276 | if isequal(get(handles.get_field, 'waitstatus'), 'waiting') |
---|
| 277 | % The GUI is still in UIWAIT, us UIRESUME |
---|
| 278 | uiresume(handles.get_field); |
---|
| 279 | else |
---|
| 280 | % The GUI is no longer waiting, just close it |
---|
| 281 | delete(handles.get_field); |
---|
| 282 | end |
---|
| 283 | |
---|
[672] | 284 | %------------------------------------------------------------------------ |
---|
[648] | 285 | % --- Executes on button press in OK. |
---|
| 286 | %------------------------------------------------------------------------ |
---|
| 287 | function OK_Callback(hObject, eventdata, handles) |
---|
| 288 | |
---|
| 289 | handles.output=read_GUI(handles.get_field); |
---|
| 290 | guidata(hObject, handles);% Update handles structure |
---|
| 291 | uiresume(handles.get_field); |
---|
| 292 | drawnow |
---|
| 293 | |
---|
[582] | 294 | % ----------------------------------------------------------------------- |
---|
| 295 | % --- Activated by selection in the list of variables |
---|
[672] | 296 | % ---------------------------------------------------------------------- |
---|
[582] | 297 | function variables_Callback(hObject, eventdata, handles) |
---|
[672] | 298 | |
---|
[582] | 299 | Tabchar={''};%default |
---|
| 300 | Tabcell=[]; |
---|
| 301 | hselect_field=get(handles.variables,'parent'); |
---|
| 302 | Field=get(handles.get_field,'UserData'); |
---|
| 303 | index=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 |
---|
[672] | 306 | if isequal(index,1) |
---|
[582] | 307 | set(handles.attributes_txt,'String','global attributes') |
---|
| 308 | if isfield(Field,'ListGlobalAttribute') && ~isempty(Field.ListGlobalAttribute) |
---|
| 309 | for iline=1:length(Field.ListGlobalAttribute) |
---|
[672] | 310 | Tabcell{iline,1}=Field.ListGlobalAttribute{iline}; |
---|
[582] | 311 | if isfield(Field, Field.ListGlobalAttribute{iline}) |
---|
[648] | 312 | val=Field.(Field.ListGlobalAttribute{iline}); |
---|
[582] | 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 |
---|
[672] | 322 | %% list Attribute names and values associated to the Variable # index-1 |
---|
[582] | 323 | else |
---|
| 324 | list_var=get(handles.variables,'String'); |
---|
| 325 | var_select=list_var{index}; |
---|
| 326 | set(handles.attributes_txt,'String', ['attributes of ' var_select]) |
---|
| 327 | if isfield(Field,'VarAttribute')&& length(Field.VarAttribute)>=index-1 |
---|
[672] | 328 | % nbline=0; |
---|
[582] | 329 | VarAttr=Field.VarAttribute{index-1}; |
---|
| 330 | if isstruct(VarAttr) |
---|
| 331 | attr_list=fieldnames(VarAttr); |
---|
| 332 | for iline=1:length(attr_list) |
---|
| 333 | Tabcell{iline,1}=attr_list{iline}; |
---|
[674] | 334 | val=VarAttr.(attr_list{iline}) ; |
---|
[582] | 335 | if ischar(val); |
---|
| 336 | Tabcell{iline,2}=val; |
---|
| 337 | else |
---|
[672] | 338 | Tabcell{iline,2}=num2str(val); |
---|
[582] | 339 | end |
---|
| 340 | end |
---|
| 341 | end |
---|
| 342 | end |
---|
[672] | 343 | |
---|
[582] | 344 | end |
---|
| 345 | if ~isempty(Tabcell) |
---|
| 346 | Tabchar=cell2tab(Tabcell,'='); |
---|
[672] | 347 | % Tabchar=[{''};Tabchar]; |
---|
[582] | 348 | end |
---|
| 349 | set(handles.attributes,'Value',1);% select the first item |
---|
| 350 | set(handles.attributes,'String',Tabchar); |
---|
| 351 | |
---|
| 352 | %% update dimensions; |
---|
| 353 | if isfield(Field,'ListDimName') |
---|
| 354 | Tabdim={};%default |
---|
| 355 | if isequal(index,1)%list all dimensions |
---|
| 356 | dim_indices=1:length(Field.ListDimName); |
---|
| 357 | set(handles.dimensions_txt,'String', 'dimensions') |
---|
| 358 | else |
---|
| 359 | DimCell=Field.VarDimName{index-1}; |
---|
| 360 | if ischar(DimCell) |
---|
| 361 | DimCell={DimCell}; |
---|
[672] | 362 | end |
---|
[582] | 363 | dim_indices=[]; |
---|
| 364 | for idim=1:length(DimCell) |
---|
[672] | 365 | dim_index=strcmp(DimCell{idim},Field.ListDimName);%vector with size of Field.ListDimName, =0 |
---|
[582] | 366 | dim_index=find(dim_index,1); |
---|
| 367 | dim_indices=[dim_indices dim_index]; |
---|
| 368 | end |
---|
| 369 | set(handles.dimensions_txt,'String', ['dimensions of ' var_select]) |
---|
| 370 | end |
---|
| 371 | for iline=1:length(dim_indices) |
---|
| 372 | Tabdim{iline,1}=Field.ListDimName{dim_indices(iline)}; |
---|
| 373 | Tabdim{iline,2}=num2str(Field.DimValue(dim_indices(iline))); |
---|
| 374 | end |
---|
| 375 | Tabchar=cell2tab(Tabdim,' = '); |
---|
| 376 | Tabchar=[{''} ;Tabchar]; |
---|
| 377 | set(handles.dimensions,'Value',1) |
---|
[672] | 378 | set(handles.dimensions,'String',Tabchar) |
---|
| 379 | end |
---|
[582] | 380 | |
---|
| 381 | %------------------------------------------------------------------------ |
---|
[648] | 382 | % --- Executes on selection change in FieldOption. |
---|
[582] | 383 | %------------------------------------------------------------------------ |
---|
[648] | 384 | function FieldOption_Callback(hObject, eventdata, handles) |
---|
| 385 | |
---|
[672] | 386 | Field=get(handles.get_field,'UserData'); |
---|
[648] | 387 | FieldList=get(handles.FieldOption,'String'); |
---|
| 388 | FieldOption=FieldList{get(handles.FieldOption,'Value')}; |
---|
| 389 | switch FieldOption |
---|
[672] | 390 | |
---|
[648] | 391 | case '1D plot' |
---|
[654] | 392 | set(handles.Coordinates,'Visible','on') |
---|
[648] | 393 | set(handles.PanelOrdinate,'Visible','on') |
---|
| 394 | pos=get(handles.PanelOrdinate,'Position'); |
---|
| 395 | pos(1)=2; |
---|
| 396 | pos_coord=get(handles.Coordinates,'Position'); |
---|
| 397 | pos(2)=pos_coord(2)-pos(4)-2; |
---|
| 398 | set(handles.PanelOrdinate,'Position',pos) |
---|
| 399 | set(handles.PanelScalar,'Visible','off') |
---|
| 400 | set(handles.PanelVectors,'Visible','off') |
---|
| 401 | set(handles.Coord_y,'Visible','off') |
---|
| 402 | set(handles.Y_title,'Visible','off') |
---|
| 403 | set(handles.Coord_z,'Visible','off') |
---|
| 404 | set(handles.Z_title,'Visible','off') |
---|
| 405 | ordinate_Callback(hObject, eventdata, handles) |
---|
[672] | 406 | |
---|
[648] | 407 | case 'scalar' |
---|
[654] | 408 | set(handles.Coordinates,'Visible','on') |
---|
[648] | 409 | set(handles.PanelOrdinate,'Visible','off') |
---|
| 410 | set(handles.PanelScalar,'Visible','on') |
---|
| 411 | set(handles.PanelVectors,'Visible','off') |
---|
| 412 | pos=get(handles.PanelScalar,'Position'); |
---|
| 413 | pos(1)=2; |
---|
| 414 | pos_coord=get(handles.Coordinates,'Position'); |
---|
| 415 | pos(2)=pos_coord(2)-pos(4)-2; |
---|
| 416 | set(handles.PanelScalar,'Position',pos) |
---|
| 417 | set(handles.Coord_y,'Visible','on') |
---|
| 418 | set(handles.Y_title,'Visible','on') |
---|
[672] | 419 | %default scalar selection |
---|
| 420 | test_coord=zeros(size(Field.Display.VarDimName)); %=1 when variable #ilist is eligible as structured coordiante |
---|
| 421 | for ilist=1:numel(Field.Display.VarDimName) |
---|
| 422 | if isfield(Field.Display,'VarAttribute') && numel(Field.Display.VarAttribute)>=ilist && isfield(Field.Display.VarAttribute{ilist},'Role') |
---|
| 423 | Role=Field.Display.VarAttribute{ilist}.Role; |
---|
| 424 | if strcmp(Role,'coord_x')||strcmp(Role,'coord_y') |
---|
| 425 | test_coord(ilist)=1; |
---|
| 426 | end |
---|
| 427 | end |
---|
| 428 | dimnames=Field.Display.VarDimName{ilist}; %list of dimensions for variable #ilist |
---|
| 429 | if numel(dimnames)==1 && strcmp(dimnames{1},Field.Display.ListVarName{ilist})%dimension variable |
---|
| 430 | test_coord(ilist)=1; |
---|
| 431 | end |
---|
| 432 | end |
---|
| 433 | scalar_index=find(~test_coord,1);%get the first variable not a coordiante |
---|
| 434 | if isempty(scalar_index) |
---|
| 435 | set(handles.scalar,'Value',1) |
---|
| 436 | else |
---|
| 437 | set(handles.scalar,'Value',scalar_index) |
---|
| 438 | end |
---|
[648] | 439 | scalar_Callback(hObject, eventdata, handles) |
---|
[674] | 440 | |
---|
[648] | 441 | case 'vectors' |
---|
[674] | 442 | set(handles.PanelVectors,'Visible','on') |
---|
[654] | 443 | set(handles.Coordinates,'Visible','on') |
---|
[648] | 444 | set(handles.PanelOrdinate,'Visible','off') |
---|
| 445 | set(handles.PanelScalar,'Visible','off') |
---|
| 446 | pos=get(handles.PanelVectors,'Position'); |
---|
| 447 | pos(1)=2; |
---|
| 448 | pos_coord=get(handles.Coordinates,'Position'); |
---|
| 449 | pos(2)=pos_coord(2)-pos(4)-2; |
---|
| 450 | set(handles.PanelVectors,'Position',pos) |
---|
| 451 | set(handles.Coord_y,'Visible','on') |
---|
[672] | 452 | set(handles.Y_title,'Visible','on') |
---|
| 453 | %default vector selection |
---|
[674] | 454 | vector_x_value=get(handles.vector_x,'UserData'); |
---|
| 455 | vector_y_value=get(handles.vector_y,'UserData'); |
---|
| 456 | if ~isempty(vector_x_value)&&~isempty(vector_y_value) |
---|
| 457 | set(handles.vector_x,'Value',vector_x_value) |
---|
| 458 | set(handles.vector_y,'Value',vector_y_value) |
---|
| 459 | else |
---|
| 460 | test_coord=zeros(size(Field.Display.VarDimName)); %=1 when variable #ilist is eligible as structured coordinate |
---|
| 461 | for ilist=1:numel(Field.Display.VarDimName) |
---|
| 462 | if isfield(Field.Display,'VarAttribute') && numel(Field.Display.VarAttribute)>=ilist && isfield(Field.Display.VarAttribute{ilist},'Role') |
---|
| 463 | Role=Field.Display.VarAttribute{ilist}.Role; |
---|
| 464 | if strcmp(Role,'coord_x')||strcmp(Role,'coord_y') |
---|
| 465 | test_coord(ilist)=1; |
---|
| 466 | end |
---|
| 467 | end |
---|
| 468 | dimnames=Field.Display.VarDimName{ilist}; %list of dimensions for variable #ilist |
---|
| 469 | if numel(dimnames)==1 && strcmp(dimnames{1},Field.Display.ListVarName{ilist})%dimension variable |
---|
[672] | 470 | test_coord(ilist)=1; |
---|
| 471 | end |
---|
| 472 | end |
---|
[674] | 473 | vector_index=find(~test_coord,2);%get the two first variables not a coordinate |
---|
| 474 | if isempty(vector_index) |
---|
| 475 | set(handles.vector_x,'Value',1) |
---|
| 476 | set(handles.vector_y,'Value',2) |
---|
| 477 | else |
---|
| 478 | set(handles.vector_x,'Value',vector_index(1)) |
---|
| 479 | set(handles.vector_y,'Value',vector_index(2)) |
---|
[672] | 480 | end |
---|
| 481 | end |
---|
[648] | 482 | vector_Callback(handles) |
---|
[672] | 483 | |
---|
[654] | 484 | case 'civdata...' |
---|
| 485 | set(handles.PanelOrdinate,'Visible','off') |
---|
| 486 | set(handles.PanelScalar,'Visible','off') |
---|
| 487 | set(handles.PanelVectors,'Visible','off') |
---|
| 488 | set(handles.Coordinates,'Visible','off') |
---|
[582] | 489 | end |
---|
| 490 | |
---|
| 491 | %------------------------------------------------------------------------ |
---|
[204] | 492 | function ordinate_Callback(hObject, eventdata, handles) |
---|
| 493 | %------------------------------------------------------------------------ |
---|
[582] | 494 | Field=get(handles.get_field,'UserData'); |
---|
[648] | 495 | y_index=get(handles.ordinate,'Value'); |
---|
| 496 | y_menu=get(handles.ordinate,'String'); |
---|
[701] | 497 | if isempty(y_menu) |
---|
| 498 | return |
---|
| 499 | else |
---|
[648] | 500 | YName=y_menu{y_index}; |
---|
[701] | 501 | end |
---|
[648] | 502 | |
---|
| 503 | %% set list of possible coordinates |
---|
| 504 | test_component=zeros(size(Field.Display.VarDimName));%=1 when variable #ilist is eligible as unstructured coordinate |
---|
| 505 | test_coord=zeros(size(Field.Display.VarDimName)); %=1 when variable #ilist is eligible as structured coordiante |
---|
| 506 | ListCoord={''}; |
---|
| 507 | dim_var=Field.Display.VarDimName{y_index};%list of dimensions of the selected variable |
---|
| 508 | |
---|
| 509 | for ilist=1:numel(Field.Display.VarDimName) |
---|
| 510 | dimnames=Field.Display.VarDimName{ilist}; %list of dimensions for variable #ilist |
---|
| 511 | if isequal(dimnames,dim_var) |
---|
| 512 | test_component(ilist)=1; |
---|
| 513 | elseif numel(dimnames)==1 && ~isempty(find(strcmp(dimnames{1},dim_var)))%variable ilist is a 1D array which can be coordinate variable |
---|
| 514 | test_coord(ilist)=1; |
---|
[582] | 515 | end |
---|
| 516 | end |
---|
[648] | 517 | var_component=find(test_component);% list of variable indices elligible as unstructured coordinates |
---|
| 518 | var_coord=find(test_coord);% % list of variable indices elligible as structured coordinates |
---|
| 519 | ListCoord=Field.Display.ListVarName([var_component var_coord]); |
---|
[204] | 520 | |
---|
[648] | 521 | %% set default coord selection |
---|
| 522 | if numel(find(test_coord))>3 |
---|
[693] | 523 | SwitchVarIndexTime=get(handles.SwitchVarIndexTime,'String'); |
---|
| 524 | if numel(SwitchVarIndexTime)<3 |
---|
| 525 | SwitchVarIndexTime=[SwitchVarIndexTime;'matrix_index']; |
---|
| 526 | set(handles.SwitchVarIndexTime,'String',SwitchVarIndexTime) |
---|
| 527 | end |
---|
[648] | 528 | set(handles.SwitchVarIndexTime,'Value',3)% the last dim must be considered as time |
---|
[693] | 529 | SwitchVarIndexTime_Callback([], [], handles) |
---|
[582] | 530 | end |
---|
[648] | 531 | if numel(var_component)<2 |
---|
| 532 | if numel(test_coord)<2 |
---|
| 533 | ListCoord={''}; |
---|
| 534 | else |
---|
| 535 | set(handles.Coord_x,'Value',2) |
---|
| 536 | set(handles.Coord_y,'Value',1) |
---|
| 537 | end |
---|
[582] | 538 | else |
---|
[648] | 539 | coord_val=1; |
---|
| 540 | for ilist=1:numel(var_component) |
---|
| 541 | ivar=var_component(ilist); |
---|
| 542 | if isfield(Field.Display,'VarAttribute') && numel(Field.Display.VarAttribute)>=ivar && isfield(Field.Display.VarAttribute{ivar},'Role') |
---|
| 543 | Role=Field.Display.VarAttribute{ivar}.Role; |
---|
| 544 | if strcmp(Role,'coord_x') |
---|
| 545 | coord_val=ilist; |
---|
| 546 | end |
---|
| 547 | end |
---|
| 548 | end |
---|
| 549 | set(handles.Coord_x,'Value',coord_val) |
---|
[582] | 550 | end |
---|
[648] | 551 | set(handles.Coord_x,'String',ListCoord) |
---|
[582] | 552 | |
---|
| 553 | |
---|
[648] | 554 | %% set list of time coordinates |
---|
| 555 | menu=get(handles.SwitchVarIndexTime,'String'); |
---|
| 556 | TimeOption=menu{get(handles.SwitchVarIndexTime,'Value')}; |
---|
| 557 | switch TimeOption |
---|
| 558 | case 'variable' |
---|
| 559 | if numel(find(test_coord))<3 |
---|
| 560 | ListTime={''}; |
---|
| 561 | else |
---|
| 562 | ListTime=Field.Display.ListVarName(find(test_coord,end)); |
---|
| 563 | end |
---|
| 564 | set(handles.TimeName,'Value',1) |
---|
| 565 | set(handles.TimeName,'String',ListTime) |
---|
[693] | 566 | case 'matrix index' |
---|
[648] | 567 | if numel(find(test_coord))<3 |
---|
| 568 | ListTime={''}; |
---|
| 569 | else |
---|
| 570 | ListTime=Field.Display.VarDimName{find(test_coord,end)}; |
---|
| 571 | end |
---|
| 572 | set(handles.TimeName,'Value',1) |
---|
| 573 | set(handles.TimeName,'String',ListTime) |
---|
| 574 | end |
---|
| 575 | update_field(handles,YName) |
---|
[674] | 576 | |
---|
[582] | 577 | %------------------------------------------------------------------------ |
---|
[204] | 578 | % --- Executes on selection change in scalar menu. |
---|
[648] | 579 | %------------------------------------------------------------------------ |
---|
[204] | 580 | function scalar_Callback(hObject, eventdata, handles) |
---|
[648] | 581 | |
---|
[586] | 582 | Field=get(handles.get_field,'UserData'); |
---|
[648] | 583 | scalar_index=get(handles.scalar,'Value'); |
---|
| 584 | scalar_menu=get(handles.scalar,'String'); |
---|
| 585 | ScalarName=scalar_menu{scalar_index}; |
---|
[204] | 586 | |
---|
[648] | 587 | %% set list of possible coordinates |
---|
| 588 | test_component=zeros(size(Field.Display.VarDimName));%=1 when variable #ilist is eligible as unstructured coordinate |
---|
| 589 | test_coord=zeros(size(Field.Display.VarDimName)); %=1 when variable #ilist is eligible as structured coordiante |
---|
| 590 | dim_var=Field.Display.VarDimName{scalar_index};%list of dimensions of the selected variable |
---|
[693] | 591 | CheckDimensionX=get(handles.CheckDimensionX,'Value'); |
---|
| 592 | CheckDimensionY=get(handles.CheckDimensionY,'Value'); |
---|
| 593 | if ~CheckDimensionX || ~CheckDimensionY |
---|
| 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 |
---|
[648] | 602 | end |
---|
[227] | 603 | end |
---|
[672] | 604 | var_component=find(test_component);% list of variable indices elligible as unstructured coordinates |
---|
[648] | 605 | var_coord=find(test_coord);% % list of variable indices elligible as structured coordinates |
---|
| 606 | ListCoord=Field.Display.ListVarName([var_component var_coord]); |
---|
[227] | 607 | |
---|
[648] | 608 | %% set default coord selection |
---|
| 609 | if numel(find(test_coord))>3 |
---|
[693] | 610 | SwitchVarIndexTime=get(handles.SwitchVarIndexTime,'String'); |
---|
| 611 | if numel(SwitchVarIndexTime)<3 |
---|
| 612 | SwitchVarIndexTime=[SwitchVarIndexTime;'matrix_index']; |
---|
| 613 | set(handles.SwitchVarIndexTime,'String',SwitchVarIndexTime) |
---|
| 614 | end |
---|
[648] | 615 | set(handles.SwitchVarIndexTime,'Value',3)% the last dim must be considered as time |
---|
[693] | 616 | SwitchVarIndexTime_Callback([], [], handles) |
---|
[648] | 617 | end |
---|
[672] | 618 | % if numel(var_component)<2 |
---|
| 619 | % if numel(test_coord)<2 |
---|
| 620 | % ListCoord={''}; |
---|
| 621 | % else |
---|
| 622 | % set(handles.Coord_x,'Value',2) |
---|
| 623 | % set(handles.Coord_y,'Value',1) |
---|
| 624 | % end |
---|
| 625 | % else |
---|
| 626 | coord_val=[0 0]; |
---|
| 627 | % look for labelled unstructured coordinates |
---|
| 628 | for ilist=1:numel(var_component) |
---|
| 629 | ivar=var_component(ilist); |
---|
| 630 | if isfield(Field.Display,'VarAttribute') && numel(Field.Display.VarAttribute)>=ivar && isfield(Field.Display.VarAttribute{ivar},'Role') |
---|
| 631 | Role=Field.Display.VarAttribute{ivar}.Role; |
---|
| 632 | if strcmp(Role,'coord_x') |
---|
| 633 | coord_val(1)=ilist; |
---|
| 634 | elseif strcmp(Role,'coord_y') |
---|
| 635 | coord_val(2)=ilist; |
---|
[227] | 636 | end |
---|
| 637 | end |
---|
| 638 | end |
---|
[672] | 639 | if numel(find(coord_val))<2 |
---|
| 640 | if numel(var_coord)>=2 |
---|
| 641 | coord_val=[numel(var_component)+2 numel(var_component)+1]; |
---|
| 642 | else |
---|
| 643 | coord_val=[1 2]; |
---|
| 644 | end |
---|
| 645 | end |
---|
[693] | 646 | if CheckDimensionX |
---|
| 647 | set(handles.Coord_x,'Value',2) |
---|
| 648 | set(handles.Coord_x,'String',dim_var') |
---|
| 649 | else |
---|
| 650 | set(handles.Coord_x,'Value',coord_val(1)) |
---|
| 651 | set(handles.Coord_x,'String',ListCoord) |
---|
| 652 | end |
---|
| 653 | if CheckDimensionY |
---|
| 654 | set(handles.Coord_y,'Value',1) |
---|
| 655 | set(handles.Coord_y,'String',dim_var') |
---|
| 656 | else |
---|
| 657 | set(handles.Coord_y,'Value',coord_val(2)) |
---|
| 658 | set(handles.Coord_y,'String',ListCoord) |
---|
| 659 | end |
---|
[227] | 660 | |
---|
[648] | 661 | %% set list of time coordinates |
---|
| 662 | menu=get(handles.SwitchVarIndexTime,'String'); |
---|
| 663 | TimeOption=menu{get(handles.SwitchVarIndexTime,'Value')}; |
---|
| 664 | switch 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) |
---|
| 681 | end |
---|
| 682 | update_field(handles,ScalarName) |
---|
[582] | 683 | |
---|
[648] | 684 | % --- Executes on button press in check_rgb. |
---|
| 685 | function check_rgb_Callback(hObject, eventdata, handles) |
---|
[582] | 686 | |
---|
| 687 | |
---|
| 688 | %------------------------------------------------------------------------ |
---|
[204] | 689 | % --- Executes on selection change in vector_x. |
---|
[672] | 690 | %------------------------------------------------------------------------ |
---|
[204] | 691 | function vector_x_Callback(hObject, eventdata, handles) |
---|
[672] | 692 | |
---|
[648] | 693 | vector_x_menu=get(handles.vector_x,'String'); |
---|
| 694 | vector_x_index=get(handles.vector_x,'Value'); |
---|
| 695 | vector_x=vector_x_menu{vector_x_index}; |
---|
| 696 | vector_Callback(handles) |
---|
| 697 | update_field(handles,vector_x) |
---|
[227] | 698 | |
---|
[204] | 699 | %------------------------------------------------------------------------ |
---|
[648] | 700 | % --- Executes on selection change in vector_x. |
---|
[204] | 701 | function vector_y_Callback(hObject, eventdata, handles) |
---|
| 702 | %------------------------------------------------------------------------ |
---|
[648] | 703 | vector_y_menu=get(handles.vector_x,'String'); |
---|
| 704 | vector_y_index=get(handles.vector_x,'Value'); |
---|
| 705 | vector_y=vector_y_menu{vector_y_index}; |
---|
| 706 | vector_Callback(handles) |
---|
| 707 | update_field(handles,vector_y) |
---|
[204] | 708 | |
---|
| 709 | %------------------------------------------------------------------------ |
---|
| 710 | % --- Executes on selection change in vector_z. |
---|
| 711 | function vector_z_Callback(hObject, eventdata, handles) |
---|
| 712 | %------------------------------------------------------------------------ |
---|
[648] | 713 | vector_z_menu=get(handles.vector_z,'String'); |
---|
| 714 | vector_z_index=get(handles.vector_z,'Value'); |
---|
| 715 | vector_z=vector_z_menu{vector_z_index}; |
---|
| 716 | vector_Callback(handles) |
---|
| 717 | update_field(handles,vector_z) |
---|
[204] | 718 | |
---|
| 719 | %------------------------------------------------------------------------ |
---|
| 720 | % --- Executes on selection change in vec_color. |
---|
| 721 | function vec_color_Callback(hObject, eventdata, handles) |
---|
[227] | 722 | %------------------------------------------------------------------------ |
---|
[204] | 723 | index=get(handles.vec_color,'Value'); |
---|
| 724 | string=get(handles.vec_color,'String'); |
---|
| 725 | VarName=string{index}; |
---|
[648] | 726 | vector_Callback(handles) |
---|
| 727 | update_field(handles,VarName) |
---|
[204] | 728 | |
---|
[227] | 729 | %------------------------------------------------------------------------ |
---|
[648] | 730 | % --- Executes on selection change in vector_x or vector_y |
---|
| 731 | function vector_Callback( handles) |
---|
[227] | 732 | %------------------------------------------------------------------------ |
---|
[648] | 733 | Field=get(handles.get_field,'UserData'); |
---|
| 734 | vector_x_index=get(handles.vector_x,'Value'); |
---|
| 735 | vector_y_index=get(handles.vector_y,'Value'); |
---|
| 736 | vec_color_index=get(handles.vec_color,'Value'); |
---|
[204] | 737 | |
---|
[648] | 738 | %% set list of possible coordinates |
---|
| 739 | test_component=zeros(size(Field.Display.VarDimName));%=1 when variable #ilist is eligible as unstructured coordinate |
---|
| 740 | test_coord=zeros(size(Field.Display.VarDimName)); %=1 when variable #ilist is eligible as structured coordiante |
---|
| 741 | check_consistent=1;%check that the selected vector components (and possibly color var) have the same dimensiosn |
---|
| 742 | ListCoord={''}; |
---|
| 743 | dim_var=Field.Display.VarDimName{vector_x_index};%list of dimensions of the selected variable |
---|
| 744 | if ~isequal(dim_var,Field.Display.VarDimName{vector_y_index}) |
---|
| 745 | check_consistent=0; |
---|
| 746 | elseif vec_color_index~=1 && ~isequal(dim_var,Field.Display.VarDimName{vec_color_index}) |
---|
| 747 | check_consistent=0; |
---|
[204] | 748 | end |
---|
[672] | 749 | % the two vector components have consistent dimensions |
---|
[648] | 750 | if 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; |
---|
[204] | 757 | end |
---|
| 758 | end |
---|
[675] | 759 | var_component=find(test_component);% list of variable indices elligible as unstructured coordinates |
---|
[648] | 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 |
---|
[204] | 766 | end |
---|
[648] | 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) |
---|
[204] | 773 | end |
---|
| 774 | else |
---|
[672] | 775 | coord_val=[0 0]; |
---|
[648] | 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 |
---|
[526] | 785 | end |
---|
| 786 | end |
---|
[675] | 787 | if isempty(find(coord_val)) |
---|
[672] | 788 | coord_val=var_coord;% case of dimension coordinates |
---|
| 789 | end |
---|
| 790 | if numel(find(coord_val))<2 |
---|
[675] | 791 | %coord_val=[numel(var_component)+2 numel(var_component)+1]; |
---|
| 792 | coord_val=[1 2]; |
---|
[672] | 793 | end |
---|
[648] | 794 | set(handles.Coord_x,'Value',coord_val(1)) |
---|
| 795 | set(handles.Coord_y,'Value',coord_val(2)) |
---|
[526] | 796 | end |
---|
[204] | 797 | end |
---|
[648] | 798 | set(handles.Coord_y,'String',ListCoord) |
---|
| 799 | set(handles.Coord_x,'String',ListCoord) |
---|
[204] | 800 | |
---|
| 801 | |
---|
[648] | 802 | %% set list of time coordinates |
---|
| 803 | menu=get(handles.SwitchVarIndexTime,'String'); |
---|
| 804 | TimeOption=menu{get(handles.SwitchVarIndexTime,'Value')}; |
---|
| 805 | switch TimeOption |
---|
| 806 | case 'variable' |
---|
| 807 | if numel(find(test_coord))<3 |
---|
| 808 | ListTime={''}; |
---|
| 809 | else |
---|
| 810 | ListTime=Field.Display.ListVarName(find(test_coord,end)); |
---|
[204] | 811 | end |
---|
[648] | 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)}; |
---|
[204] | 819 | end |
---|
[648] | 820 | set(handles.TimeName,'Value',1) |
---|
| 821 | set(handles.TimeName,'String',ListTime) |
---|
| 822 | end |
---|
[204] | 823 | |
---|
[227] | 824 | %------------------------------------------------------------------------ |
---|
[648] | 825 | % --- Executes on selection change in SwitchVarIndexX. |
---|
[227] | 826 | %------------------------------------------------------------------------ |
---|
[648] | 827 | function SwitchVarIndexX_Callback(hObject, eventdata, handles) |
---|
[227] | 828 | |
---|
| 829 | %------------------------------------------------------------------------ |
---|
[648] | 830 | % --- Executes on selection change in Coord_x. |
---|
[672] | 831 | %------------------------------------------------------------------------ |
---|
[648] | 832 | function Coord_x_Callback(hObject, eventdata, handles) |
---|
[672] | 833 | |
---|
[648] | 834 | index=get(handles.Coord_x,'Value'); |
---|
| 835 | string=get(handles.Coord_x,'String'); |
---|
| 836 | VarName=string{index}; |
---|
| 837 | update_field(handles,VarName) |
---|
[227] | 838 | |
---|
| 839 | %------------------------------------------------------------------------ |
---|
[648] | 840 | % --- Executes on selection change in Coord_y. |
---|
[672] | 841 | %------------------------------------------------------------------------ |
---|
[648] | 842 | function Coord_y_Callback(hObject, eventdata, handles) |
---|
[672] | 843 | |
---|
[648] | 844 | index=get(handles.Coord_y,'Value'); |
---|
| 845 | string=get(handles.Coord_y,'String'); |
---|
| 846 | VarName=string{index}; |
---|
| 847 | update_field(handles,VarName) |
---|
[227] | 848 | |
---|
[646] | 849 | %------------------------------------------------------------------------ |
---|
[648] | 850 | % --- Executes on selection change in Coord_z. |
---|
[672] | 851 | %------------------------------------------------------------------------ |
---|
[648] | 852 | function Coord_z_Callback(hObject, eventdata, handles) |
---|
[672] | 853 | |
---|
[648] | 854 | index=get(handles.Coord_z,'Value'); |
---|
| 855 | string=get(handles.Coord_z,'String'); |
---|
| 856 | VarName=string{index}; |
---|
| 857 | update_field(handles,VarName) |
---|
[581] | 858 | |
---|
[646] | 859 | %------------------------------------------------------------------------ |
---|
[581] | 860 | % --- Executes on selection change in SwitchVarIndexTime. |
---|
[646] | 861 | %------------------------------------------------------------------------ |
---|
[581] | 862 | function SwitchVarIndexTime_Callback(hObject, eventdata, handles) |
---|
[672] | 863 | |
---|
[648] | 864 | Field=get(handles.get_field,'UserData'); |
---|
[581] | 865 | menu=get(handles.SwitchVarIndexTime,'String'); |
---|
| 866 | option=menu{get(handles.SwitchVarIndexTime,'Value')}; |
---|
[648] | 867 | |
---|
[581] | 868 | switch option |
---|
| 869 | case 'file index' |
---|
[648] | 870 | set(handles.TimeName, 'Visible','off')% the time is taken as the file index |
---|
[581] | 871 | case 'attribute' |
---|
[648] | 872 | set(handles.TimeName, 'Visible','on')% timeName menu represents the available attributes |
---|
[674] | 873 | time_index=get(handles.TimeName,'UserData'); %select the input data |
---|
| 874 | if isempty(time_index) |
---|
| 875 | PreviousList=get(handles.TimeName, 'String'); |
---|
| 876 | if ~isempty(PreviousList) |
---|
| 877 | PreviousAttr=PreviousList{get(handles.TimeName, 'Value')}; |
---|
| 878 | index=find(strcmp(PreviousAttr,Field.Display.ListGlobalAttributes),1); |
---|
| 879 | end |
---|
[581] | 880 | end |
---|
[674] | 881 | if isempty(time_index) |
---|
| 882 | time_index=find(~cellfun('isempty',regexp(Field.Display.ListGlobalAttribute,'Time')),1);% index of the attributes containing the string 'Time' |
---|
| 883 | end |
---|
[581] | 884 | if ~isempty(time_index) |
---|
[674] | 885 | set(handles.TimeName,'Value',time_index) |
---|
[581] | 886 | else |
---|
[648] | 887 | set(handles.TimeName,'Value',1) |
---|
[581] | 888 | end |
---|
[648] | 889 | set(handles.TimeName, 'String',Field.Display.ListGlobalAttribute) |
---|
[674] | 890 | |
---|
[648] | 891 | case 'variable'% TimeName menu represents the available variables |
---|
| 892 | set(handles.TimeName, 'Visible','on') |
---|
| 893 | TimeVarName=Field.Display.SingleVarName;% slist of variables with a single dimension (candidate for time) |
---|
| 894 | List=get(handles.TimeName,'String'); |
---|
| 895 | option=List{get(handles.TimeName,'Value')}; |
---|
[582] | 896 | ind=find(strcmp(option,TimeVarName)); |
---|
[581] | 897 | if isempty(ind) |
---|
[648] | 898 | set(handles.TimeName, 'Value',1); |
---|
[581] | 899 | else |
---|
[648] | 900 | set(handles.TimeName, 'Value',ind); |
---|
[581] | 901 | end |
---|
[648] | 902 | set(handles.TimeName, 'String',TimeVarName) |
---|
[693] | 903 | case 'matrix_index'% TimeName menu represents the available dimensions |
---|
| 904 | set(handles.TimeName, 'Visible','on') |
---|
| 905 | set(handles.TimeName, 'Value',1); |
---|
| 906 | set(handles.TimeName, 'String',Field.Display.ListDimName) |
---|
[581] | 907 | end |
---|
| 908 | |
---|
[648] | 909 | %----------------------------------------------------------------------- |
---|
| 910 | function update_field(handles,VarName) |
---|
| 911 | %----------------------------------------------------------------------- |
---|
| 912 | Field=get(handles.get_field,'UserData'); |
---|
| 913 | index=name2index(VarName,Field.ListVarName); |
---|
| 914 | if ~isempty(index) |
---|
| 915 | set(handles.variables,'Value',index+1) |
---|
| 916 | variables_Callback(handles.variables, [], handles) |
---|
[644] | 917 | end |
---|
[648] | 918 | |
---|
[672] | 919 | %------------------------------------------------------------------------ |
---|
| 920 | % --- give index numbers of the strings str in the list ListvarName |
---|
| 921 | % ----------------------------------------------------------------------- |
---|
[648] | 922 | function VarIndex_y=name2index(cell_str,ListVarName) |
---|
[672] | 923 | |
---|
[648] | 924 | VarIndex_y=[]; |
---|
| 925 | if ischar(cell_str) |
---|
| 926 | for ivar=1:length(ListVarName) |
---|
| 927 | varlist=ListVarName{ivar}; |
---|
| 928 | if isequal(varlist,cell_str) |
---|
| 929 | VarIndex_y= ivar; |
---|
| 930 | break |
---|
| 931 | end |
---|
| 932 | end |
---|
| 933 | elseif iscell(cell_str) |
---|
| 934 | for isel=1:length(cell_str) |
---|
| 935 | varsel=cell_str{isel}; |
---|
| 936 | for ivar=1:length(ListVarName) |
---|
| 937 | varlist=ListVarName{ivar}; |
---|
| 938 | if isequal(varlist,varsel) |
---|
| 939 | VarIndex_y=[VarIndex_y ivar]; |
---|
| 940 | end |
---|
| 941 | end |
---|
| 942 | end |
---|
| 943 | end |
---|
[693] | 944 | |
---|
| 945 | % --- Executes on button press in CheckDimensionY. |
---|
| 946 | function CheckDimensionX_Callback(hObject, eventdata, handles) |
---|
| 947 | FieldList=get(handles.FieldOption,'String'); |
---|
| 948 | FieldOption=FieldList{get(handles.FieldOption,'Value')}; |
---|
| 949 | switch FieldOption |
---|
| 950 | case '1D plot' |
---|
| 951 | |
---|
| 952 | case 'scalar' |
---|
| 953 | scalar_Callback(hObject, eventdata, handles) |
---|
| 954 | case 'vectors' |
---|
| 955 | end |
---|
| 956 | |
---|
| 957 | % --- Executes on button press in CheckDimensionY. |
---|
| 958 | function CheckDimensionY_Callback(hObject, eventdata, handles) |
---|
| 959 | FieldList=get(handles.FieldOption,'String'); |
---|
| 960 | FieldOption=FieldList{get(handles.FieldOption,'Value')}; |
---|
| 961 | switch FieldOption |
---|
| 962 | case '1D plot' |
---|
| 963 | |
---|
| 964 | case 'scalar' |
---|
| 965 | scalar_Callback(hObject, eventdata, handles) |
---|
| 966 | case 'vectors' |
---|
| 967 | end |
---|
| 968 | % hObject handle to CheckDimensionY (see GCBO) |
---|
| 969 | % eventdata reserved - to be defined in a future version of MATLAB |
---|
| 970 | % handles structure with handles and user data (see GUIDATA) |
---|
| 971 | |
---|
| 972 | % Hint: get(hObject,'Value') returns toggle state of CheckDimensionY |
---|