Hello Dan,
I have tried the Cell Statistics with the same result. One thing that's interesting to me is that I can't get the SomaExp line to print in order to determine if that line is working and I'm uncertain how to figure out just where exactly this code is breaking. Also, I am testing this code on a small sub-sample (only 8 grids that are under 2mb in total size). Please see revised code (thanks to guidance from Rick Momsen):
#Script to list each output raster and sum them
import arcgisscripting, time
#set up
gp = arcgisscripting.create(9.3)
gp.CheckOutExtension("Spatial")
gp.workspace = "C:\\test\\results"
outputFolder = "C:\\test\\final"
try:
rasterList = gp.ListRasters("","GRID")
somaExp = " "
for raster in rasterList:
somaExp = somaExp + raster + ";"
#print somaExp
gpsa = outputFolder + "\\"
gp.CellStatistics_sa(somaExp[:-1], gpsa, "SUM")
except:
print "Nice try, but it didn't work."
time.sleep(15) #give's you time to see the error
Finally, I found reference in the forums to version issues of python and arcGIS, and wonder if I may be having issues importing arcscripting. I'm uncertain how to check if the import is working or not.
Thanks again for any advice or thoughts. ALL are appreciated and helping me to get caught up on Python.