source: trunk/SRC/Documentation/idldoc_html_output/ToBeReviewed/PLOTS/DESSINE/tvplus.html @ 107

Last change on this file since 107 was 107, checked in by smasson, 18 years ago

bugfix in ead/write_oasis

File size: 9.1 KB
Line 
1
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
5<!-- Generated by IDLdoc 2.0 -->
6
7<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
8  <head>
9    <title>tvplus.pro (SAXO Documentation)</title>
10
11   
12    <link rel="stylesheet" type="text/css" media="all" href="./../../../main_files.css" />
13    <link rel="stylesheet" type="text/css" media="print" href="./../../../main_files_print.css" />
14   
15
16    <script type="text/javascript">
17      function setTitle() {
18        parent.document.title="tvplus.pro (SAXO Documentation)";
19      }
20    </script>
21  </head>
22
23  <body onload="setTitle();">
24
25    <div id="navbar_title">
26  <h1>SAXO Documentation</h1>
27</div>
28
29
30<div id="main_navbar">
31
32  <table cellspacing="0">
33    <tr>
34     
35      <td><a href="./../../../overview.html?format=raw" title="Overview of library">Overview</a></td>
36     
37
38     
39      <td >Directory</td>
40     
41
42     
43      <td><a href="./../../../idldoc-categories.html?format=raw" title="Browse library by category">Categories</a></td>
44     
45
46     
47      <td><a href="./../../../idldoc-index.html?format=raw" title="Index of files, routines, and parameters">Index</a></td>
48     
49
50     
51      <td><a href="./../../../search-page.html?format=raw" title="Search library">Search</a></td>
52     
53
54      <td id="selected">File</td>
55
56     
57      <td >Source</td>
58     
59
60     
61      <td><a href="./../../../idldoc-help.html?format=raw" title="Help on IDLdoc">Help</a></td>
62     
63
64      <td >Etc</td>
65
66      <td id="flexible">Developer&nbsp;documentation</td>
67    </tr>
68  </table>
69
70</div>
71
72<div id="secondary_navbar">
73
74<a href="splot.html">&lt;&lt;prev file</a> | next file &gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;<a href="tvplus.html?format=raw" target="_TOP">view single page</a> | <a href="./../../../index.html?format=raw" target="_TOP">view frames</a>&nbsp;&nbsp;&nbsp;&nbsp;summary: fields | routine&nbsp;&nbsp;&nbsp;&nbsp;details: <a href="#routine_details">routine</a>
75
76</div>
77
78
79    <div id="container">
80
81      <h1 class="directory"><a href="directory-overview.html?format=raw">ToBeReviewed/PLOTS/DESSINE/</a></h1>
82      <h2 class="pro_file">tvplus.pro</h2>
83
84      <div id="file_attr">
85        <dl>
86        </dl>
87      </div>
88
89      <div id="file_comments"></div>
90
91     
92
93     
94
95     
96
97     
98
99      <div id="routine_details">
100       
101
102        <div class="routine_details" id="_tvplus">
103
104          <h2><a class="top" href="#container">top</a>tvplus </h2>
105       
106          <p class="header">
107            tvplus<span class="result">, <a href="#_tvplus_param_z2d">z2d</a>, <a href="#_tvplus_param_cellsize">cellsize</a></span>, <a href="#_tvplus_keyword_BOTTOM">BOTTOM</a>=<span class="result">BOTTOM</span>, <a href="#_tvplus_keyword_C_MASK">C_MASK</a>=<span class="result">C_MASK</span>, <a href="#_tvplus_keyword_C_NAN">C_NAN</a>=<span class="result">C_NAN</span>, <a href="#_tvplus_keyword_WINDOW">WINDOW</a>=<span class="result">WINDOW</span>, <a href="#_tvplus_keyword_MIN">MIN</a>=<span class="result">MIN</span>, <a href="#_tvplus_keyword_MAX">MAX</a>=<span class="result">MAX</span>, <a href="#_tvplus_keyword_MASK">MASK</a>=<span class="result">MASK</span>, <a href="#_tvplus_keyword_OFFSET">OFFSET</a>=<span class="result">OFFSET</span>, <a href="#_tvplus_keyword_NOUSEINFOS">NOUSEINFOS</a>=<span class="result">NOUSEINFOS</span>, <a href="#_tvplus_keyword_NCOLORS">NCOLORS</a>=<span class="result">NCOLORS</span>, <a href="#_tvplus_keyword_NOINTERP">NOINTERP</a>=<span class="result">NOINTERP</span>, <a href="#_tvplus_keyword__EXTRA">_EXTRA</a>=<span class="result">_EXTRA</span></p>
108       
109          <div class="comments">
110 NAME: tvplus
111
112 PURPOSE: enhanced version of tvscl
113
114 CATEGORY: quick exploration of 2D arrays
115
116 CALLING SEQUENCE: tvplus,z2d [,cellsize]
117
118 INPUTS:
119
120    z2d: 2D array to visualize
121
122    cellsize: (optional) this is the size (in pixel) of the square
123    representing 1 array element. By default, this size is computed
124    automatically in order that the size of the plotting window do
125    not exceed the screen size. If the user specify a large value
126    of cellsize that forces tvplus to create a window larger than
127    the screen, a "scrolling window" will be displayed instead of a
128    regular window. Unfortunately the nice fonctionnalities of tvplus
129    are not coded for "scrolling window" case...
130
131 KEYWORD PARAMETERS:
132
133       BOTTOM: The lowest color index of the colors to be loaded in
134       the bar. default is 0.
135
136       C_NAN: The color number that should be used for the NaN values.
137       default value is !d.n_colors < 255
138
139       C_MASK: The color number that should be used for the mask values.
140       default value is 0
141
142       OFFSET: 2 elements vector used by tvplus itself when shoing zoom.
143       It is used to shift the ranges of xaxis and yaxis.
144       For example: tvplus,sst[x1:x2,y1:y2],offest=[x1,y1]
145
146       MASK: The mask value. Note that if abs(mask) < 1.e6, then the
147       exact value of the mask is used to find the maskwd point.
148       if abs(mask) > 1.e6, the test to find the masked value is ge
149       abs(mask)/10. This is necessary to avoid the rounding errors
150
151       MIN and MAX: scalars used to specify the min and max values
152       of the color bar. default is from 0 to !d.n_colors < 255
153
154       NCOLORS:  This is the number of colors in the color
155       bar. default is !d.n_colors<255 -1
156
157       NOINTERP: used this keyword if you don't whant that the values
158       are interpolated between 0 (or min) and !d.n_colors < 255 (or max).
159       This can be for example usefull when working on byte type arrays.
160
161       NOUSEINFOS: activite to supress the printed message explaining
162       how to use tvplus
163
164        WINDOW: Number of the window used to display the array values.
165       default is window number 0.
166
167 OUTPUTS: no (except the printed finformations, see below)
168
169 COMMON BLOCKS: no
170
171 SIDE EFFECTS:
172
173 use your mouse to scan the array values...
174     left button  : mouse position and associated array value
175     middle button: use it twice to define a zoom box
176     right button : quit
177
178 RESTRICTIONS: the nice fonctionnalities of tvplus are not coded
179               for "scrolling window" case...
180
181 EXAMPLE:  IDL> tvplus, dist(100)
182</div>
183
184         
185
186         
187            <h3>Parameters</h3>
188       
189           
190            <h4 id="_tvplus_param_z2d">z2d&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
191             
192             
193             
194             
195             
196             
197             
198             
199            </h4>
200       
201          <div class="comments"></div>
202           
203            <h4 id="_tvplus_param_cellsize">cellsize&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
204             
205             
206             
207             
208             
209             
210             
211             
212            </h4>
213       
214          <div class="comments"></div>
215           
216
217         
218
219         
220
221            <h3>Keywords</h3>
222           
223            <h4 id="_tvplus_keyword_BOTTOM">BOTTOM&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
224             
225             
226             
227             
228             
229             
230             
231             
232            </h4>
233       
234            <div class="comments"></div>
235           
236            <h4 id="_tvplus_keyword_C_MASK">C_MASK&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
237             
238             
239             
240             
241             
242             
243             
244             
245            </h4>
246       
247            <div class="comments"></div>
248           
249            <h4 id="_tvplus_keyword_C_NAN">C_NAN&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
250             
251             
252             
253             
254             
255             
256             
257             
258            </h4>
259       
260            <div class="comments"></div>
261           
262            <h4 id="_tvplus_keyword_WINDOW">WINDOW&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
263             
264             
265             
266             
267             
268             
269             
270             
271            </h4>
272       
273            <div class="comments"></div>
274           
275            <h4 id="_tvplus_keyword_MIN">MIN&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
276             
277             
278             
279             
280             
281             
282             
283             
284            </h4>
285       
286            <div class="comments"></div>
287           
288            <h4 id="_tvplus_keyword_MAX">MAX&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
289             
290             
291             
292             
293             
294             
295             
296             
297            </h4>
298       
299            <div class="comments"></div>
300           
301            <h4 id="_tvplus_keyword_MASK">MASK&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
302             
303             
304             
305             
306             
307             
308             
309             
310            </h4>
311       
312            <div class="comments"></div>
313           
314            <h4 id="_tvplus_keyword_OFFSET">OFFSET&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
315             
316             
317             
318             
319             
320             
321             
322             
323            </h4>
324       
325            <div class="comments"></div>
326           
327            <h4 id="_tvplus_keyword_NOUSEINFOS">NOUSEINFOS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
328             
329             
330             
331             
332             
333             
334             
335             
336            </h4>
337       
338            <div class="comments"></div>
339           
340            <h4 id="_tvplus_keyword_NCOLORS">NCOLORS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
341             
342             
343             
344             
345             
346             
347             
348             
349            </h4>
350       
351            <div class="comments"></div>
352           
353            <h4 id="_tvplus_keyword_NOINTERP">NOINTERP&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
354             
355             
356             
357             
358             
359             
360             
361             
362            </h4>
363       
364            <div class="comments"></div>
365           
366            <h4 id="_tvplus_keyword__EXTRA">_EXTRA&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
367             
368             
369             
370             
371             
372             
373             
374             
375            </h4>
376       
377            <div class="comments"></div>
378           
379         
380
381         
382         
383         
384         
385         
386         
387         
388         
389         
390         
391         
392         
393       
394         
395         
396         
397         
398         
399         
400         
401       
402         
403       
404        </div>
405       
406      </div>
407
408     
409
410      <div id="tagline">Produced by IDLdoc 2.0.</div>
411
412    </div>
413
414  </body>
415</html>
Note: See TracBrowser for help on using the repository browser.