ExtractValueToPoints and SingleOutputMapAlgebra cause a crash when run consecutively.
Last Published: August 25, 2014No Product Found
Bug ID Number
NIM059668
Submitted
August 3, 2010
Last Modified
June 5, 2024
Applies to
No Product Found
Version found
10.0
Version Fixed
10.1
Status
Fixed
The bug has been fixed. See the Version Fixed and Additional Information, if applicable, for more information.
Workaround
10 Final Workaround1. if possible use the call the sequence of geoprocessing tools, instead of SOMA 2. UPdate to use MOMA3. translate old map algebra syntax into new Map Algebra using arcpy in scripting or the new Raster calculator.for example9.3:out = gp.SingleOutputMapAlgebra( "EXP(-7.48097564815 + SUM(ras01,ras02,ras03))","outRaster")10:out = EXP(-7.48097564815 +(ras01 + ras02 + ras03)) #(Note: ras0n = raster object)out.save("outRaster")