-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathv.example.html
49 lines (34 loc) · 1.1 KB
/
v.example.html
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
<h2>DESCRIPTION</h2>
<em>v.example</em> is an example for a GRASS GIS addon. Here comes a short
description of the module.
<p>
New paragraph for more detailed description.
<h2>NOTES</h2>
Rather technical notes are here.
<p>
Description of the algorithm or method
<p>
Hints for usage, e.g. for large maps or a large number of input arguments.
<h2>EXAMPLE</h2>
<h3>Create grid for current region with grid box size of 1000 x 1000</h3>
<div class="code"><pre>
v.example output=tiles box=1000,1000
</pre></div>
<h3>Extract tiles only for a given polygon "poly_aoi"</h3>
<div class="code"><pre>
v.select ainput=tiles atype=area binput=poly_aoi btype=area operator=overlap output=tiles_aoi
</pre></div>
Image with the result
<div align="center" style="margin: 10px">
<a href="v_example.png">
<img src="v_example.png" width="600" height="600" alt="v.example example" border="0">
</a><br>
<i>Figure: Vector map .... something.</i>
</div>
<h2>SEE ALSO</h2>
<em>
<a href="v.mkgrid.html">v.mkgrid</a>,
<a href="g.region.html">g.region</a>
</em>
<h2>AUTHORS</h2>
Name, <a href="https://www.mundialis.de/">mundialis</a>