Modify custom Python script to general Toolbox

687
0
07-15-2013 06:42 AM
JacobDrvar
New Contributor II
I am new to python scripting and began by creating a specific tool. Now, I want to modify the script for any feature class.  How would I modify the script to input/clip/output any feature class?  GetParameterAsText?  Then, I intend to add the script to a toolbox.  The script is as follows:

#Import system modules
import arcpy
from arcpy import env

#Workspace
env.workspace = "E:\User\MillageCode"

#Variables
in_features = "Sales_2006.shp"
clip_features = "EagleHarborSales_temp.shp"
out_feature_class = "Output_temp5.shp"

#Clip the Sales_2006 shapefile to the EagleHarborSales_temp shapefile
arcpy.Clip_analysis(in_features, clip_features, out_feature_class)

#Info (arcpy commands are case sensitive)
print arcpy.GetMessages()

Thanks!
Tags (3)
0 Kudos
0 Replies