1

I am using python in arcmap 10.0 to execute "Topo To Raster" tool. I am successful to execute this in blocking/sync mode. but I want to execute this tool with python in async mode.

workspacePath = sys.argv[1] 
input = sys.argv[2]
output = sys.argv[3]    
arcpy.TopoToRaster_3d(input,output)
PolyGeo
  • 65,136
  • 29
  • 109
  • 338
Monir
  • 399
  • 1
  • 4
  • 15

1 Answers1

4

It sounds like what you are after is Background Geoprocessing, which was introduced at ArcGIS Desktop 10.0.

However, I think ArcPy only became "Background Geoprocessing aware" with the introduction of Python Toolboxes at 10.1 - see Setting "Always run in foreground" within ArcPy code?

PolyGeo
  • 65,136
  • 29
  • 109
  • 338