In my QGIS plugin I select dynamically features from a Vector layer. And currently I create a new layer (shapefile) from selection on combining all feature into a new feature:
theField = QgsField
self.theString = (os.path.expanduser("~")+'\.qgis\\statsRectangle.shp')
feat = QgsFeature()
shapeLayer2 = QgsVectorLayer(self.theString, "Upstream Area Of Interest", 'ogr')
geomtotSubwatershed = QgsGeometry.fromWkt('GEOMETRYCOLLECTION EMPTY')
nodLayer.setSelectedFeatures(selectFeatureIDlist)
UpstreamGeometry = QgsGeometry.fromWkt('GEOMETRYCOLLECTION EMPTY')
for elem in nodLayer.selectedFeatures():
UpstreamGeometry = UpstreamGeometry.combine(elem.geometry())
feat.setGeometry(UpstreamGeometry)
QgsMapLayerRegistry.instance().addMapLayer(shapeLayer2)
but combining selected feature take a long time and froze QGIS UI.
-
Do you want a memory layer or shp file?Nathan W– Nathan W2013年12月12日 14:25:04 +00:00Commented Dec 12, 2013 at 14:25
-
I want a shape layerfkili mohamed– fkili mohamed2013年12月12日 14:31:09 +00:00Commented Dec 12, 2013 at 14:31
-
check out qgis.org/api/… (don't have time for a full answer)Nathan W– Nathan W2013年12月12日 14:39:49 +00:00Commented Dec 12, 2013 at 14:39
-
Please, do not forget about "What should I do when someone answers my question?"Taras– Taras ♦2022年04月25日 11:07:32 +00:00Commented Apr 25, 2022 at 11:07
2 Answers 2
In QGIS 3, there is new helper for that:
layer = iface.activeLayer()
new_layer = layer.materialize(QgsFeatureRequest().setFilterFids(layer.selectedFeatureIds()))
QgsProject.instance().addMapLayer(new_layer)
This will give you a memory layer. Then you can still write it to disk if necessary with the QgsVectorFileWriter.
PS, IMHO, you should try to avoid shapefile. People might come with some layers if longer field names and they will be truncated. Especially in QGIS3, GeoPackage is the default format.
-
2It is really cool!Mustafa Uçar– Mustafa Uçar2018年02月15日 07:21:47 +00:00Commented Feb 15, 2018 at 7:21
Old question but I was searching for this today - here is what I did:
layer = iface.activeLayer()
QgsVectorFileWriter.writeAsVectorFormat( layer, 'H:/temp/' + layer.name() + ".shp", "utf-8", layer.crs(), "ESRI Shapefile", 1)
The boolean option '1' at the end of the command results in saving just the selected features of the layer.
-
it asks me again the crs even I describe layer.crs()Mustafa Uçar– Mustafa Uçar2018年03月14日 07:56:26 +00:00Commented Mar 14, 2018 at 7:56