mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-10-31 00:06:02 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			73 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| """
 | |
| ***************************************************************************
 | |
|     AutoincrementalField.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'
 | |
| 
 | |
| # This will get replaced with a git SHA1 when you do a git archive
 | |
| 
 | |
| __revision__ = '$Format:%H$'
 | |
| 
 | |
| from PyQt4.QtCore import *
 | |
| from qgis.core import *
 | |
| from processing.core.GeoAlgorithm import GeoAlgorithm
 | |
| from processing.core.parameters import ParameterVector
 | |
| from processing.core.outputs import OutputVector
 | |
| from processing.tools import dataobjects, vector
 | |
| 
 | |
| 
 | |
| class AutoincrementalField(GeoAlgorithm):
 | |
| 
 | |
|     INPUT = 'INPUT'
 | |
|     OUTPUT = 'OUTPUT'
 | |
| 
 | |
|     def processAlgorithm(self, progress):
 | |
|         output = self.getOutputFromName(self.OUTPUT)
 | |
|         vlayer = \
 | |
|             dataobjects.getObjectFromUri(self.getParameterValue(self.INPUT))
 | |
|         vprovider = vlayer.dataProvider()
 | |
|         fields = vprovider.fields()
 | |
|         fields.append(QgsField('AUTO', QVariant.Int))
 | |
|         writer = output.getVectorWriter(fields, vprovider.geometryType(),
 | |
|                 vlayer.crs())
 | |
|         inFeat = QgsFeature()
 | |
|         outFeat = QgsFeature()
 | |
|         inGeom = QgsGeometry()
 | |
|         nElement = 0
 | |
|         features = vector.features(vlayer)
 | |
|         nFeat = len(features)
 | |
|         for inFeat in features:
 | |
|             progress.setPercentage(int(100 * nElement / nFeat))
 | |
|             nElement += 1
 | |
|             inGeom = inFeat.geometry()
 | |
|             outFeat.setGeometry(inGeom)
 | |
|             attrs = inFeat.attributes()
 | |
|             attrs.append(nElement)
 | |
|             outFeat.setAttributes(attrs)
 | |
|             writer.addFeature(outFeat)
 | |
|         del writer
 | |
| 
 | |
|     def defineCharacteristics(self):
 | |
|         self.name = 'Add autoincremental field'
 | |
|         self.group = 'Vector table tools'
 | |
|         self.addParameter(ParameterVector(self.INPUT, 'Input layer',
 | |
|                           [ParameterVector.VECTOR_TYPE_ANY]))
 | |
|         self.addOutput(OutputVector(self.OUTPUT, 'Output layer'))
 |