Hi All,
I crossed a very headache issue. The same code run successful in ArcMap Python built-in Window
>>> arcpy.env.workspace = "\\in-memory"
>>> CurRas0 = Con(image,0,1,"Value = 0")
But I could not make it run from the Python IDLE, both IDLEs for 2.7.5 (ArcMap 10.2.2) and for 3.6.8 (ArcPro 2.3):
>>> arcpy.env.workspace = "\\in-memory"
>>> CurRas0 = Con(image,0,1,"Value = 0")
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
CurRas0 = Con(image,0,1,"Value = 0")
File "D:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\sa\Functions.py", line 271, in Con
where_clause)
File "D:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\sa\Utils.py", line 53, in swapper
result = wrapper(*args, **kwargs)
File "D:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\sa\Functions.py", line 265, in Wrapper
where_clause)
File "D:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\geoprocessing\_base.py", line 506, in <lambda>
return lambda *args: val(*gp_fixargs(args, True))
arcgisscripting.ExecuteError: ERROR 000875: Output raster: \in-memory\Con_Central_KIN1.tif's workspace is an invalid output workspace.
ERROR 000581: Invalid parameters.
Failed to execute (Con).
It keeps saying the workspace is invalid.
Anyone please shade me some lights on this? Thanks !
Solved! Go to Solution.
001200: Raster output to an in-memory workspace is not supported.—Help | Documentation
Write geoprocessing output to memory—ArcGIS Pro | Documentation
which is legacy, but it is denoted as in_memory with the underscore
The new memory workspace supports rasters.
Too many memories
001200: Raster output to an in-memory workspace is not supported.—Help | Documentation
Write geoprocessing output to memory—ArcGIS Pro | Documentation
which is legacy, but it is denoted as in_memory with the underscore
The new memory workspace supports rasters.
Too many memories
Big thank to Dan!,
God, I did have "in_memory" everywhere in the code. Just could not justify why I used "in-memory" in that section of codes. ANd interestingly it worked in Python window 10.2.2
Yeah, my main script now works much faster directly with the "in_memory" instead of reaching out to the SDE in the previous version.
Other question to DAN: It did not work when I point arcpy.env.workspace to the default.gdb in my local C:
Got the same invalid workspace error as in my question.
Regards,