Slide 10
Slide 10 text
Cursors
• Arcpy.SearchCursor(“layer”,{where})
– Used to read through each row in feature class
• Arcpy.UpdateCursor(“layer”, {where})
– Same, but with the ability to edit/delete
– Call cursorObject.updateRow(rowObject) to
commit
• Arcpy.InsertCursor(“layer”)
• Insert data