[GRASS-SVN] r68175 - in grass/trunk: raster/r.cost raster/r.stream.extract raster/r.walk raster/r.watershed/ram vector/v.net.centrality
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Mar 28 14:23:39 PDT 2016
Author: neteler
Date: 2016-03-28 14:23:39 -0700 (Mon, 28 Mar 2016)
New Revision: 68175
Modified:
grass/trunk/raster/r.cost/main.c
grass/trunk/raster/r.stream.extract/r.stream.extract.html
grass/trunk/raster/r.walk/main.c
grass/trunk/raster/r.watershed/ram/do_flatarea.c
grass/trunk/vector/v.net.centrality/v.net.centrality.html
Log:
various typo fixed (#2971)
Modified: grass/trunk/raster/r.cost/main.c
===================================================================
--- grass/trunk/raster/r.cost/main.c 2016-03-28 21:23:07 UTC (rev 68174)
+++ grass/trunk/raster/r.cost/main.c 2016-03-28 21:23:39 UTC (rev 68175)
@@ -678,7 +678,7 @@
Rast_get_row(fd, cell2, row, data_type2);
ptr2 = cell2;
for (col = 0; col < ncols; col++) {
- /* Did I understand that concept of cummulative cost map? - (pmx) 12 april 2000 */
+ /* Did I understand that concept of cumulative cost map? - (pmx) 12 april 2000 */
if (!Rast_is_null_value(ptr2, data_type2)) {
double cellval;
Modified: grass/trunk/raster/r.stream.extract/r.stream.extract.html
===================================================================
--- grass/trunk/raster/r.stream.extract/r.stream.extract.html 2016-03-28 21:23:07 UTC (rev 68174)
+++ grass/trunk/raster/r.stream.extract/r.stream.extract.html 2016-03-28 21:23:39 UTC (rev 68175)
@@ -25,7 +25,7 @@
depression map is provided.
<p>
-Option <b>threshold</b> defines the minimum (optionally modifed) flow
+Option <b>threshold</b> defines the minimum (optionally modified) flow
accumulation value that will initiate a new stream. If Montgomery's
method for channel initiation is used, the cell value of the
accumulation input map is multiplied by <tt>(tan(local
Modified: grass/trunk/raster/r.walk/main.c
===================================================================
--- grass/trunk/raster/r.walk/main.c 2016-03-28 21:23:07 UTC (rev 68174)
+++ grass/trunk/raster/r.walk/main.c 2016-03-28 21:23:39 UTC (rev 68175)
@@ -813,7 +813,7 @@
Rast_get_row(fd, cell2, row, data_type2);
ptr2 = cell2;
for (col = 0; col < ncols; col++) {
- /* Did I understand that concept of cummulative cost map? - (pmx) 12 april 2000 */
+ /* Did I understand that concept of cumulative cost map? - (pmx) 12 april 2000 */
if (!Rast_is_null_value(ptr2, data_type2)) {
double cellval;
Modified: grass/trunk/raster/r.watershed/ram/do_flatarea.c
===================================================================
--- grass/trunk/raster/r.watershed/ram/do_flatarea.c 2016-03-28 21:23:07 UTC (rev 68174)
+++ grass/trunk/raster/r.watershed/ram/do_flatarea.c 2016-03-28 21:23:39 UTC (rev 68175)
@@ -6,7 +6,7 @@
* The assignment of drainage direction over flat surfaces in raster
* digital elevation models. J. Hydrol 193, 204-213.
*
- * the method is modifed for speed, only one pass is necessary to get
+ * the method is modified for speed, only one pass is necessary to get
* the gradient away from higher terrain
*
*********************************************************************/
Modified: grass/trunk/vector/v.net.centrality/v.net.centrality.html
===================================================================
--- grass/trunk/vector/v.net.centrality/v.net.centrality.html 2016-03-28 21:23:07 UTC (rev 68174)
+++ grass/trunk/vector/v.net.centrality/v.net.centrality.html 2016-03-28 21:23:39 UTC (rev 68175)
@@ -21,7 +21,7 @@
values (between 0 and 1), each number needs to be divided by <em>N
choose 2=N*(N-1)/2</em> where N is the number of nodes in the
connected component. Computation of eigenvector measure terminates
-if the given number of iterations is reached or the cummulative <em>
+if the given number of iterations is reached or the cumulative <em>
squared</em> error between the successive iterations is less than <b>
error</b>.
More information about the grass-commit
mailing list