在 Python 中使用 in_memory 工作空間
阿新 • • 發佈:2019-02-06
ase data get 虛擬 nal port deb final ace
在 Python 中使用 in_memory 工作空間
在 Python 腳本中,in_memory 工作空間僅對地理處理工具有效;它不是可以寫入任何數據的通用虛擬目錄。
您可以按以下代碼示例所示使用 in_memory 工作空間。
import arcpy
# Set the geoprocessing workspace
arcpy.env.workspace = r"C:\Data\Habitat.gdb"
# Buffer a Roads layer, writing output to in_memory
arcpy.Buffer_analysis("Roads", "in_memory/Buffers", 1000)
# Erase the buffers from a Vegetation layer
arcpy.Erase_analysis("Vegetation", "in_memory/Buffers", "in_memory/Erased")
# Dissolve the in_memory output of Erase to make a final output
arcpy.Dissolve_analysis("in_memory/Erased", "FinalOutput")
在 Python 中使用 in_memory 工作空間