[GRASS-SVN] r37125 - grass/branches/develbranch_6/imagery/i.atcorr
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun May 10 15:46:03 EDT 2009
Author: neteler
Date: 2009-05-10 15:46:03 -0400 (Sun, 10 May 2009)
New Revision: 37125
Modified:
grass/branches/develbranch_6/imagery/i.atcorr/main.cpp
Log:
increase TI cache
Modified: grass/branches/develbranch_6/imagery/i.atcorr/main.cpp
===================================================================
--- grass/branches/develbranch_6/imagery/i.atcorr/main.cpp 2009-05-10 19:45:19 UTC (rev 37124)
+++ grass/branches/develbranch_6/imagery/i.atcorr/main.cpp 2009-05-10 19:46:03 UTC (rev 37125)
@@ -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