mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-10-31 00:06:02 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			118 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| """
 | |
| ***************************************************************************
 | |
|     OffsetLine.py
 | |
|     --------------
 | |
|     Date                 : July 2016
 | |
|     Copyright            : (C) 2016 by Nyall Dawson
 | |
|     Email                : nyall dot dawson 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__ = 'Nyall Dawson'
 | |
| __date__ = 'July 2016'
 | |
| __copyright__ = '(C) 2016, Nyall Dawson'
 | |
| 
 | |
| # This will get replaced with a git SHA1 when you do a git archive323
 | |
| 
 | |
| __revision__ = '$Format:%H$'
 | |
| 
 | |
| import os
 | |
| 
 | |
| from qgis.core import (QgsFeatureSink,
 | |
|                        QgsProcessing,
 | |
|                        QgsProcessingException,
 | |
|                        QgsProcessingParameterFeatureSource,
 | |
|                        QgsProcessingParameterNumber,
 | |
|                        QgsProcessingParameterDistance,
 | |
|                        QgsProcessingParameterEnum,
 | |
|                        QgsProcessingParameterFeatureSink)
 | |
| 
 | |
| from processing.algs.qgis.QgisAlgorithm import QgisFeatureBasedAlgorithm
 | |
| 
 | |
| pluginPath = os.path.split(os.path.split(os.path.dirname(__file__))[0])[0]
 | |
| 
 | |
| 
 | |
| class OffsetLine(QgisFeatureBasedAlgorithm):
 | |
| 
 | |
|     DISTANCE = 'DISTANCE'
 | |
|     SEGMENTS = 'SEGMENTS'
 | |
|     JOIN_STYLE = 'JOIN_STYLE'
 | |
|     MITER_LIMIT = 'MITER_LIMIT'
 | |
| 
 | |
|     def group(self):
 | |
|         return self.tr('Vector geometry')
 | |
| 
 | |
|     def groupId(self):
 | |
|         return 'vectorgeometry'
 | |
| 
 | |
|     def __init__(self):
 | |
|         super().__init__()
 | |
| 
 | |
|         self.distance = None
 | |
|         self.segments = None
 | |
|         self.join_style = None
 | |
|         self.miter_limit = None
 | |
| 
 | |
|     def initParameters(self, config=None):
 | |
|         self.addParameter(QgsProcessingParameterDistance(self.DISTANCE,
 | |
|                                                          self.tr('Distance'),
 | |
|                                                          defaultValue=10.0,
 | |
|                                                          parentParameterName='INPUT'))
 | |
|         self.addParameter(QgsProcessingParameterNumber(self.SEGMENTS,
 | |
|                                                        self.tr('Segments'),
 | |
|                                                        type=QgsProcessingParameterNumber.Integer,
 | |
|                                                        minValue=1, defaultValue=8))
 | |
|         self.join_styles = [self.tr('Round'),
 | |
|                             'Miter',
 | |
|                             'Bevel']
 | |
|         self.addParameter(QgsProcessingParameterEnum(
 | |
|             self.JOIN_STYLE,
 | |
|             self.tr('Join style'),
 | |
|             options=self.join_styles))
 | |
|         self.addParameter(QgsProcessingParameterNumber(self.MITER_LIMIT,
 | |
|                                                        self.tr('Miter limit'), type=QgsProcessingParameterNumber.Double,
 | |
|                                                        minValue=1, defaultValue=2))
 | |
| 
 | |
|     def name(self):
 | |
|         return 'offsetline'
 | |
| 
 | |
|     def displayName(self):
 | |
|         return self.tr('Offset line')
 | |
| 
 | |
|     def outputName(self):
 | |
|         return self.tr('Offset')
 | |
| 
 | |
|     def inputLayerTypes(self):
 | |
|         return [QgsProcessing.TypeVectorLine]
 | |
| 
 | |
|     def outputType(self):
 | |
|         return QgsProcessing.TypeVectorLine
 | |
| 
 | |
|     def prepareAlgorithm(self, parameters, context, feedback):
 | |
|         self.distance = self.parameterAsDouble(parameters, self.DISTANCE, context)
 | |
|         self.segments = self.parameterAsInt(parameters, self.SEGMENTS, context)
 | |
|         self.join_style = self.parameterAsEnum(parameters, self.JOIN_STYLE, context) + 1
 | |
|         self.miter_limit = self.parameterAsDouble(parameters, self.MITER_LIMIT, context)
 | |
|         return True
 | |
| 
 | |
|     def processFeature(self, feature, context, feedback):
 | |
|         input_geometry = feature.geometry()
 | |
|         if input_geometry:
 | |
|             output_geometry = input_geometry.offsetCurve(self.distance, self.segments, self.join_style, self.miter_limit)
 | |
|             if not output_geometry:
 | |
|                 raise QgsProcessingException(
 | |
|                     self.tr('Error calculating line offset'))
 | |
| 
 | |
|             feature.setGeometry(output_geometry)
 | |
| 
 | |
|         return [feature]
 |