2012-10-04 19:33:47 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
SaveSelectedFeatures.py
|
|
|
|
---------------------
|
|
|
|
Date : August 2012
|
|
|
|
Copyright : (C) 2012 by Victor Olaya
|
|
|
|
Email : volayaf at gmail dot com
|
|
|
|
***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = 'Victor Olaya'
|
|
|
|
__date__ = 'August 2012'
|
|
|
|
__copyright__ = '(C) 2012, Victor Olaya'
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-10-04 19:33:47 +02:00
|
|
|
# This will get replaced with a git SHA1 when you do a git archive
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-10-04 19:33:47 +02:00
|
|
|
__revision__ = '$Format:%H$'
|
|
|
|
|
2017-06-27 11:11:54 +10:00
|
|
|
from qgis.core import (QgsFeatureSink,
|
|
|
|
QgsProcessingParameterVectorLayer,
|
|
|
|
QgsProcessingParameterFeatureSink,
|
|
|
|
QgsProcessingOutputVectorLayer)
|
2017-06-06 13:41:42 +10:00
|
|
|
from processing.algs.qgis.QgisAlgorithm import QgisAlgorithm
|
2012-09-15 18:25:25 +03:00
|
|
|
|
|
|
|
|
2017-05-19 11:27:16 +10:00
|
|
|
class SaveSelectedFeatures(QgisAlgorithm):
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2017-06-27 11:11:54 +10:00
|
|
|
OUTPUT = 'OUTPUT'
|
|
|
|
INPUT = 'INPUT'
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2017-03-29 12:04:09 +10:00
|
|
|
def group(self):
|
|
|
|
return self.tr('Vector general tools')
|
|
|
|
|
2017-05-15 13:40:38 +10:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2017-06-27 11:11:54 +10:00
|
|
|
self.addParameter(QgsProcessingParameterVectorLayer(self.INPUT, self.tr('Input layer')))
|
|
|
|
self.addParameter(QgsProcessingParameterFeatureSink(self.OUTPUT, self.tr('Selection')))
|
|
|
|
self.addOutput(QgsProcessingOutputVectorLayer(self.OUTPUT, self.tr("Selection")))
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2017-06-28 19:55:08 +10:00
|
|
|
self.vectorLayer = None
|
|
|
|
self.sink = None
|
|
|
|
self.dest_id = None
|
|
|
|
|
2017-05-15 13:40:38 +10:00
|
|
|
def name(self):
|
|
|
|
return 'saveselectedfeatures'
|
|
|
|
|
|
|
|
def displayName(self):
|
|
|
|
return self.tr('Save selected features')
|
|
|
|
|
2017-06-28 19:55:08 +10:00
|
|
|
def prepareAlgorithm(self, parameters, context, feedback):
|
|
|
|
self.vectorLayer = self.parameterAsVectorLayer(parameters, self.INPUT, context)
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2017-06-28 19:55:08 +10:00
|
|
|
(self.sink, self.dest_id) = self.parameterAsSink(parameters, self.OUTPUT, context,
|
|
|
|
self.vectorLayer.fields(), self.vectorLayer.wkbType(), self.vectorLayer.sourceCrs())
|
|
|
|
return True
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2017-06-28 19:55:08 +10:00
|
|
|
def processAlgorithm(self, context, feedback):
|
|
|
|
features = self.vectorLayer.getSelectedFeatures()
|
|
|
|
count = int(self.vectorLayer.selectedFeatureCount())
|
2017-04-27 10:54:07 +03:00
|
|
|
|
2017-06-23 13:49:32 +10:00
|
|
|
total = 100.0 / count if count else 1
|
2016-02-17 09:36:59 +02:00
|
|
|
for current, feat in enumerate(features):
|
2017-06-27 11:11:54 +10:00
|
|
|
if feedback.isCanceled():
|
|
|
|
break
|
|
|
|
|
2017-06-28 19:55:08 +10:00
|
|
|
self.sink.addFeature(feat, QgsFeatureSink.FastInsert)
|
2017-01-06 20:04:00 +10:00
|
|
|
feedback.setProgress(int(current * total))
|
2017-06-28 19:55:08 +10:00
|
|
|
return True
|
2017-06-27 11:11:54 +10:00
|
|
|
|
2017-06-28 19:55:08 +10:00
|
|
|
def postProcessAlgorithm(self, context, feedback):
|
|
|
|
return {self.OUTPUT: self.dest_id}
|