[GRASS-SVN] r61777 - grass/branches/develbranch_6/raster/r.in.xyz

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Aug 29 16:19:51 PDT 2014


Author: hamish
Date: 2014-08-29 16:19:51 -0700 (Fri, 29 Aug 2014)
New Revision: 61777

Modified:
   grass/branches/develbranch_6/raster/r.in.xyz/main.c
Log:
cut back clicker update frequency to a more human observable value (merge from trunk)

Modified: grass/branches/develbranch_6/raster/r.in.xyz/main.c
===================================================================
--- grass/branches/develbranch_6/raster/r.in.xyz/main.c	2014-08-29 23:16:59 UTC (rev 61776)
+++ grass/branches/develbranch_6/raster/r.in.xyz/main.c	2014-08-29 23:19:51 UTC (rev 61777)
@@ -604,7 +604,7 @@
 	while (0 != G_getl2(buff, BUFFSIZE - 1, in_fp)) {
 	    line++;
 
-	    if (line % 10000 == 0) {	/* mod for speed */
+	    if (line % 100000 == 0) {	/* mod for speed */
 		if (!can_seek)
 		    G_clicker();
 		else if (line < estimated_lines)



More information about the grass-commit mailing list