Sunday 20 September 2015

qgis - How to delete column/field in PyQGIS?


How to remove or delete column fields in a shapefile using Python?



Answer



If you get no joy with QGSVectorLayer::deleteAttribute as they docs say: delete an attribute field (but does not commit it) have a look at the data provider. As QGIS deals with lots of feature types with different drivers I suspect that it's left up to the driver as to whether or not a field can be deleted.


Here's some code that I dredged up that may help:



fields = vlayer.dataProvider().fields()

count = 0
for name, field in fields.iteritems():
if field.name() == fieldName:
return count
count += 1

To get the index of the field from the name. In this case I'm not using .upper() but I would recommend it.


After getting the index of the field you (might) delete it using the dataprovider.



fList = list()
fList.append(count)
vlayer.dataProvider().deleteAttributes(fList)

It's expecting a list so the integer needs to be put into a list. I have not used this method; normally I would use ArcMap to delete the field.


As pointed out by RogerHuang, the fields of the layer may need to be updated now that they have been changed to refresh the layers' fields definition:


vlayer.updateFields()

No comments:

Post a Comment

arcpy - Changing output name when exporting data driven pages to JPG?

Is there a way to save the output JPG, changing the output file name to the page name, instead of page number? I mean changing the script fo...