source: trunk/SRC/Documentation/xmldoc/wiki/FirstSteps @ 355

Last change on this file since 355 was 355, checked in by pinsard, 16 years ago

some improvements in wiki production (hyperlinks)

File size: 42.2 KB
RevLine 
[352]1= First steps with SAXO =
[351]2[[PageOutline]]
[347]3
[351]4   
5   
6   
7     
8 
9== Before this ==
[347]10
[351]11In this document, we supposed that you followed [wiki:GetSaxo Get SAXO] recommendations.
12
[352]13== First plots 
 ==
[351]14
[352]15=== Start IDL session: @init ===
[351]16
[354]17Each IDL session using SAXO must always start with:
18
19{{{
[351]20#!html
21<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[354]22 <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">@init</strong></span></code></strong>
23</pre>
24}}}
25''The @ is equivalent to an include. It is used to execute a set of IDL commands that will be directly executed without any compilation (as it is the case for a procedure or a function). All variables defined and used in the @
 file will still be accessible after the execution of the @
 is finished (which is not the case for procedures and functions that ends with the return instruction).''
26{{{
27#!html
28<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
29  <code class="prompt">$</code> <strong class="userinput"><code><span><strong class="command">cd</strong></span> ${HOME}/My_IDL/</code></strong>
[347]30  <code class="prompt">$</code> <strong class="userinput"><code><span><strong class="command">idl</strong></span></code></strong>
31  <code class="computeroutput">IDL Version 6.0, Mac OS X (darwin ppc m32). (c) 2003, Research Systems, Inc.</code>
32  <code class="computeroutput">Installation number: 35411.</code>
33  <code class="computeroutput">Licensed for personal use by Jean-Philippe BOULANGER only.</code>
34  <code class="computeroutput">All other use is strictly prohibited.</code>
35  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">@init</strong></span></code></strong>
36  <code class="computeroutput">% Compiled module: KEEP_COMPATIBILITY.</code>
37  <code class="computeroutput">% Compiled module: FIND.</code>
38  <code class="computeroutput">% Compiled module: PATH_SEP.</code>
39  <code class="computeroutput">% Compiled module: STRSPLIT.</code>
40  <code class="computeroutput">% Compiled module: DEF_MYUNIQUETMPDIR.</code>
41  <code class="computeroutput">We forget the compatibility with the old version</code>
42  <code class="computeroutput">% Compiled module: DEMOMODE_COMPATIBILITY.</code>
43  <code class="computeroutput">% Compiled module: ISADIRECTORY.</code>
44  <code class="computeroutput">% Compiled module: LCT.</code>
45  <code class="computeroutput">% Compiled module: RSTRPOS.</code>
46  <code class="computeroutput">% Compiled module: REVERSE.</code>
47  <code class="computeroutput">% Compiled module: STR_SEP.</code>
48  <code class="computeroutput">% Compiled module: LOADCT.</code>
49  <code class="prompt">idl&gt;</code>
[351]50</pre>
51}}}
[352]52
[354]53As an IDL session using SAXO must always start with :
54
55{{{
56#!html
57<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
58 <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">@init</strong></span></code></strong>
59</pre>
60}}}
61
62, it could be convenient to define the environment variable IDL_STARTUP to {{{${HOME}/My_IDL/init.pro}}}. In that way, {{{init.pro}}} will automatically been executed when starting IDL. This can be done with the following command:
[347]63     
[354]64
65'''csh'''
66{{{
[351]67#!html
[354]68<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"><code class="prompt">$</code> <strong class="userinput"><code><span><strong class="command">setenv</strong></span> IDL_STARTUP ${HOME}/My_IDL/init.pro</code></strong></pre>
[351]69}}}
70
[354]71
72'''ksh'''
73{{{
[351]74#!html
[354]75<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen"><code class="prompt">$</code> <strong class="userinput"><code><span><strong class="command">export</strong></span> IDL_STARTUP=${HOME}/My_IDL/init.pro</code></strong></pre>
[351]76}}}
77
[354]78
[352]79=== Basic plots 
 ===
[347]80
[352]81==== splot ====
[351]82
[347]83 
[351]84   
85 
[354]86
[351]87{{{
88#!html
89<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]90   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">n = 10</strong></span></code></strong>
[351]91   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">y = findgen(n)</strong></span></code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/callouts/1.png)]]1
[355]92   <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">plot, y</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_plot.png show result]
[347]93</pre>
[351]94}}}
[352]95
[354]96   
[351]97   
[354]98      {{{findgen}}} stands for '''f'''loat '''ind'''ex '''gen'''erator.
99
[351]100{{{
101#!html
102<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]103  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">print, findgen(6)</strong></span></code></strong>
104  <code class="computeroutput">      0.00000      1.00000      2.00000      3.00000      4.00000      5.00000</code>
[351]105</pre>
106}}}
[352]107
[351]108   
109 
110
111Using IDL {{{plot}}} command is quite inconvenient to save the figure as a postscript. In addition, positioning the figure on the window/page by using {{{!p.position}}}, {{{!p.region}}} and {{{!p.multi}}} is often a nightmare. That's why we developed {{{splot}}} (like super-plot) which can be used in the same way as plot but is much more convenient to make postscript and position the figure.
[354]112
[351]113{{{
114#!html
115<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[355]116  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">splot, y</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_splot1.png show result]
[347]117  <code class="computeroutput">% Compiled module: SPLOT.</code>
118  <code class="computeroutput">% Compiled module: REINITPLT.</code>
119  <code class="computeroutput">% Compiled module: PLACEDESSIN.</code>
120  <code class="computeroutput">% Compiled module: CALIBRE.</code>
121  <code class="computeroutput">% Compiled module: GIVEWINDOWSIZE.</code>
122  <code class="computeroutput">% Compiled module: GET_SCREEN_SIZE.</code>
123  <code class="computeroutput">% Compiled module: TERMINEDESSIN.</code>
[351]124</pre>
125}}}
[352]126
[347]127Save the figure seen on the screen as a (real, not a screen capture) postscript in only one command.
[351]128
[347]129 
[351]130   
131 
[354]132
[351]133{{{
134#!html
135<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]136  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">@ps</strong></span></code></strong>
137  <code class="computeroutput">% Compiled module: GETFILE.</code>
138  <code class="computeroutput">% Compiled module: PUTFILE.</code>
139  <code class="computeroutput">% Compiled module: OPENPS.</code>
140  <code class="computeroutput">% Compiled module: XQUESTION.</code>
[351]141  <code class="computeroutput">Name of the postscript file? (default answer is idl.ps)</code><strong class="userinput"><code>first_ps</code></strong> [[Image(source:/trunk/SRC/Documentation/xmldoc/images/callouts/1.png)]]1
[347]142  <code class="computeroutput">% Compiled module: ISAFILE.</code>
143  <code class="computeroutput">% Compiled module: XNOTICE.</code>
144  <code class="computeroutput">% Compiled module: CLOSEPS.</code>
145  <code class="computeroutput">% Compiled module: PRINTPS.</code>
146  <code class="computeroutput">% Compiled module: FILE_WHICH.</code>
147  <code class="computeroutput">% Compiled module: CW_BGROUP.</code>
148  <code class="computeroutput">% Compiled module: XMANAGER.</code>
149</pre>
[351]150}}}
[352]151
[351]152 
153   
[347]154     
[351]155If needed, the name of the postscript will automatically be completed with .ps. Just hit return, if you want to use the default postscript name: {{{idl.ps}}}.
[347]156     
[351]157   
158 
159
160Check that the "first_ps.ps" file is now existing 

[354]161
[351]162{{{
163#!html
164<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]165  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">print, file_test(psdir + 'first_ps.ps')</strong></span></code></strong>
166  <code class="computeroutput">           1</code>
167  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">help, file_info(psdir + 'first_ps.ps'), /structure</strong></span></code></strong>
168  <code class="computeroutput">** Structure FILE_INFO, 21 tags, length=64, data length=63:</code>
169  <code class="computeroutput">   NAME            STRING    '/Users/sebastie/IDL/first_ps.ps'</code>
170  <code class="computeroutput">   EXISTS          BYTE         1</code>
171  <code class="computeroutput">   READ            BYTE         1</code>
172  <code class="computeroutput">   WRITE           BYTE         1</code>
173  <code class="computeroutput">   EXECUTE         BYTE         0</code>
174  <code class="computeroutput">   REGULAR         BYTE         1</code>
175  <code class="computeroutput">   DIRECTORY       BYTE         0</code>
176  <code class="computeroutput">   BLOCK_SPECIAL   BYTE         0</code>
177  <code class="computeroutput">   CHARACTER_SPECIAL</code>
178  <code class="computeroutput">                   BYTE         0</code>
179  <code class="computeroutput">   NAMED_PIPE      BYTE         0</code>
180  <code class="computeroutput">   SETUID          BYTE         0</code>
181  <code class="computeroutput">   SETGID          BYTE         0</code>
182  <code class="computeroutput">   SOCKET          BYTE         0</code>
183  <code class="computeroutput">   STICKY_BIT      BYTE         0</code>
184  <code class="computeroutput">   SYMLINK         BYTE         0</code>
185  <code class="computeroutput">   DANGLING_SYMLINK</code>
186  <code class="computeroutput">                   BYTE         0</code>
187  <code class="computeroutput">   MODE            LONG               420</code>
188  <code class="computeroutput">   ATIME           LONG64                1122424373</code>
189  <code class="computeroutput">   CTIME           LONG64                1122424373</code>
190  <code class="computeroutput">   MTIME           LONG64                1122424373</code>
191  <code class="computeroutput">   SIZE            LONG64                      4913</code>
[351]192</pre>
193}}}
194{{{splot}}} accepts the same keywords as {{{plot}}} (/ISOTROPIC, MAX_VALUE=value, MIN_VALUE=value, NSUM=value, /POLAR, THICK=value, /XLOG, /YLOG, /YNOZERO), including the graphics keywords (BACKGROUND, CHARSIZE, CHARTHICK, CLIP, COLOR, DATA, DEVICE, FONT, LINESTYLE, NOCLIP, NODATA, NOERASE, NORMAL, POSITION, PSYM, SUBTITLE, SYMSIZE, T3D, THICK, TICKLEN, TITLE, [XYZ]CHARSIZE, [XYZ]GRIDSTYLE, [XYZ]MARGIN, [XYZ]MINOR, [XYZ]RANGE, [XYZ]STYLE, [XYZ]THICK, [XYZ]TICKFORMAT, [XYZ]TICKINTERVAL, [XYZ]TICKLAYOUT, [XYZ]TICKLEN, [XYZ]TICKNAME, [XYZ]TICKS, [XYZ]TICKUNITS, [XYZ]TICKV, [XYZ]TICK_GET, [XYZ]TITLE, ZVALUE).
[353]195
[351]196It can therefore be customized ''as much as you want''. See this short example:
[354]197
198{{{
[351]199#!html
200<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[355]201  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">splot, y, y^2, linestyle = 2, thick = 2, title = 'y = x^2', /portrait</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_splot2.png show result]
[351]202</pre>
203}}}
[354]204{{{splot}}} can be used to setup the graphic environment ({{{!p}}}, {{{!x}}}, {{{!y}}}, {{{!z}}} variables) needed by procedures like {{{oplot}}}
205{{{
[351]206#!html
207<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]208  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">splot, y, yrange = [0, (n-1)^2], title = 'x and x^2'</strong></span></code></strong>
[355]209  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">oplot, y^2, color = 50, linestyle = 2</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_splot4.png show result]
[351]210</pre>
211}}}
[352]212
[347]213Use the keyword small to produce multi plots figures.
[351]214
[347]215 
[351]216   
217     
218     
219   
220   
221 
[354]222
[351]223{{{
224#!html
225<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
226  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">splot, y, y^2, title = 'y = x^2', psym = 2, small 1 = [1, 2, 1]</strong></span></code></strong>
[347]227  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">splot, findgen(360)/36., findgen(360)*2.*!dtor, /polar $</strong></span></code></strong>
[355]228  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">    , small 1 = [1, 2, 2], /noerase 2</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_splot3.png show result]
[347]229</pre>
[351]230}}}
[352]231
[351]232 
233   
[347]234     
[351]235the small keyword is a 3 elements vector which defines how we divide the page and in which case we should make the plot: [number of columns, number of rows, case number]. The case numbering is starting at 1, from top to bottom and left to right.
[347]236     
[351]237   
238   
[347]239     
[351]240you must put /noerase otherwise the second plot will be done in a new window.
[347]241     
[351]242   
243 
[347]244
[352]245==== scontour ====
[351]246
[354]247Following {{{splot}}} example, we provide {{{scontour}}} as a "super contour".
248
[351]249{{{
250#!html
251<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]252  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">z = dist(n)</strong></span></code></strong>
253  <code class="computeroutput">% Compiled module: DIST.</code>
[355]254  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">scontour, z</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_scontour1.png show result]
[347]255  <code class="computeroutput">% Compiled module: SCONTOUR.</code>
256  <code class="computeroutput">% Compiled module: CHKSTRU.</code>
[351]257</pre>
258}}}
259{{{scontour}}} accepts the same keywords as {{{contour}}} (C_ANNOTATION=vector_of_strings, C_CHARSIZE=value, C_CHARTHICK=integer, C_COLORS=vector, C_LABELS=vector{each element 0 or 1}, C_LINESTYLE=vector, { /FILL | /CELL_FILL | C_ORIENTATION=degrees}, C_SPACING=value, C_THICK=vector, /CLOSED, /DOWNHILL, /FOLLOW, /IRREGULAR, /ISOTROPIC, LEVELS=vector, NLEVELS=integer{1 to 60}, MAX_VALUE=value, MIN_VALUE=value, /OVERPLOT, {/PATH_DATA_COORDS, PATH_FILENAME=string, PATH_INFO=variable, PATH_XY=variable}, TRIANGULATION=variable, /PATH_DOUBLE, /XLOG, /YLOG, ZAXIS={0 | 1 | 2 | 3 | 4}), including the graphics keywords (except LINESTYLE, PSYM, SYMSIZE).
[354]260      It can therefore be customized ''as much as you want''. See these short examples:
261{{{
[351]262#!html
263<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]264  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">scontour, z, /fill, nlevels = 15, subtitle = 'nicer contour' $</strong></span></code></strong>
[355]265  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">    , xtitle = 'x index', charsize = 1.5</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_scontour2.png show result]
[351]266</pre>
267}}}
[352]268
[347]269It can be used in combination with contour to make more complex plots:
[351]270
[347]271 
[351]272   
273 
[354]274
[351]275{{{
276#!html
277<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]278  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">ind = findgen(2*n)/(2.*n)</strong></span></code></strong>
279  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">scontour, z, levels = n*ind, c_orientation = 180*ind, c_spacing = 0.4*ind</strong></span></code></strong>
[351]280  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">contour, z, /overplot, c_label = rebin([1, 0], 2, n) 1, levels = n*ind $</strong></span></code></strong>
[355]281  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">    , c_charthick = 2, c_charsize = 1.5, c_colors = 250*ind</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/basic_scontour3.png show result]
[347]282</pre>
[351]283}}}
284
[352]285
[351]286 
[352]287    {{{rebin}}} is used to build an array containing an alternation of 1 and 0 in order to label one contour every two contours.
[354]288
[351]289{{{
290#!html
291<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]292  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">print, rebin([1, 0], 2, 3)</strong></span></code></strong>
293  <code class="computeroutput">       1       0</code>
294  <code class="computeroutput">       1       0</code>
295  <code class="computeroutput">       1       0</code>
[351]296</pre>
297}}}
[352]298
[351]299 
[347]300
[355]301{{{scontour}}} is compatible with the positioning method associated with the small keyword. See for example the test file [source:/trunk/SRC/Tests/tst_basic.pro tst_basic.pro]:
[354]302
[351]303{{{
304#!html
305<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[355]306  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">tst_basic</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/tst_basic.png show result]
[351]307</pre>
308}}}
309
[352]310==== Quick look and explore 2D arrays: tvplus ====
311{{{tvplus}}} is a enhanced version of {{{tvscl}}} and allow you to have a quick look and perform basic exploration of 2D arrays.
[354]312
313{{{
[351]314#!html
315<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[355]316 <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">tvplus, dist(20)</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/tvplus.png show result]
[354]317 <code class="computeroutput">left button  : mouse position and associated array value</code>
318 <code class="computeroutput">middle button: use it twice to define a zoom box</code>
319 <code class="computeroutput">right button : quit</code>
320 <code class="computeroutput">(x, y) = (  5,   5), value = 7.07107</code>
321 <code class="computeroutput">(x, y) = ( 12,   8), value = 11.3137</code>
322 </pre>
[351]323}}}
[352]324
[354]325For more informations on {{{tvplus}}}, try:
326
327{{{
[351]328#!html
329<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[354]330 <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">xhelp, 'tvplus'</strong></span></code></strong>
331</pre>
[351]332}}}
[352]333
[354]334To see the source code of {{{tvplus}}}, try:
335
336{{{
[351]337#!html
338<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[354]339 <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">xfile, 'tvplus'</strong></span></code></strong>
340</pre>
[351]341}}}
[352]342New Feature
[354]343
344If you use an IDL 6.2 or later revision, you can simply get the help of any command by typing ?'''''command_name''''', for example:
345
346{{{
[351]347#!html
348<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[354]349 <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">?tvplus</strong></span></code></strong>
350</pre>
[351]351}}}
[347]352
[354]353
[352]354==== Formal quick look at 2D arrays: pltv ====
355{{{pltv}}} is a mix between tvplus and plt and allow you to have formal quick look of 2D arrays.
[354]356 
357{{{
[351]358#!html
359<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[355]360  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">pltv, dist(20)</strong></span></code></strong> [source:/trunk/SRC/Documentation/xmldoc/figpng/pltv.png show result]
[351]361  </pre>
362}}}
363
[352]364== Explore gridded data (model outputs and observations) ==
[351]365
[347]366      This section briefly describes the main functionalities offered by SAXO to explore gridded data on regular or irregular grid.
[351]367   
[352]368=== Load the data grid ===
[347]369
[351]370As we focus in this section on the gridded data, we must first load the grid informations before reading and plotting the data. Loading the grid independently of the data allow you to reload the grid only when it is strictly necessary and not every time you access the data. In {{{${HOME}/SAXO_DIR/Tests/}}}, we provide several examples to load a grid.
371     
[352]372==== Easiest solution: load data grid (regular or not) directly from the data file ====
[347]373
374  Example of Levitus temperature on a regular 1x1 grid.
[354]375 
376{{{
[351]377#!html
378<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]379  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">@tst_initlev</strong></span></code></strong>
380  <code class="computeroutput">% Compiled module: INITNCDF.</code>
381  <code class="computeroutput">% Compiled module: ISAFILE.</code>
382  <code class="computeroutput">% Compiled module: UNIQ.</code>
383  <code class="computeroutput">% Loaded DLM: NCDF.</code>
384  <code class="computeroutput">% Compiled module: COMPUTEGRID.</code>
385  <code class="computeroutput">% Compiled module: DOMDEF.</code>
386  <code class="computeroutput">% Compiled module: INTER.</code>
387  <code class="computeroutput">% Compiled module: TRIANGULE.</code>
388  <code class="computeroutput">% Compiled module: TRIANGULE_C.</code>
389  <code class="computeroutput">% Compiled module: UNDEFINE.</code>
390  <code class="computeroutput">% Compiled module: TESTVAR.</code>
391  <code class="computeroutput">% Compiled module: DIFFERENT.</code>
392  <code class="computeroutput">% Compiled module: DEFINETRI.</code>
[351]393  </pre>
394}}}
[352]395
[355]396  This [source:/trunk/SRC/Tests/tst_initlev.pro @tst_initlev] command allows us to define:
[353]397 
[354]398 * domain dimensions, stored in {{{jpi, jpj and jpk}}}
399 * points abscissa, stored in 2D array {{{}}}glamt
400 * points ordinates, stored in 2D array {{{}}}gphit
401 * points depths, stored in 1D array {{{}}}gdept
402 * cells corners abscissa, stored in 2D array {{{}}}glamf
403 * cells corners ordinates, stored in 2D array {{{}}}gphif
404 * cells upper boundary depth, stored in 1D array {{{}}}gdepw
405 * land-sea mask, stored in {{{tmask}}}
406 * the cells size in the longitudinal direction, stored in 2D array {{{}}}e1t
407 * the cells size in the latitudinal direction, stored in 2D array {{{}}}e2t
408 * the cells size in the vertical direction, stored in 1D array {{{}}}e3t
409 * the triangulation used to fill the land points, stored in {{{}}}triangles_list
410{{{
[351]411#!html
412<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]413  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">help, jpi,jpj,jpk</strong></span></code></strong>
414  <code class="computeroutput">JPI (LOCAL_COORD)   LONG      =          360</code>
415  <code class="computeroutput">JPJ (LOCAL_COORD)   LONG      =          180</code>
416  <code class="computeroutput">JPK (LOCAL_COORD)   LONG      =           33</code>
417  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">help, glamt, gphit,glamf, gphif</strong></span></code></strong>
418  <code class="computeroutput">GLAMT (LONGITUDES)  FLOAT     = Array[360, 180]</code>
419  <code class="computeroutput">GPHIT (LATITUDES)   FLOAT     = Array[360, 180]</code>
420  <code class="computeroutput">GLAMF (LONGITUDES)  FLOAT     = Array[360, 180]</code>
421  <code class="computeroutput">GPHIF (LATITUDES)   FLOAT     = Array[360, 180]</code>
422  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">help, gdept, gdepw</strong></span></code></strong>
423  <code class="computeroutput">GDEPT (VERTICAL)    FLOAT     = Array[33]</code>
424  <code class="computeroutput">GDEPW (VERTICAL)    FLOAT     = Array[33]</code>
425  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">help, e1t, e2t, e3t</strong></span></code></strong>
426  <code class="computeroutput">E1T (SCALE_FACTORS) FLOAT     = Array[360, 180]</code>
427  <code class="computeroutput">E2T (SCALE_FACTORS) FLOAT     = Array[360, 180]</code>
428  <code class="computeroutput">E3T (VERTICAL)      FLOAT     = Array[33]</code>
429  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">help, tmask</strong></span></code></strong>
430  <code class="computeroutput">TMASK (MASKS)       BYTE      = Array[360, 180, 33]</code>
431  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">help, triangles_list</strong></span></code></strong>
432  <code class="computeroutput">TRIANGLES_LIST (LIEES_A_TRIANGULE) LONG      = Array[3, 128880]</code>
433  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">tvplus, glamt*tmask[*,*,0]</strong></span></code></strong>
434  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">tvplus, gphit*tmask[*,*,0]</strong></span></code></strong>
[351]435  </pre>
436}}}
[352]437
[347]438  We provide other initialization methods/examples
[353]439 
[355]440 * [source:/trunk/SRC/Tests/tst_initorca2_short.pro @tst_initorca2_short] : ORCA2 example
441 * [source:/trunk/SRC/Tests/tst_initorca05_short.pro @tst_initorca05_short] : ORCA05 example
442 * [source:/trunk/SRC/Tests/tst_initlev_stride.pro @tst_initlev_stride] : same as @tst_initlev but we skip on point over 2 in x and y direction
443 * [source:/trunk/SRC/Tests/tst_initorca2_short_stride.pro @tst_initorca2_short_stride] : ORCA2 with stride
444 * [source:/trunk/SRC/Tests/tst_initorca05_short_stride.pro @tst_initorca05_short_stride] : ORCA05 with stride
445 * [source:/trunk/SRC/Tests/tst_initlev_index.pro @tst_initlev_index] : in that case we load the grid using points index as axis instead of the longitude/latitude position
446 * [source:/trunk/SRC/Tests/tst_initorca2_index.pro @tst_initorca2_index] : load ORCA2 as it see by the model
447 * [source:/trunk/SRC/Tests/tst_initorca05_index.pro @tst_initorca05_index] : load ORCA05 as it see by the model
448 * [source:/trunk/SRC/Tests/tst_initlev_index_stride.pro @tst_initlev_index_stride] : @tst_initlev_index with stride
449 * [source:/trunk/SRC/Tests/tst_initorca2_index_stride.pro @tst_initorca2_index_stride] : ORCA2 in index with stride
450 * [source:/trunk/SRC/Tests/tst_initorca05_index_stride.pro @tst_initorca05_index_stride] : ORCA05 in index with stride
[352]451==== Load the grid from OPA meshmask file ====
[347]452
[351]453  When the grid is really irregular (its abscissa and ordinate cannot be descried by a vector), loading the grid directly from the data forces us to make an approximation when computing the grid corners position and the cells size. In that case, it can be preferable to load the grid from the meshmask file created by OPA. As OPA use a Arakawa-C discretization, loading the grid from the meshmask will also define all parameters related to the U, V and F grids (glam[uv],gphi[uv], e[12][uvf]). Note that, when using a simple grid definition from the data itself (with {{{initncdf}}} or {{{computegrid}}}), adding the keyword /FULLCGRID leads also to the definition of all U, V and F grids parameters. There is the examples to load ORCA grids from OPA meshmask.
[353]454 
[355]455 * [source:/trunk/SRC/Tests/tst_initorca2.pro @tst_initorca2] : ORCA2
456 * [source:/trunk/SRC/Tests/tst_initorca05.pro @tst_initorca05] : ORCA05
457 * [source:/trunk/SRC/Tests/tst_initorca2_stride.pro @tst_initorca2_stride] : ORCA2 with stride
458 * [source:/trunk/SRC/Tests/tst_initorca05_stride.pro @tst_initorca05_stride] : ORCA05 with stride
459 * [source:/trunk/SRC/Tests/tst_initorca2_index.pro @tst_initorca2_index] : load ORCA2 as it see by the model
460 * [source:/trunk/SRC/Tests/tst_initorca05_index.pro @tst_initorca05_index] : load ORCA05 as it see by the model
461 * [source:/trunk/SRC/Tests/tst_initorca2_index_stride.pro @tst_initorca2_index_stride] : ORCA2 in index with stride
462 * [source:/trunk/SRC/Tests/tst_initorca05_index_stride.pro @tst_initorca05_index_stride] : ORCA05 in index with stride
[352]463=== Horizontal plots and maps ===
[351]464
[355]465  A quick presentation of horizontal plots and maps is shown in [source:/trunk/SRC/Tests/tst_plt.pro tst_plt]. After loading any of the grid (for example with one of the above examples). Just try:
[354]466 
467{{{
[351]468#!html
469<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]470  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">tst_plt</strong></span></code></strong>
[351]471  </pre>
472}}}
473''Beware, the command is tst_plt and not @tst_plt as tst_plt.pro is a procedure and not an include.''
[347]474  See the results with
[353]475 
[355]476 * @tst_initlev[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_10.png show result]
477 * @tst_initorca2[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_10.png show result]
478 * @tst_initorca05[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_10.png show result]
479 * @tst_initlev_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_lev_stride_10.png show result]
480 * @tst_initorca2_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca2_stride_10.png show result]
481 * @tst_initorca05_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_plt_orca05_stride_10.png show result]
[352]482=== Vertical sections ===
[347]483
[355]484  A quick presentation of vertical sections is shown in [source:/trunk/SRC/Tests/tst_pltz.pro tst_pltz]. After loading any of the grid (for example with one of the above examples). Just try:
[354]485 
486{{{
[351]487#!html
488<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]489  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">tst_pltz</strong></span></code></strong>
[351]490  </pre>
491}}}
[352]492''Beware, the command is tst_pltz and not @tst_pltz as tst_pltz.pro is a procedure and not an include.''
[347]493  See the results with
[353]494 
[355]495 * @tst_initlev[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_10.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_11.png show result]
496 * @tst_initorca2[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_10.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_11.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_12.png show result]
497 * @tst_initorca05[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_10.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_11.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_12.png show result]
498 * @tst_initlev_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_10.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_lev_stride_11.png show result]
499 * @tst_initorca2_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_10.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca2_stride_11.png show result]
500 * @tst_initorca05_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_06.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_07.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_08.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_09.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_10.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltz_orca05_stride_11.png show result]
[352]501=== Hovmoellers and time series ===
[347]502
[355]503  A quick presentation of hovmoellers and time series is shown in [source:/trunk/SRC/Tests/tst_pltt.pro tst_pltt]. After loading any of the grid (for example with one of the above examples). Just try:
[354]504 
505{{{
[351]506#!html
507<pre xmlns:xl="http://www.w3.org/1999/xlink" class="screen">
[347]508  <code class="prompt">idl&gt;</code> <strong class="userinput"><code><span><strong class="command">tst_pltt</strong></span></code></strong>
[351]509  </pre>
510}}}
[352]511''Beware, the command is tst_pltt and not @tst_pltt as tst_pltt.pro is a procedure and not an include.''
[347]512  See the results with
[353]513 
[355]514 * @tst_initlev[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_06.png show result]
515 * @tst_initorca2[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_06.png show result]
516 * @tst_initorca05[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_06.png show result]
517 * @tst_initlev_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_lev_stride_06.png show result]
518 * @tst_initorca2_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca2_stride_06.png show result]
519 * @tst_initorca05_stride[source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_stride_01.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_stride_02.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_stride_03.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_stride_04.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_stride_05.png show result][source:/trunk/SRC/Documentation/xmldoc/figpng/tst_pltt_orca05_stride_06.png show result]
[352]520=== 1D plots ===
[347]521
[354]522To be continued 

[347]523
Note: See TracBrowser for help on using the repository browser.