79 lines
2.8 KiB
Python
Raw Normal View History

2012-10-04 19:33:47 +02:00
# -*- coding: utf-8 -*-
"""
***************************************************************************
ExtractNodes.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'
2012-10-04 19:33:47 +02:00
# This will get replaced with a git SHA1 when you do a git archive
2012-10-04 19:33:47 +02:00
__revision__ = '$Format:%H$'
from qgis.core import QGis, QgsFeature, QgsGeometry
2013-08-12 20:44:27 +02:00
from processing.core.GeoAlgorithm import GeoAlgorithm
from processing.core.parameters import ParameterVector
from processing.core.outputs import OutputVector
from processing.tools import dataobjects, vector
2012-09-15 18:25:25 +03:00
class ExtractNodes(GeoAlgorithm):
INPUT = 'INPUT'
OUTPUT = 'OUTPUT'
2012-09-15 18:25:25 +03:00
2012-10-03 18:25:07 +03:00
def defineCharacteristics(self):
self.name, self.i18n_name = self.trAlgorithm('Extract nodes')
self.group, self.i18n_group = self.trAlgorithm('Vector geometry tools')
2012-10-03 18:25:07 +03:00
2015-01-15 20:41:15 +02:00
self.addParameter(ParameterVector(self.INPUT,
self.tr('Input layer'),
[ParameterVector.VECTOR_TYPE_POLYGON, ParameterVector.VECTOR_TYPE_LINE]))
2012-10-03 18:25:07 +03:00
self.addOutput(OutputVector(self.OUTPUT, self.tr('Nodes')))
2012-10-03 18:25:07 +03:00
2012-09-15 18:25:25 +03:00
def processAlgorithm(self, progress):
layer = dataobjects.getObjectFromUri(
self.getParameterValue(self.INPUT))
2012-10-03 18:25:07 +03:00
writer = self.getOutputFromName(self.OUTPUT).getVectorWriter(
layer.pendingFields().toList(), QGis.WKBPoint, layer.crs())
2012-10-03 18:25:07 +03:00
2012-09-15 18:25:25 +03:00
outFeat = QgsFeature()
inGeom = QgsGeometry()
outGeom = QgsGeometry()
2012-10-03 18:25:07 +03:00
current = 0
features = vector.features(layer)
2013-01-01 23:52:00 +01:00
total = 100.0 / float(len(features))
for f in features:
inGeom = f.geometry()
attrs = f.attributes()
2012-10-03 18:25:07 +03:00
points = vector.extractPoints(inGeom)
outFeat.setAttributes(attrs)
2012-10-03 18:25:07 +03:00
for i in points:
outFeat.setGeometry(outGeom.fromPoint(i))
writer.addFeature(outFeat)
current += 1
progress.setPercentage(int(current * total))
del writer