I have a script which uses ArcPy + Python multiprocessing.
Are ArcPy environment variables shared between separate Python processes?
If I write to arcpy.env.extent
from within each process am I asking for trouble?
asked Oct 20, 2014 at 23:32
1 Answer 1
Environments aren't propagated from process to process, so changing extent in one won't affect the other at all.
answered Oct 20, 2014 at 23:48
lang-py