[GRASS-SVN] r61778 - grass/branches/releasebranch_6_4/raster/r.in.xyz
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Aug 29 16:23:50 PDT 2014
Author: hamish
Date: 2014-08-29 16:23:50 -0700 (Fri, 29 Aug 2014)
New Revision: 61778
Modified:
grass/branches/releasebranch_6_4/raster/r.in.xyz/main.c
Log:
cut back clicker update frequency to a more human observable value (merge from trunk)
Modified: grass/branches/releasebranch_6_4/raster/r.in.xyz/main.c
===================================================================
--- grass/branches/releasebranch_6_4/raster/r.in.xyz/main.c 2014-08-29 23:19:51 UTC (rev 61777)
+++ grass/branches/releasebranch_6_4/raster/r.in.xyz/main.c 2014-08-29 23:23:50 UTC (rev 61778)
@@ -579,7 +579,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