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-05-02 14:36:23 +10:00
|
|
|
from qgis.core import (QgsApplication,
|
|
|
|
QgsProcessingUtils)
|
2017-05-19 11:27:16 +10:00
|
|
|
from processing.algs.qgis import QgisAlgorithm
|
2017-04-27 10:54:07 +03:00
|
|
|
from processing.core.GeoAlgorithmExecutionException import GeoAlgorithmExecutionException
|
2014-07-14 14:19:09 +02:00
|
|
|
from processing.core.parameters import ParameterVector
|
|
|
|
from processing.core.outputs import OutputVector
|
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
|
|
|
|
|
|
|
OUTPUT_LAYER = 'OUTPUT_LAYER'
|
|
|
|
INPUT_LAYER = 'INPUT_LAYER'
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2017-03-29 10:42:42 +10:00
|
|
|
def icon(self):
|
|
|
|
return QgsApplication.getThemeIcon("/providerQgis.svg")
|
|
|
|
|
|
|
|
def svgIconPath(self):
|
|
|
|
return QgsApplication.iconPath("providerQgis.svg")
|
|
|
|
|
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__()
|
2015-01-15 20:41:15 +02:00
|
|
|
self.addParameter(ParameterVector(self.INPUT_LAYER,
|
2016-08-23 19:33:42 +03:00
|
|
|
self.tr('Input layer')))
|
2013-10-01 20:52:22 +03:00
|
|
|
|
|
|
|
self.addOutput(OutputVector(self.OUTPUT_LAYER,
|
2015-08-22 14:29:41 +02:00
|
|
|
self.tr('Selection')))
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2017-05-15 13:40:38 +10:00
|
|
|
def name(self):
|
|
|
|
return 'saveselectedfeatures'
|
|
|
|
|
|
|
|
def displayName(self):
|
|
|
|
return self.tr('Save selected features')
|
|
|
|
|
2017-05-15 16:19:46 +10:00
|
|
|
def processAlgorithm(self, parameters, context, feedback):
|
2012-09-15 18:25:25 +03:00
|
|
|
inputFilename = self.getParameterValue(self.INPUT_LAYER)
|
|
|
|
output = self.getOutputFromName(self.OUTPUT_LAYER)
|
|
|
|
|
2017-05-02 13:40:49 +10:00
|
|
|
vectorLayer = QgsProcessingUtils.mapLayerFromString(inputFilename, context)
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2017-04-26 14:33:53 +10:00
|
|
|
writer = output.getVectorWriter(vectorLayer.fields(), vectorLayer.wkbType(), vectorLayer.crs(), context)
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2017-04-27 11:16:10 +10:00
|
|
|
features = vectorLayer.getSelectedFeatures()
|
2017-04-27 10:59:46 +03:00
|
|
|
count = int(vectorLayer.selectedFeatureCount())
|
|
|
|
if count == 0:
|
2017-04-27 10:54:07 +03:00
|
|
|
raise GeoAlgorithmExecutionException(self.tr('There are no selected features in the input layer.'))
|
|
|
|
|
2017-04-27 10:59:46 +03:00
|
|
|
total = 100.0 / count
|
2016-02-17 09:36:59 +02:00
|
|
|
for current, feat in enumerate(features):
|
2012-09-15 18:25:25 +03:00
|
|
|
writer.addFeature(feat)
|
2017-01-06 20:04:00 +10:00
|
|
|
feedback.setProgress(int(current * total))
|
2012-09-15 18:25:25 +03:00
|
|
|
del writer
|