Hello,
    I am trying to write a script to convert three feature layers at a time to raster layers, as seen below.  I was wondering if there is any available help for this or if you knew of any user groups that could help?  Thanks s much for your time.
sincerely,
Tanya
 
# Converts a Feature to a Raster
# Import system modules
import sys
from win32com.client import Dispatch
 
# PARAMETERS: set by the user
theLayerName  = sys.argv [1]  # shapefiles
theLayerName  = sys.argv [2]
theLayerName  = sys.argv [3]
 
# Creates the Geoprocessing Object
GP = Dispatch("esriGeoprocessing.GPDispatch.1")
# Collects records
theFeatureList = GP.SearchCursor (theLayerName)
 
# Process: FeatureToRaster_conversion
gp.FeatureToRaster_conversion(InFeatures, OutRaster)
 
# split the raster layers results
theRasterResults = this.FeatureToRaster_conversion.split(",")
 
# Print error message if an error occurs
gp.GetMessages()



-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to