Tagged Questions
1
vote
2answers
70 views
Length of Feature
I have a shapefile which renders a map.
I want to calculate and preferably store length of each feature in the shapefile either using QGis or through programmatic means.
What is the best way to get ...
2
votes
0answers
50 views
Is there a way to distinguish between digitized and pasted features?
Is there a way to tell if an added feature in QGIS is in fact a newly digitized one or a pasted feature?
I think QGIS is treating both cases in the same way, emitting the same signal:
...
4
votes
1answer
62 views
Is it possible show the feature attributes dialog when I add a feature in code?
I want to know if it is possible to make the feature attributes dialog in Qgis show up when I add a feature by code using:
QgsVectorLayer::addFeature( tFeature )
This is available when I add ...
1
vote
2answers
88 views
Fetching field values from uncommitted features on Qgis
I'm trying to fetch a feature's field value on Qgis, I use QgsFeature.attributeMap().value(cont int & key).toDouble()
This works fine for committed features but it always returns " 0 " if the ...