[GRASS-SVN] r37126 -
grass/branches/releasebranch_6_4/imagery/i.atcorr
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun May 10 15:46:21 EDT 2009
Author: neteler
Date: 2009-05-10 15:46:21 -0400 (Sun, 10 May 2009)
New Revision: 37126
Modified:
grass/branches/releasebranch_6_4/imagery/i.atcorr/main.cpp
Log:
increase TI cache
Modified: grass/branches/releasebranch_6_4/imagery/i.atcorr/main.cpp
===================================================================
--- grass/branches/releasebranch_6_4/imagery/i.atcorr/main.cpp 2009-05-10 19:46:03 UTC (rev 37125)
+++ grass/branches/releasebranch_6_4/imagery/i.atcorr/main.cpp 2009-05-10 19:46:21 UTC (rev 37126)
@@ -131,7 +131,7 @@
{
enum TICacheSize
{
- MAX_TIs = 128 /* this value is a guess, increase it if in general more categories are used */
+ MAX_TIs = 1024 /* this value is a guess, increase it if in general more categories are used */
};
TransformInput tis[MAX_TIs];
float alts[MAX_TIs];
@@ -167,7 +167,7 @@
{
enum TIMapSize
{
- MAX_TICs = 128 /* this value is a guess. It means that 1024 TI's will be the max combinations of vis/alt pairs */
+ MAX_TICs = 1024 /* this value is a guess. It means that 1024 TI's will be the max combinations of vis/alt pairs */
};
TICache tic[MAX_TICs]; /* array of TICaches */
More information about the grass-commit
mailing list