Browse Source

i.smap: larger default block size for speed

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@60954 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 11 years ago
parent
commit
7dc91e5800
2 changed files with 2 additions and 2 deletions
  1. 1 1
      imagery/i.smap/i.smap.html
  2. 1 1
      imagery/i.smap/parse.c

+ 1 - 1
imagery/i.smap/i.smap.html

@@ -63,7 +63,7 @@ This signature file is produced by the program
 <dt><b>blocksize=</b><em>value</em> 
 <dt><b>blocksize=</b><em>value</em> 
 
 
 <dd>size of submatrix to process at one time<br>
 <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
 This option specifies the size of the "window" to be used when
 reading the image data. 
 reading the image data. 
 
 

+ 1 - 1
imagery/i.smap/parse.c

@@ -37,7 +37,7 @@ int parse(int argc, char *argv[], struct parms *parms)
     blocksize->description = _("Size of submatrix to process at one time");
     blocksize->description = _("Size of submatrix to process at one time");
     blocksize->required = NO;
     blocksize->required = NO;
     blocksize->type = TYPE_INTEGER;
     blocksize->type = TYPE_INTEGER;
-    blocksize->answer = "128";
+    blocksize->answer = "1024";
 
 
     ml = G_define_flag();
     ml = G_define_flag();
     ml->key = 'm';
     ml->key = 'm';