[GRASS-SVN] r61001 - grass/branches/releasebranch_6_4/imagery/i.smap/shapiro

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Jun 26 15:25:51 PDT 2014


Author: neteler
Date: 2014-06-26 15:25:51 -0700 (Thu, 26 Jun 2014)
New Revision: 61001

Modified:
   grass/branches/releasebranch_6_4/imagery/i.smap/shapiro/description.html
   grass/branches/releasebranch_6_4/imagery/i.smap/shapiro/parse.c
Log:
i.smap: larger default block size for speed (backport of r60956)

Modified: grass/branches/releasebranch_6_4/imagery/i.smap/shapiro/description.html
===================================================================
--- grass/branches/releasebranch_6_4/imagery/i.smap/shapiro/description.html	2014-06-26 21:54:34 UTC (rev 61000)
+++ grass/branches/releasebranch_6_4/imagery/i.smap/shapiro/description.html	2014-06-26 22:25:51 UTC (rev 61001)
@@ -73,7 +73,7 @@
 <dt><b>blocksize=</b><em>value</em> 
 
 <dd>size of submatrix to process at one time<br>
-default: 128<br>
+default: 1024<br>
 This option specifies the size of the "window" to be used when
 reading the image data. 
 

Modified: grass/branches/releasebranch_6_4/imagery/i.smap/shapiro/parse.c
===================================================================
--- grass/branches/releasebranch_6_4/imagery/i.smap/shapiro/parse.c	2014-06-26 21:54:34 UTC (rev 61000)
+++ grass/branches/releasebranch_6_4/imagery/i.smap/shapiro/parse.c	2014-06-26 22:25:51 UTC (rev 61001)
@@ -31,7 +31,7 @@
     blocksize->description = _("Size of submatrix to process at one time");
     blocksize->required = NO;
     blocksize->type = TYPE_INTEGER;
-    blocksize->answer = "128";
+    blocksize->answer = "1024";
 
     ml = G_define_flag();
     ml->key = 'm';



More information about the grass-commit mailing list