[GRASS-SVN] r60955 - grass/branches/releasebranch_7_0/imagery/i.smap

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jun 25 04:53:44 PDT 2014


Author: neteler
Date: 2014-06-25 04:53:43 -0700 (Wed, 25 Jun 2014)
New Revision: 60955

Modified:
   grass/branches/releasebranch_7_0/imagery/i.smap/i.smap.html
   grass/branches/releasebranch_7_0/imagery/i.smap/parse.c
Log:
i.smap: larger default block size for speed

Modified: grass/branches/releasebranch_7_0/imagery/i.smap/i.smap.html
===================================================================
--- grass/branches/releasebranch_7_0/imagery/i.smap/i.smap.html	2014-06-25 11:53:32 UTC (rev 60954)
+++ grass/branches/releasebranch_7_0/imagery/i.smap/i.smap.html	2014-06-25 11:53:43 UTC (rev 60955)
@@ -63,7 +63,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_7_0/imagery/i.smap/parse.c
===================================================================
--- grass/branches/releasebranch_7_0/imagery/i.smap/parse.c	2014-06-25 11:53:32 UTC (rev 60954)
+++ grass/branches/releasebranch_7_0/imagery/i.smap/parse.c	2014-06-25 11:53:43 UTC (rev 60955)
@@ -37,7 +37,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