2012-10-04 19:33:47 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
***************************************************************************
|
|
|
|
EquivalentNumField.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)
|
2013-10-01 20:52:22 +03:00
|
|
|
from processing.core.GeoAlgorithm import GeoAlgorithm
|
2014-07-14 14:19:09 +02:00
|
|
|
from processing.core.parameters import ParameterVector
|
|
|
|
from processing.core.parameters import ParameterTableField
|
|
|
|
from processing.core.outputs import OutputVector
|
2013-10-01 20:52:22 +03:00
|
|
|
from processing.tools import dataobjects, vector
|
|
|
|
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2012-11-12 08:56:26 +01:00
|
|
|
class EquivalentNumField(GeoAlgorithm):
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2013-10-01 20:52:22 +03:00
|
|
|
INPUT = 'INPUT'
|
|
|
|
OUTPUT = 'OUTPUT'
|
|
|
|
FIELD = 'FIELD'
|
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 table tools')
|
|
|
|
|
2017-03-29 12:51:59 +10:00
|
|
|
def name(self):
|
2017-03-29 17:09:39 +10:00
|
|
|
return 'adduniquevalueindexfield'
|
2017-03-29 12:51:59 +10:00
|
|
|
|
|
|
|
def displayName(self):
|
|
|
|
return self.tr('Add unique value index field')
|
|
|
|
|
2016-02-17 09:36:59 +02:00
|
|
|
def defineCharacteristics(self):
|
|
|
|
self.addParameter(ParameterVector(self.INPUT,
|
2016-08-23 19:33:42 +03:00
|
|
|
self.tr('Input layer')))
|
2016-02-17 09:36:59 +02:00
|
|
|
self.addParameter(ParameterTableField(self.FIELD,
|
|
|
|
self.tr('Class field'), self.INPUT))
|
|
|
|
self.addOutput(OutputVector(self.OUTPUT, self.tr('Layer with index field')))
|
|
|
|
|
2017-04-25 14:55:38 +10:00
|
|
|
def processAlgorithm(self, context, feedback):
|
2012-11-12 08:56:26 +01:00
|
|
|
fieldname = self.getParameterValue(self.FIELD)
|
2012-09-15 18:25:25 +03:00
|
|
|
output = self.getOutputFromName(self.OUTPUT)
|
2017-05-01 17:40:47 +10:00
|
|
|
vlayer = dataobjects.QgsProcessingUtils.mapLayerFromString(self.getParameterValue(self.INPUT), context)
|
2016-09-22 12:09:13 +02:00
|
|
|
fieldindex = vlayer.fields().lookupField(fieldname)
|
2016-08-04 07:33:49 +10:00
|
|
|
fields = vlayer.fields()
|
2013-10-01 20:52:22 +03:00
|
|
|
fields.append(QgsField('NUM_FIELD', QVariant.Int))
|
2017-04-26 14:33:53 +10:00
|
|
|
writer = output.getVectorWriter(fields, vlayer.wkbType(), vlayer.crs(), context)
|
2012-09-15 18:25:25 +03:00
|
|
|
outFeat = QgsFeature()
|
|
|
|
classes = {}
|
2016-02-17 09:36:59 +02:00
|
|
|
|
2017-04-25 17:59:35 +10:00
|
|
|
features = QgsProcessingUtils.getFeatures(vlayer, context)
|
2017-04-25 17:53:32 +10:00
|
|
|
total = 100.0 / QgsProcessingUtils.featureCount(vlayer, context)
|
2016-02-17 09:36:59 +02:00
|
|
|
for current, feature in enumerate(features):
|
2017-01-06 20:04:00 +10:00
|
|
|
feedback.setProgress(int(current * total))
|
2013-02-04 00:14:39 +01:00
|
|
|
inGeom = feature.geometry()
|
2013-10-01 20:52:22 +03:00
|
|
|
outFeat.setGeometry(inGeom)
|
2013-02-04 00:14:39 +01:00
|
|
|
atMap = feature.attributes()
|
2013-06-03 21:25:22 +02:00
|
|
|
clazz = atMap[fieldindex]
|
2016-02-17 09:36:59 +02:00
|
|
|
|
2013-02-04 00:14:39 +01:00
|
|
|
if clazz not in classes:
|
2016-09-21 18:24:26 +02:00
|
|
|
classes[clazz] = len(list(classes.keys()))
|
2016-02-17 09:36:59 +02:00
|
|
|
|
2013-06-03 21:25:22 +02:00
|
|
|
atMap.append(classes[clazz])
|
2013-02-07 01:09:39 +01:00
|
|
|
outFeat.setAttributes(atMap)
|
2013-10-01 20:52:22 +03:00
|
|
|
writer.addFeature(outFeat)
|
2012-09-15 18:25:25 +03:00
|
|
|
|
2016-02-17 09:36:59 +02:00
|
|
|
del writer
|