[GRASS-SVN] r60954 - grass/trunk/imagery/i.smap
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Jun 25 04:53:32 PDT 2014
Author: neteler
Date: 2014-06-25 04:53:32 -0700 (Wed, 25 Jun 2014)
New Revision: 60954
Modified:
grass/trunk/imagery/i.smap/i.smap.html
grass/trunk/imagery/i.smap/parse.c
Log:
i.smap: larger default block size for speed
Modified: grass/trunk/imagery/i.smap/i.smap.html
===================================================================
--- grass/trunk/imagery/i.smap/i.smap.html 2014-06-25 11:49:39 UTC (rev 60953)
+++ grass/trunk/imagery/i.smap/i.smap.html 2014-06-25 11:53:32 UTC (rev 60954)
@@ -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/trunk/imagery/i.smap/parse.c
===================================================================
--- grass/trunk/imagery/i.smap/parse.c 2014-06-25 11:49:39 UTC (rev 60953)
+++ grass/trunk/imagery/i.smap/parse.c 2014-06-25 11:53:32 UTC (rev 60954)
@@ -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