import arcpy fc = r"C:\TEMP\scratch.gdb\line1450_proj" rows = arcpy.SearchCursor(fc) for row in rows: arcpy.Buffer_analysis(row.Shape, arcpy.CreateUniqueName(r"c:\temp\scratch.gdb\buff"), "150 Meters", "#", "FLAT", "ALL" ) del row, rows print 'finished'
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.