CreateScratchName (arcpy)
Zusammenfassung
Creates a unique scratch path name for the specified data type. If no workspace is given the current workspace is used.
Syntax
CreateScratchName ({prefix}, {suffix}, {data_type}, {workspace})
Parameter | Erläuterung | Datentyp |
prefix |
The prefix that is added to the scratchname. By default, a prefix of xx is used. (Der Standardwert ist xx) | String |
suffix |
The suffix added to the scratchname. This can be an empty double-quoted string. | String |
data_type |
The data type which will be used to create the scratchname. Valid datatypes are:
| String |
workspace |
The workspace used to determine the scratch name to be created. If not specified, the current workspace is used. | String |
Datentyp | Erläuterung |
String |
The unique scratch path name. |
Codebeispiel
CreateScratchName example
Create a unique scratch name for the derived output of the Buffer tool. This scratch name is then used as input to the Clip tool.
import arcpy
from arcpy import env
# Set workspace
#
env.workspace = "C:/Data/Municipal.gdb"
# Create a scratch name for the Buffer tool derived output.
# The scratch name created will be "C:/Data/xxxx0.shp",
# If xxxx0.shp already exists, the number will be incremented
# until the name is unique in the workspace.
#
scratch_Name = arcpy.CreateScratchName("xxxx", "", "Shapefile", "C:/Data")
# Execute Buffer tool, using scratch name for output
#
arcpy.Buffer_analysis("Roads", scratch_Name, "1000 feet")
# Execute Clip tool, using scratch name for input
#
arcpy.Clip_analysis(scratch_Name, "CityBoundary", "CityRoads")
# Delete scratch dataset
arcpy.Delete_management(scratch_Name)
Verwandte Themen
9/11/2013