49 |
|
|
50 |
for incol = 1:ncol |
for incol = 1:ncol |
51 |
|
|
52 |
% Very crude test to see if cube sphere, must be fixed! |
if ~isequal(data{inrow}{incol},'Empty') |
|
test = size(data{inrow}{incol}); |
|
|
if test(1)./test(2) == 6, isCS = 1; else, isCS = 0; end |
|
|
fln = page{inrow}{incol}{ifln}; |
|
|
pst = page{inrow}{incol}{ipst}; |
|
|
flu = page{inrow}{incol}{iflu}; |
|
53 |
|
|
54 |
% Set panel settings to default values, override with optional |
% Very crude test to see if cube sphere, must be fixed! |
55 |
% settings. |
test = size(data{inrow}{incol}); |
56 |
DiagPlotDefaults; |
if test(1)./test(2) == 6, isCS = 1; else, isCS = 0; end |
57 |
ExpInfo = page{inrow}{incol}; |
fln = page{inrow}{incol}{ifln}; |
58 |
for iarg = 14:2:length(ExpInfo) |
pst = page{inrow}{incol}{ipst}; |
59 |
if ~ismember(ExpInfo{iarg},diagrunparam) |
flu = page{inrow}{incol}{iflu}; |
60 |
ivalue=ExpInfo{iarg+1}; |
|
61 |
if isstr(ivalue), fvalue=['''',ivalue,'''']; |
% Set panel settings to default values, override with optional |
62 |
elseif prod(size(ivalue))>1, fvalue=mat2str(ivalue); |
% settings. |
63 |
else fvalue=num2str(ivalue); end |
DiagPlotDefaults; |
64 |
evalexpr = [ExpInfo{iarg},'=',fvalue,';']; |
ExpInfo = page{inrow}{incol}; |
65 |
if DiagDebug, disp([' Optional plot parameter evaluation: ',evalexpr]); end |
for iarg = 14:2:length(ExpInfo) |
66 |
eval(evalexpr); |
if ~ismember(ExpInfo{iarg},diagrunparam) |
67 |
end |
ivalue=ExpInfo{iarg+1}; |
68 |
end |
if isstr(ivalue), fvalue=['''',ivalue,'''']; |
69 |
|
elseif prod(size(ivalue))>1, fvalue=mat2str(ivalue); |
70 |
disp([' Row: ',num2str(inrow),'/',num2str(nrow),... |
else fvalue=num2str(ivalue); end |
71 |
'; Col: ',num2str(incol),'/',num2str(ncol),... |
evalexpr = [ExpInfo{iarg},'=',fvalue,';']; |
72 |
'; Cmp: ',cmp]); |
if DiagDebug, disp([' Optional plot parameter evaluation: ',evalexpr]); end |
73 |
|
eval(evalexpr); |
74 |
% Load contour intervals, units (loaded in 'DiagFieldParam[A,O]'). |
end |
75 |
if ~isequal(cmp,'Dif') |
end |
76 |
try, contint; catch |
|
77 |
try, eval(['contint = ',fln,'contour',flu,';']); |
disp([' Row: ',num2str(inrow),'/',num2str(nrow),... |
78 |
catch, disp(['***Warning*** No contour information for ',fln]); |
'; Col: ',num2str(incol),'/',num2str(ncol),... |
79 |
disp([' Using 10 generic contour levels.']); |
'; Cmp: ',cmp]); |
80 |
contint = 10; end, end |
|
81 |
|
% Load contour intervals, units (loaded in |
82 |
|
% 'DiagFieldParam[A,O]'). |
83 |
|
if ~isequal(cmp,'Dif') |
84 |
|
try, contint; catch |
85 |
|
try, eval(['contint = ',fln,'contour',flu,';']); |
86 |
|
catch, disp(['***Warning*** No contour information for ',fln]); |
87 |
|
disp([' Using 10 generic contour levels.']); |
88 |
|
contint = 10; end, end |
89 |
|
else, try, contint; catch, contint = 10; end, end |
90 |
|
try, units; catch |
91 |
|
try, eval(['units = ',fln,'units',flu,';']); |
92 |
|
catch, disp(['***Warning*** No unit information found for ',fln]); |
93 |
|
disp([' Using question mark.']); |
94 |
|
units = '?'; end, end |
95 |
|
|
96 |
|
xi = dxl + (incol-1)*(dx+dxm); |
97 |
|
yi = 1-dyt-inrow*dy-(inrow-1)*dym; |
98 |
|
|
99 |
|
isp = (inrow-1)*ncol+incol; |
100 |
|
if DiagDebug, disp([' DiagDebug: Subplot: ',mat2str([nrow,ncol,isp])]); end |
101 |
|
if DiagDebug, disp([' DiagDebug: SP Range: ',mat2str([xi,yi,dx,dy])]); end |
102 |
|
subplot(nrow,ncol,isp); hold on; |
103 |
|
set(gca,'position',[xi,yi,dx,dy],'fontsize',fs_axis); |
104 |
|
|
105 |
|
if Coast |
106 |
|
fac = pi./180; |
107 |
|
xax{inrow}{incol} = xax{inrow}{incol}.*fac; |
108 |
|
yax{inrow}{incol} = yax{inrow}{incol}.*fac; |
109 |
|
else, fac = 1; end |
110 |
|
|
111 |
|
% (Re)set axes and color axis -- Accounts for things like a possible |
112 |
|
% colorbar, or trimming the axis in certain ways. |
113 |
|
% Apply desired colorbar, contour label, tick labels, box, grid, and |
114 |
|
% other such odds and ends. |
115 |
|
DiagPlotMakePlot; |
116 |
|
DiagPlotResetAxes; |
117 |
|
DiagPlotMisc; |
118 |
|
DiagPlotTitles; |
119 |
|
clear contint units crange |
120 |
end |
end |
|
try, units; catch |
|
|
try, eval(['units = ',fln,'units',flu,';']); |
|
|
catch, disp(['***Warning*** No unit information found for ',fln]); |
|
|
disp([' Using question mark.']); |
|
|
units = '?'; end, end |
|
|
|
|
|
xi = dxl + (incol-1)*(dx+dxm); |
|
|
yi = 1-dyt-inrow*dy-(inrow-1)*dym; |
|
|
|
|
|
isp = (inrow-1)*ncol+incol; |
|
|
if DiagDebug, disp([' DiagDebug: Subplot: ',mat2str([nrow,ncol,isp])]); end |
|
|
if DiagDebug, disp([' DiagDebug: SP Range: ',mat2str([xi,yi,dx,dy])]); end |
|
|
subplot(nrow,ncol,isp); hold on; |
|
|
set(gca,'position',[xi,yi,dx,dy],'fontsize',fs_axis); |
|
|
|
|
|
if Coast |
|
|
fac = pi./180; |
|
|
xax{inrow}{incol} = xax{inrow}{incol}.*fac; |
|
|
yax{inrow}{incol} = yax{inrow}{incol}.*fac; |
|
|
else, fac = 1; end |
|
|
|
|
|
% (Re)set axes and color axis -- Accounts for things like a possible |
|
|
% colorbar, or trimming the axis in certain ways. |
|
|
% Apply desired colorbar, contour label, tick labels, box, grid, and |
|
|
% other such odds and ends. |
|
|
DiagPlotMakePlot; |
|
|
DiagPlotResetAxes; |
|
|
DiagPlotMisc; |
|
|
DiagPlotTitles; |
|
|
clear contint units crange |
|
121 |
end |
end |
122 |
end |
end |
123 |
|
|