~ubuntu-branches/ubuntu/wily/grass/wily

« back to all changes in this revision

Viewing changes to raster/r.to.rast3/r.to.rast3.html

Tags: 7.0.0~rc1+ds1-1~exp1
* New upstream release candidate.
* Repack upstream tarball, remove precompiled Python objects.
* Add upstream metadata.
* Update gbp.conf and Vcs-Git URL to use the experimental branch.
* Update watch file for GRASS 7.0.
* Drop build dependencies for Tcl/Tk, add build dependencies:
  python-numpy, libnetcdf-dev, netcdf-bin, libblas-dev, liblapack-dev
* Update Vcs-Browser URL to use cgit instead of gitweb.
* Update paths to use grass70.
* Add configure options: --with-netcdf, --with-blas, --with-lapack,
  remove --with-tcltk-includes.
* Update patches for GRASS 7.
* Update copyright file, changes:
  - Update copyright years
  - Group files by license
  - Remove unused license sections
* Add patches for various typos.
* Fix desktop file with patch instead of d/rules.
* Use minimal dh rules.
* Bump Standards-Version to 3.9.6, no changes.
* Use dpkg-maintscript-helper to replace directories with symlinks.
  (closes: #776349)
* Update my email to use @debian.org address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<h2>DESCRIPTION</h2>
 
2
 
 
3
Converts 2D raster map(s) into one RASTER3D raster map. 
 
4
If the 2d and 3d region settings are different,
 
5
the 2d resolution will be adjust to the 3d resolution.
 
6
 
 
7
<center>
 
8
<img src="r.to.rast3.png" border="0"><br>
 
9
<table border="0" width="700">
 
10
<tr><td><center>
 
11
<i>How r.to.rast3 works</i>
 
12
</center></td></tr>
 
13
</table>
 
14
</center>
 
15
 
 
16
 
 
17
<h2>NOTES</h2>
 
18
Every 2D raster map is copied as one slice to the RASTER3D raster map. Slices
 
19
are counted from bottom to the top, so the bottom slice has to be number 1. 
 
20
<br><br>
 
21
If fewer 2D raster maps are provided than depths, the last give 2D map is
 
22
used to fill up the  RASTER3D slices to the top.
 
23
 
 
24
<h2>EXAMPLES</h2>
 
25
 
 
26
<h3>EXAMPLE 1</h3>
 
27
 
 
28
This example shows how to convert 6 maps into one 3d map with 6 layers.
 
29
<br>
 
30
 
 
31
<div class="code"><pre>
 
32
# Mapset data in Location slovakia3d
 
33
r.to.rast3 input=prec_1,prec_2,prec_3,prec_4,prec_5,prec_6 output=new_3dmap
 
34
</pre></div>
 
35
 
 
36
<h3>EXAMPLE 2</h3>
 
37
This example shows how to convert 3 maps into one 3d map with 6 layers.
 
38
<br>
 
39
 
 
40
<div class="code"><pre>
 
41
# Mapset data in Location slovakia3d
 
42
r.to.rast3 input=prec_1,prec_2,prec_3 output=new_3dmap
 
43
</pre></div>                                                                           
 
44
 
 
45
<h2>SEE ALSO</h2>
 
46
 
 
47
<em>
 
48
<a href="g.region.html">g.region</a>,
 
49
<a href="r3.to.rast.html">r3.to.rast</a>,
 
50
<a href="r.to.rast3elev.html">r.to.rast3elev</a>
 
51
</em>
 
52
 
 
53
<h2>AUTHOR</h2>
 
54
Soeren Gebbert
 
55
 
 
56
<p><i>Last changed: $Date: 2013-03-26 21:28:19 +0100 (Tue, 26 Mar 2013) $</i>