2012-10-04 19:33:47 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
AddTableField.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$'
|
|
|
|
|
2016-04-22 10:38:48 +02:00
|
|
|
from qgis.PyQt.QtCore import QVariant
|
2017-03-29 10:42:42 +10:00
|
|
|
from qgis.core import (QgsField,
|
|
|
|
QgsFeature,
|
2017-04-25 17:53:32 +10:00
|
|
|
QgsApplication,
|
|
|
|
QgsProcessingUtils)
|
2017-05-19 11:27:16 +10:00
|
|
|
from processing.algs.qgis import QgisAlgorithm
|
2014-07-14 14:19:09 +02:00
|
|
|
from processing.core.parameters import ParameterVector
|
|
|
|
from processing.core.parameters import ParameterString
|
|
|
|
from processing.core.parameters import ParameterNumber
|
|
|
|
from processing.core.parameters import ParameterSelection
|
|
|
|
from processing.core.outputs import OutputVector
|
2013-10-01 20:52:22 +03:00
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2017-05-19 11:27:16 +10:00
|
|
|
class AddTableField(QgisAlgorithm):
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
OUTPUT_LAYER = 'OUTPUT_LAYER'
|
|
|
|
INPUT_LAYER = 'INPUT_LAYER'
|
|
|
|
FIELD_NAME = 'FIELD_NAME'
|
|
|
|
FIELD_TYPE = 'FIELD_TYPE'
|
|
|
|
FIELD_LENGTH = 'FIELD_LENGTH'
|
|
|
|
FIELD_PRECISION = 'FIELD_PRECISION'
|
2013-04-10 15:03:53 +04:00
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
TYPES = [QVariant.Int, QVariant.Double, QVariant.String]
|
|
|
|
|
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 table tools')
|
|
|
|
|
2017-05-15 13:40:38 +10:00
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
2015-08-31 16:59:11 +02:00
|
|
|
self.type_names = [self.tr('Integer'),
|
|
|
|
self.tr('Float'),
|
|
|
|
self.tr('String')]
|
|
|
|
|
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')))
|
2015-01-15 20:41:15 +02:00
|
|
|
self.addParameter(ParameterString(self.FIELD_NAME,
|
2015-08-22 14:29:41 +02:00
|
|
|
self.tr('Field name')))
|
2015-01-15 20:41:15 +02:00
|
|
|
self.addParameter(ParameterSelection(self.FIELD_TYPE,
|
2015-08-31 16:59:11 +02:00
|
|
|
self.tr('Field type'), self.type_names))
|
2015-01-15 20:41:15 +02:00
|
|
|
self.addParameter(ParameterNumber(self.FIELD_LENGTH,
|
2015-08-22 14:29:41 +02:00
|
|
|
self.tr('Field length'), 1, 255, 10))
|
2013-10-01 20:52:22 +03:00
|
|
|
self.addParameter(ParameterNumber(self.FIELD_PRECISION,
|
2015-08-22 14:29:41 +02:00
|
|
|
self.tr('Field precision'), 0, 10, 0))
|
2015-01-15 20:41:15 +02:00
|
|
|
self.addOutput(OutputVector(
|
2015-05-22 16:39:20 +02:00
|
|
|
self.OUTPUT_LAYER, self.tr('Added')))
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2017-05-15 13:40:38 +10:00
|
|
|
def name(self):
|
|
|
|
return 'addfieldtoattributestable'
|
|
|
|
|
|
|
|
def displayName(self):
|
|
|
|
return self.tr('Add field to attributes table')
|
|
|
|
|
2017-05-15 16:19:46 +10:00
|
|
|
def processAlgorithm(self, parameters, context, feedback):
|
2013-04-10 15:03:53 +04:00
|
|
|
fieldType = self.getParameterValue(self.FIELD_TYPE)
|
|
|
|
fieldName = self.getParameterValue(self.FIELD_NAME)
|
|
|
|
fieldLength = self.getParameterValue(self.FIELD_LENGTH)
|
|
|
|
fieldPrecision = self.getParameterValue(self.FIELD_PRECISION)
|
2012-09-15 18:25:25 +03:00
|
|
|
output = self.getOutputFromName(self.OUTPUT_LAYER)
|
2013-04-10 15:03:53 +04:00
|
|
|
|
2017-05-02 13:40:49 +10:00
|
|
|
layer = QgsProcessingUtils.mapLayerFromString(self.getParameterValue(self.INPUT_LAYER), context)
|
2013-04-10 15:03:53 +04:00
|
|
|
|
2016-08-04 07:33:49 +10:00
|
|
|
fields = layer.fields()
|
2013-10-01 20:52:22 +03:00
|
|
|
fields.append(QgsField(fieldName, self.TYPES[fieldType], '',
|
2016-01-30 09:33:24 +11:00
|
|
|
fieldLength, fieldPrecision))
|
2017-04-26 14:33:53 +10:00
|
|
|
writer = output.getVectorWriter(fields, layer.wkbType(), layer.crs(), context)
|
2012-09-15 18:25:25 +03:00
|
|
|
outFeat = QgsFeature()
|
2017-04-25 17:59:35 +10:00
|
|
|
features = QgsProcessingUtils.getFeatures(layer, context)
|
2017-04-25 17:53:32 +10:00
|
|
|
total = 100.0 / QgsProcessingUtils.featureCount(layer, context)
|
2016-02-17 09:36:59 +02:00
|
|
|
for current, feat in enumerate(features):
|
2017-01-06 20:04:00 +10:00
|
|
|
feedback.setProgress(int(current * total))
|
2016-02-17 09:36:59 +02:00
|
|
|
geom = feat.geometry()
|
|
|
|
outFeat.setGeometry(geom)
|
|
|
|
atMap = feat.attributes()
|
2013-06-03 21:25:22 +02:00
|
|
|
atMap.append(None)
|
2013-02-07 23:40:43 +01:00
|
|
|
outFeat.setAttributes(atMap)
|
2013-10-01 20:52:22 +03:00
|
|
|
writer.addFeature(outFeat)
|
2012-09-15 18:25:25 +03:00
|
|
|
del writer
|