瀏覽代碼

r.li manual: North Carolina example added

git-svn-id: https://svn.osgeo.org/grass/grass/branches/releasebranch_7_0@61814 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 10 年之前
父節點
當前提交
9d1d5b3017

+ 15 - 0
raster/r.li/r.li.dominance/r.li.dominance.html

@@ -40,6 +40,21 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.dominance input=forests conf=movwindow7 out=forests_dominance_mov7
 r.univar forests_dominance_mov7
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.dominance input=forests conf=movwindow7 out=forests_dominance_mov7
+
+# verify
+r.univar forests_dominance_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_dominance_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>

+ 15 - 0
raster/r.li/r.li.edgedensity/r.li.edgedensity.html

@@ -61,6 +61,21 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.edgedensity input=forests conf=movwindow7 out=forests_edgedens_mov7
 r.univar forests_edgedens_mov7
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.edgedensity input=forests conf=movwindow7 out=forests_edgedensity_mov7
+
+# verify
+r.univar forests_edgedensity_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_edgedensity_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>

+ 15 - 0
raster/r.li/r.li.mpa/r.li.mpa.html

@@ -48,6 +48,21 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.mpa input=forests conf=movwindow7 out=forests_mpa_mov7
 r.univar forests_mpa_mov7
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.mpa input=forests conf=movwindow7 out=forests_mpa_mov7
+
+# verify
+r.univar forests_mpa_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_mpa_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>

+ 15 - 0
raster/r.li/r.li.mps/r.li.mps.html

@@ -50,6 +50,21 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.mps input=forests conf=movwindow7 out=forests_mps_mov7
 r.univar forests_mps_mov7
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.mps input=forests conf=movwindow7 out=forests_mps_mov7
+
+# verify
+r.univar forests_mps_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_mps_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>

+ 15 - 0
raster/r.li/r.li.padcv/r.li.padcv.html

@@ -40,6 +40,21 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.padcv input=forests conf=movwindow7 out=forests_padcv_mov7
 r.univar forests_padcv_mov7
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.padcv input=forests conf=movwindow7 out=forests_padcv_mov7
+
+# verify
+r.univar forests_padcv_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_padcv_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>

+ 15 - 0
raster/r.li/r.li.padrange/r.li.padrange.html

@@ -42,6 +42,21 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.padrange input=forests conf=movwindow7 out=forests_padrange_mov7
 r.univar forests_padrange_mov7
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.padrange input=forests conf=movwindow7 out=forests_padrange_mov7
+
+# verify
+r.univar forests_padrange_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_padrange_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>

+ 15 - 0
raster/r.li/r.li.padsd/r.li.padsd.html

@@ -42,6 +42,21 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.padsd input=forests conf=movwindow7 out=forests_padsd_mov7
 r.univar forests_padsd_mov7
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.padsd input=forests conf=movwindow7 out=forests_padsd_mov7
+
+# verify
+r.univar forests_padsd_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_padsd_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>

+ 15 - 0
raster/r.li/r.li.patchdensity/r.li.patchdensity.html

@@ -53,6 +53,21 @@ d.rast.leg forests_p_dens7
 r.to.vect forests out=forests feature=area
 d.vect forests type=boundary
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.patchdensity input=forests conf=movwindow7 out=forests_patchdensity_mov7
+
+# verify
+r.univar forests_patchdensity_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_patchdensity_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>

+ 15 - 0
raster/r.li/r.li.patchnum/r.li.patchnum.html

@@ -36,6 +36,21 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.patchnum input=forests conf=movwindow7 out=forests_patchnum_mov7
 r.univar forests_patchnum_mov7
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.patchnum input=forests conf=movwindow7 out=forests_patchnum_mov7
+
+# verify
+r.univar forests_patchnum_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_patchnum_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>

+ 15 - 0
raster/r.li/r.li.pielou/r.li.pielou.html

@@ -39,6 +39,21 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.pielou input=forests conf=movwindow7 out=forests_pielou_mov7
 r.univar forests_pielou_mov7
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.pielou input=forests conf=movwindow7 out=forests_pielou_mov7
+
+# verify
+r.univar forests_pielou_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_pielou_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>

+ 15 - 0
raster/r.li/r.li.renyi/r.li.renyi.html

@@ -42,6 +42,21 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.renyi input=forests conf=movwindow7 out=forests_renyi_mov7_a06 alpha=0.6
 r.univar forests_renyi_mov7_a06
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.renyi input=forests conf=movwindow7 out=forests_renyi_mov7
+
+# verify
+r.univar forests_renyi_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_renyi_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>

+ 14 - 3
raster/r.li/r.li.richness/r.li.richness.html

@@ -42,23 +42,34 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.richness input=forests conf=movwindow7 out=forests_richness_mov7
 r.univar forests_richness_mov7
 </pre></div>
+<p>
 
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.richness input=forests conf=movwindow7 out=forests_richness_mov7
 
-<h2>SEE ALSO</h2>
+# verify
+r.univar forests_richness_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_richness_mov7
+d.vect forests type=boundary
+</pre></div>
 
+<h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>
 <a href="g.gui.rlisetup.html">g.gui.rlisetup</a>
 </em>
 
-
 <h2>REFERENCES</h2>
 
 McGarigal, K., and B. J. Marks. 1995. FRAGSTATS: spatial pattern
 analysis program for quantifying landscape structure. USDA For. Serv.
 Gen. Tech. Rep. PNW-351. (<a href="http://treesearch.fs.fed.us/pubs/3064">PDF</a>)
 
-
 <h2>AUTHORS</h2>
 
 Serena Pallecchi student of Computer Science University of Pisa (Italy).<br>

+ 15 - 0
raster/r.li/r.li.shannon/r.li.shannon.html

@@ -40,6 +40,21 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.shannon input=forests conf=movwindow7 out=forests_shannon_mov7
 r.univar forests_shannon_mov7
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.shannon input=forests conf=movwindow7 out=forests_shannon_mov7
+
+# verify
+r.univar forests_shannon_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_shannon_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>

+ 15 - 0
raster/r.li/r.li.shape/r.li.shape.html

@@ -41,6 +41,21 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.shape input=forests conf=movwindow7 out=forests_shape_mov7
 r.univar forests_shape_mov7
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.shape input=forests conf=movwindow7 out=forests_shape_mov7
+
+# verify
+r.univar forests_shape_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_shape_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>

+ 15 - 0
raster/r.li/r.li.simpson/r.li.simpson.html

@@ -39,6 +39,21 @@ r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.simpson input=forests conf=movwindow7 out=forests_simpson_mov7
 r.univar forests_simpson_mov7
 </pre></div>
+<p>
+
+Forest map (North Carolina sample dataset) example:
+<div class="code"><pre>
+g.region rast=landclass96 -p
+r.mapcalc "forests = if(landclass96 == 5, 1, null() )"
+r.li.simpson input=forests conf=movwindow7 out=forests_simpson_mov7
+
+# verify
+r.univar forests_simpson_mov7
+r.to.vect input=forests output=forests type=area
+d.mon wx0
+d.rast forests_simpson_mov7
+d.vect forests type=boundary
+</pre></div>
 
 <h2>SEE ALSO</h2>
 <em>