Tuesday 24 January 2017

layers - Getting feature count of QgsVectorLayer using PyQGIS?


I'm using this code to get features from QgsVectorLayer



 QgsVectorDataProvider* provider=theVectorLayer->dataProvider();
if(!provider)
{
return;
}

theVectorLayer->select(provider->attributeIndexes(),theVectorLayer->extent(),true,false);
theVectorLayer->selectedFeatureCount();//here returns 0 but there is one polygon
while(theVectorLayer->nextFeature(currentFeature))
{

....//here Iget attributes and current geometry (one polygon)
}

How do I get feature count?


Method featureCount() returns -1.



Answer



When featureCount() returns -1 the only safe bet to get the feature count is to iterate over all feature and count them.


selectedFeatureCount() is the number of features that are selected on the layer (e.g. with setSelectedFeatures() or void select(QgsFeatureId featureId, bool emitSignal=true)), but has nothing to do with the select()/nextFeature() combo.


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...