[GRASS-SVN] r62293 - in grass/branches/develbranch_6/raster/r.li: r.li.dominance r.li.edgedensity r.li.mpa r.li.mps r.li.padcv r.li.padrange r.li.padsd r.li.patchdensity r.li.patchnum r.li.pielou r.li.renyi r.li.richness r.li.shannon r.li.shape r.li.simpson

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Oct 19 14:22:41 PDT 2014


Author: neteler
Date: 2014-10-19 14:22:41 -0700 (Sun, 19 Oct 2014)
New Revision: 62293

Modified:
   grass/branches/develbranch_6/raster/r.li/r.li.dominance/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.edgedensity/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.mpa/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.mps/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.padcv/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.padrange/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.padsd/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.patchdensity/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.patchnum/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.pielou/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.renyi/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.richness/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.shannon/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.shape/description.html
   grass/branches/develbranch_6/raster/r.li/r.li.simpson/description.html
Log:
r.li manual: North Carolina example added

Modified: grass/branches/develbranch_6/raster/r.li/r.li.dominance/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.dominance/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.dominance/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -44,7 +44,22 @@
 r.li.dominance map=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 map=forests conf=movwindow7 out=forests_dominance_mov7
+
+# verify
+r.univar forests_dominance_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_dominance_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.edgedensity/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.edgedensity/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.edgedensity/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -65,7 +65,22 @@
 r.li.edgedensity map=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 map=forests conf=movwindow7 out=forests_edgedensity_mov7
+
+# verify
+r.univar forests_edgedensity_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_edgedensity_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.mpa/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.mpa/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.mpa/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -47,7 +47,22 @@
 r.li.mpa map=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 map=forests conf=movwindow7 out=forests_mpa_mov7
+
+# verify
+r.univar forests_mpa_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_mpa_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.mps/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.mps/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.mps/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -55,7 +55,22 @@
 r.li.mps map=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 map=forests conf=movwindow7 out=forests_mps_mov7
+
+# verify
+r.univar forests_mps_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_mps_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.padcv/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.padcv/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.padcv/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -45,7 +45,22 @@
 r.li.padcv map=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 map=forests conf=movwindow7 out=forests_padcv_mov7
+
+# verify
+r.univar forests_padcv_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_padcv_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.padrange/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.padrange/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.padrange/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -47,7 +47,22 @@
 r.li.padrange map=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 map=forests conf=movwindow7 out=forests_padrange_mov7
+
+# verify
+r.univar forests_padrange_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_padrange_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.padsd/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.padsd/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.padsd/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -46,8 +46,24 @@
 g.region rast=landcover.30m -p
 r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
 r.li.padsd map=forests conf=movwindow7 out=forests_padsd_mov7
-r.univar forests_padsd_mov7</pre></div>
+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 map=forests conf=movwindow7 out=forests_padsd_mov7
+
+# verify
+r.univar forests_padsd_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_padsd_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.patchdensity/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.patchdensity/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.patchdensity/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -59,7 +59,22 @@
 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 map=forests conf=movwindow7 out=forests_patchdensity_mov7
+
+# verify
+r.univar forests_patchdensity_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_patchdensity_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.patchnum/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.patchnum/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.patchnum/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -40,7 +40,22 @@
 r.li.patchnum map=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 map=forests conf=movwindow7 out=forests_patchnum_mov7
+
+# verify
+r.univar forests_patchnum_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_patchnum_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.pielou/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.pielou/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.pielou/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -43,7 +43,22 @@
 r.li.pielou map=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 map=forests conf=movwindow7 out=forests_pielou_mov7
+
+# verify
+r.univar forests_pielou_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_pielou_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.renyi/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.renyi/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.renyi/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -46,7 +46,22 @@
 r.li.renyi map=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 map=forests conf=movwindow7 out=forests_renyi_mov7
+
+# verify
+r.univar forests_renyi_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_renyi_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.richness/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.richness/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.richness/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -45,10 +45,23 @@
 r.li.richness map=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 map=forests conf=movwindow7 out=forests_richness_mov7
 
+# verify
+r.univar forests_richness_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+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="r.li.setup.html">r.li.setup</a>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.shannon/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.shannon/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.shannon/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -45,7 +45,22 @@
 r.li.shannon map=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 map=forests conf=movwindow7 out=forests_shannon_mov7
+
+# verify
+r.univar forests_shannon_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_shannon_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.shape/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.shape/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.shape/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -46,7 +46,22 @@
 r.li.shape map=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 map=forests conf=movwindow7 out=forests_shape_mov7
+
+# verify
+r.univar forests_shape_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_shape_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>

Modified: grass/branches/develbranch_6/raster/r.li/r.li.simpson/description.html
===================================================================
--- grass/branches/develbranch_6/raster/r.li/r.li.simpson/description.html	2014-10-19 20:43:34 UTC (rev 62292)
+++ grass/branches/develbranch_6/raster/r.li/r.li.simpson/description.html	2014-10-19 21:22:41 UTC (rev 62293)
@@ -44,7 +44,22 @@
 r.li.simpson map=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 map=forests conf=movwindow7 out=forests_simpson_mov7
+
+# verify
+r.univar forests_simpson_mov7
+r.to.vect input=forests output=forests feature=area
+d.mon x0
+d.rast forests_simpson_mov7
+d.vect forests type=boundary
+</pre></div>
+
 <h2>SEE ALSO</h2>
 <em>
 <a href="r.li.html">r.li</a> - package overview<br>



More information about the grass-commit mailing list