SaveSettings
Resumen
Saves environment settings to an environment settings file (text stored in an Extensible Markup Language [XML] schema). See also LoadSettings on how to load environment settings from an XML file.
Sintaxis
SaveSettings (file_name)
Parámetro | Explicación | Tipo de datos |
file_name |
The XML file to be created that will store the current environment settings. | String |
Ejemplo de código
SaveSettings example
Save environment settings to an XML file.
import arcpy from arcpy import env env.workspace = "C:/Data/MyData.gdb" env.cellSize = 28 env.compression = "LZ77" # Save environment settings to XML file # arcpy.SaveSettings("C:/Data/MyCustomSettings.xml")
Temas relacionados
7/10/2012