This file is indexed.

/usr/share/doc/rsl/RSL_volume_to.html is in librsl-doc 1.42-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <meta name="GENERATOR" content="Mozilla/4.5 [en] (X11; U; Linux 2.0.32 i686) [Netscape]">
</head>
<body>
<a href="index.html"><img SRC="rsl.gif" ></a>
<hr>
<h1>
RSL_volume_to...</h1>

<hr>
<h3>
Synopsis</h3>
<b>#include "rsl.h"</b>
<br><b>void RSL_volume_to_gif(<a href="RSL_volume_struct.html">Volume</a>
*v, char *basename, int xdim, int ydim, float range);</b>
<br><b>void RSL_volume_to_pict(<a href="RSL_volume_struct.html">Volume</a>
*v, char *basename, int xdim, int ydim, float range) ;</b>
<br><b>void RSL_volume_to_pgm(<a href="RSL_volume_struct.html">Volume</a>
*v, char *basename, int xdim, int ydim, float range);</b>
<br><b>void RSL_volume_to_ppm(<a href="RSL_volume_struct.html">Volume</a>
*v, char *basename, int xdim, int ydim, float range);</b>
<h3>

<hr>Description</h3>
<b>RSL_volume_to_gif</b>: Given a Volume pointer, <b>v</b>, output a series
of GIF images. Output filenames are <b>basename</b>.00.gif, <b>basename</b>.01.gif,
etc., for the number of sweeps. It calls <a href="RSL_sweep_to.html">RSL_sweep_to_gif</a>
once for each sweep. When making images of velocity data, it may be necessary
to call <a href="RSL_rebin_velocity.html">RSL_rebin_velocity_sweep</a>
to rebin the values from -nyquist to +nyquist.
<p><b>RSL_volume_to_pict</b>: Identical to RSL_volume_to_gif except it
writes PICT files.
<p><b>RSL_volume_to_ppm</b>: Identical to RSL_volume_to_gif except it writes
PPM files.
<p><b>RSL_volume_to_pgm</b>: Identical to RSL_volume_to_gif except it writes
PGM files.
<p>Efficiency note: The functions RSL_volume_to_gif and RSL_volume_to_pict.
and any other output formats that may arrise, all function identically
with the only difference being the output pipe command (ppmtogif, ppmtopict,
etc.). Each routine performs a polar to cartesean mapping via RSL_sweep_to_cart,
then calls the appropriate write function. If you plan to output many image
formats at once, it will be wise to perform the polar to cartesean mapping
once, then call RSL_write_gif, RSL_write_pict, etc. This could be done,
for instance, in a function called RSL_volume_to_pict_and_gif.&nbsp;
<hr>
<h3>
Return value</h3>
None.&nbsp;
<hr>
<h3>
See also</h3>
<a href="RSL_rebin_velocity.html">RSL_rebin_velocity_ray</a>, <a href="RSL_rebin_velocity.html">RSL_rebin_velocity_sweep</a>,
<a href="RSL_rebin_velocity.html">RSL_rebin_velocity_volume</a>,
<br><a href="RSL_sweep_to.html">RSL_sweep_to_gif</a>, <a href="RSL_sweep_to.html">RSL_sweep_to_pict</a>,
<a href="RSL_sweep_to.html">RSL_sweep_to_pgm</a>, <a href="RSL_sweep_to.html">RSL_sweep_to_ppm</a>,
<br><a href="RSL_load_color_table.html">RSL_load_color_table</a>, <a href="RSL_load_color_table.html">RSL_load_green_table</a>,
<a href="RSL_load_color_table.html">RSL_load_red_table</a>, <a href="RSL_load_color_table.html">RSL_load_blue_table</a>,
<br><a href="RSL_load_color_table.html">RSL_load_refl_color_table</a>,
<a href="RSL_load_color_table.html">RSL_load_sw_color_table</a>, <a href="RSL_load_color_table.html">RSL_load_vel_color_table</a>,
<br><a href="RSL_volume_to.html">RSL_volume_to_gif</a>, <a href="RSL_volume_to.html">RSL_volume_to_pict</a>,
<a href="RSL_volume_to.html">RSL_volume_to_pgm</a>, <a href="RSL_volume_to.html">RSL_volume_to_ppm,</a>
<br><a href="RSL_color_table.html">RSL_get_color_table</a>, <a href="RSL_color_table.html">RSL_set_color_table</a>.
<hr>
<p>Author: <a href="john.merritt.html">John H. Merritt</a>
</body>
</html>