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.
-
I suggest you check its source, -1 sounds like it encountered an error and then intentionally returned an invalid result.lynxlynxlynx– lynxlynxlynx2012年07月13日 15:11:55 +00:00Commented Jul 13, 2012 at 15:11
-
Why method selectedFeatureCount returns 0?bossman– bossman2012年07月13日 15:20:21 +00:00Commented Jul 13, 2012 at 15:20
-
2The obvious answer would be that the previous select call didn't select anything. Check your parameters.lynxlynxlynx– lynxlynxlynx2012年07月13日 15:23:04 +00:00Commented Jul 13, 2012 at 15:23
-
In while I get one feature with polygon.bossman– bossman2012年07月13日 15:24:35 +00:00Commented Jul 13, 2012 at 15:24
1 Answer 1
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.