~ubuntu-branches/ubuntu/vivid/grass/vivid-proposed

« back to all changes in this revision

Viewing changes to raster/r.li/r.li.patchnum/r.li.patchnum.html

  • Committer: Package Import Robot
  • Author(s): Bas Couwenberg
  • Date: 2015-02-20 23:12:08 UTC
  • mfrom: (8.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20150220231208-1u6qvqm84v430b10
Tags: 7.0.0-1~exp1
* New upstream release.
* Update python-ctypes-ternary.patch to use if/else instead of and/or.
* Drop check4dev patch, rely on upstream check.
* Add build dependency on libpq-dev to grass-dev for libpq-fe.h.
* Drop patches applied upstream, refresh remaining patches.
* Update symlinks for images switched from jpg to png.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<h2>DESCRIPTION</h2>
 
2
 
 
3
<em>r.li.patchnum</em> calculates the "patch number index" as:<br>
 
4
<I> f(sample_area)= Patch_Number </I><br>
 
5
 
 
6
<p>
 
7
This index is calculated using a 4 neighbour algorithm, diagonal cells 
 
8
are ignored when tracing a patch.
 
9
 
 
10
<h2>NOTES</h2>
 
11
 
 
12
Do not use absolute path names for the <b>config</b> and <b>output</b>
 
13
file/map parameters.
 
14
 
 
15
If the "moving window" method was selected in <b>g.gui.rlisetup</b>, then the
 
16
output will be a raster map, otherwise an ASCII file will be generated in
 
17
the folder <tt>C:\Users\userxy\AppData\Roaming\GRASS7\r.li\output\</tt>
 
18
(MS-Windows) or <tt>$HOME/.grass7/r.li/output/</tt> (GNU/Linux).
 
19
<p>
 
20
If the sample area contains only NULL values then it is considered to 
 
21
have zero patches. <br>
 
22
 
 
23
<h2>EXAMPLES</h2>
 
24
To calculate patch number index on map <em>my_map</em>, using
 
25
<em>my_conf</em> configuration file (previously defined with
 
26
<em>g.gui.rlisetup</em>) and saving results in <em>my_out</em>, run:
 
27
<div class="code"><pre>
 
28
r.li.patchnum input=my_map conf=my_conf out=my_out
 
29
</pre></div>
 
30
<p>
 
31
 
 
32
Forest map (Spearfish sample dataset) example:
 
33
<div class="code"><pre>
 
34
g.region raster=landcover.30m -p
 
35
r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 
36
r.li.patchnum input=forests conf=movwindow7 out=forests_patchnum_mov7
 
37
r.univar forests_patchnum_mov7
 
38
</pre></div>
 
39
<p>
 
40
 
 
41
Forest map (North Carolina sample dataset) example:
 
42
<div class="code"><pre>
 
43
g.region raster=landclass96 -p
 
44
r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
 
45
r.li.patchnum input=forests conf=movwindow7 out=forests_patchnum_mov7
 
46
 
 
47
# verify
 
48
r.univar forests_patchnum_mov7
 
49
r.to.vect input=forests output=forests type=area
 
50
d.mon wx0
 
51
d.rast forests_patchnum_mov7
 
52
d.vect forests type=boundary
 
53
</pre></div>
 
54
 
 
55
<h2>SEE ALSO</h2>
 
56
<em>
 
57
<a href="r.li.html">r.li</a> - package overview<br>
 
58
<a href="g.gui.rlisetup.html">g.gui.rlisetup</a>
 
59
</em>
 
60
 
 
61
<h2>REFERENCES</h2>
 
62
McGarigal, K., and B. J. Marks. 1995. FRAGSTATS: spatial pattern
 
63
analysis program for quantifying landscape structure. USDA For. Serv.
 
64
Gen. Tech. Rep. PNW-351. (<a href="http://treesearch.fs.fed.us/pubs/3064">PDF</a>)
 
65
 
 
66
<h2>AUTHORS</h2>
 
67
Michael Shapiro - CERL (patch identification)<br>
 
68
Markus Metz (statistics)
 
69
 
 
70
<p>
 
71
<i>Last changed: $Date: 2014-12-19 22:55:37 +0100 (Fri, 19 Dec 2014) $</i>