C'est une tâche très simple à faire mais je ne comprends pas la bonne syntaxe.
J'ai un fichier de formes dont les attributs sont similaires aux suivants:
FID Shape FIELD1 FIELD2 FIELD3 ...
0 Polygon 0 1 0
1 Polygon 3 0 7
2 Polygon 3 4 7
...
Le nombre de champs et leurs noms sont toujours différents.
Je dois créer un nouveau champ (appelons-le NUM) et compter le nombre de zéros dans chaque ligne.
Exemple de sortie:
FID Shape FIELD1 FIELD2 FIELD3 NUM
0 Polygon 0 1 0 2
1 Polygon 3 0 7 1
2 Polygon 3 4 7 0
Je sais comment créer un nouveau champ, mais je ne suis pas sûr des prochaines étapes.
Le code de travail:
#path is path to shape file
def a(path):
fields = arcpy.ListFields(path,"FID_*") #FID_* is wildcard to select a fields name
arcpy.AddField_management(path, "NUM", "SHORT") #create a field with name NUM
cursor= arcpy.UpdateCursor(path)
for row in cursor:
count=0
for field in fields:
a= row.getValue(field.name) #take a value
if a==0: #if value=0 then value=value+1
count+=1
row.setValue("NUM", count)
cursor.updateRow(row)
del row
del cursor
Merci blah238 , maintenant je peux manger des pythons!
la source