¿Cómo consigo que mi script sólo rellene los campos de los objetos seleccionados mientras edito en el mapa?
# Importing arcpy
import arcpy
# Set the workspace environment
arcpy.env.workspace = r'C:\Users\aa2zz6\Desktop\TrackTraceDownload\UPDM2016.gdb'
rows = arcpy.UpdateCursor('P_ExcessFlowValve')
for row in rows:
if row.ItemNumber == '100':
row.Status = 'In Service'
row.Owner = ''
row.Diameter = '1'
row.Capacity = ''
rows.updateRow(row)
del row
del rows
print "Updated Selected EFV Features on the map"