1 |
enderton |
1.1 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
2 |
|
|
% Plotting parameters % |
3 |
|
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
4 |
|
|
|
5 |
|
|
% Tick label information. |
6 |
|
|
lontick = [-180:60:180]; |
7 |
|
|
lattick = [ -60:30:60 ]; |
8 |
|
|
lonticklabel = {'180W','120W','60W','0','60E','120E','180E'}; |
9 |
|
|
latticklabel = { '60S','30S','0','30N', '60N' }; |
10 |
|
|
vertickA = [0:10000:100000]; % Top down. |
11 |
|
|
vertickO = [-5000:1000:0]; % Bottom up. |
12 |
|
|
verticklabelA = vertickA./100; % Show in hPa rather than Pa. |
13 |
|
|
verticklabelO = abs(vertickO); % Have depth as positive quantity. |
14 |
|
|
timtick = [0:1:12]; |
15 |
|
|
timticklabel = {0:1:12}; |
16 |
|
|
|
17 |
|
|
% Title parameters. |
18 |
|
|
FigureTitle = 1; % Put on figure title. |
19 |
|
|
SubplotTitle = 1; % Put on subplot title. |
20 |
|
|
SubplotExp = 1; % Put on subplot experiment name. |
21 |
|
|
SubplotFld = 1; % Put on subplot experiment name. |
22 |
|
|
SubplotSlc = 0; % Put on subplot sliceType information. |
23 |
|
|
SubplotAvg = 0; % Put on subplot averaging information. |
24 |
|
|
SubplotPst = 0; % Put on subplot plotStyle information. |
25 |
|
|
SubplotMinMax = 0; % Put on subplot minimum and maximum. |
26 |
|
|
SubplotModelTime = 0; % Put on subplot model time. |
27 |
|
|
|
28 |
|
|
UseColorbar = 1; % Throw on a colorbar. |
29 |
|
|
UseNiceTickLabels = 1; % Use nice tick labels (otherwise default) |
30 |
|
|
|
31 |
|
|
Orientation = 'tall'; % Options: 'landscape', 'tall' |
32 |
|
|
Box = 'on'; % Options: 'on', 'off' |
33 |
|
|
Grid = 'on'; % Options: 'on', 'off' |
34 |
|
|
|
35 |
|
|
CaxisFixed = 1; % Use fixed color axis. |
36 |
|
|
CaxisMinMax = 1; % Use minimum and maximum for color axis. |
37 |
|
|
AxesTrimX = 1; % Reset axis, trimming in x. |
38 |
|
|
AxesTrimY = 1; % Reset axis, trimming in y. |
39 |
|
|
ContFixed = 1; % Use fixed contour intervals. |
40 |
|
|
UseConLabel = 1; % Use 'contour' contour labels. |
41 |
|
|
UseCnfLabel = 0; % Use 'contourf' contour labels. |
42 |
|
|
UseLegend = 1; % Put legend on (some) line plots. |
43 |
|
|
|
44 |
|
|
LegendPlacement = 1; % See help for legend legend placement for options. |
45 |
|
|
TseXaxMod = .5; % Time averaging sequential tick label mod factor. |
46 |
|
|
|
47 |
|
|
% Page layout parameters. |
48 |
|
|
dxl = .07; % Left side margin. |
49 |
|
|
dxr = .07; % Right side margin. |
50 |
|
|
dxm = .075; % Gap between subplots horizontally. |
51 |
|
|
dxcb = .025; % DX for colorbar. |
52 |
|
|
dxcbg = .005; % DX for gap between plot and colorbar. |
53 |
|
|
dyb = .075; % Bottom margin. |
54 |
|
|
dyt = .1; % Top margin. |
55 |
|
|
dym = .08; % Gap between subplots vertically. |
56 |
|
|
titlefac = 0.5; % Fractional distance from first subplot to top. |
57 |
|
|
|
58 |
|
|
% Fontsizes. |
59 |
|
|
fs_title = 14; % Font size: Title. |
60 |
|
|
fs_sptitle = 14; % Font size: Subplot title. |
61 |
|
|
fs_colorbar = 12; % Font size: Colorbar. |
62 |
|
|
fs_axis = 12; % Font size: Axes. |
63 |
|
|
fs_tick = 12; % Font size: Tick label. |
64 |
|
|
fs_clabel = 12; % Font size: Contour label. |
65 |
|
|
|
66 |
|
|
% Line details. |
67 |
|
|
linecolors = {'b','r','k','g','c','m','y'}; |
68 |
|
|
linewidth = 1.5; |
69 |
|
|
|
70 |
|
|
% Axis ranges. |
71 |
|
|
ylimO = []; |
72 |
enderton |
1.2 |
ylimA = [0,100000]; |