mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-10-30 00:07:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			108 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| """
 | |
| ***************************************************************************
 | |
|     SetMValue.py
 | |
|     --------------
 | |
|     Date                 : July 2017
 | |
|     Copyright            : (C) 2017 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 2017'
 | |
| __copyright__ = '(C) 2017, 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 (QgsGeometry,
 | |
|                        QgsWkbTypes,
 | |
|                        QgsPropertyDefinition,
 | |
|                        QgsProcessingParameters,
 | |
|                        QgsProcessingParameterNumber,
 | |
|                        QgsProcessingFeatureSource)
 | |
| 
 | |
| 
 | |
| from processing.algs.qgis.QgisAlgorithm import QgisFeatureBasedAlgorithm
 | |
| 
 | |
| pluginPath = os.path.split(os.path.split(os.path.dirname(__file__))[0])[0]
 | |
| 
 | |
| 
 | |
| class SetMValue(QgisFeatureBasedAlgorithm):
 | |
| 
 | |
|     M_VALUE = 'M_VALUE'
 | |
| 
 | |
|     def group(self):
 | |
|         return self.tr('Vector geometry')
 | |
| 
 | |
|     def groupId(self):
 | |
|         return 'vectorgeometry'
 | |
| 
 | |
|     def __init__(self):
 | |
|         super().__init__()
 | |
|         self.m_value = 0
 | |
|         self.dynamic_m = False
 | |
|         self.m_property = None
 | |
| 
 | |
|     def name(self):
 | |
|         return 'setmvalue'
 | |
| 
 | |
|     def displayName(self):
 | |
|         return self.tr('Set M value')
 | |
| 
 | |
|     def outputName(self):
 | |
|         return self.tr('M Added')
 | |
| 
 | |
|     def tags(self):
 | |
|         return self.tr('set,add,m,measure,values').split(',')
 | |
| 
 | |
|     def initParameters(self, config=None):
 | |
|         m_param = QgsProcessingParameterNumber(self.M_VALUE,
 | |
|                                                self.tr('M Value'), QgsProcessingParameterNumber.Double, defaultValue=0.0)
 | |
|         m_param.setIsDynamic(True)
 | |
|         m_param.setDynamicLayerParameterName('INPUT')
 | |
|         m_param.setDynamicPropertyDefinition(QgsPropertyDefinition(self.M_VALUE, self.tr("M Value"), QgsPropertyDefinition.Double))
 | |
|         self.addParameter(m_param)
 | |
| 
 | |
|     def outputWkbType(self, inputWkb):
 | |
|         return QgsWkbTypes.addM(inputWkb)
 | |
| 
 | |
|     def prepareAlgorithm(self, parameters, context, feedback):
 | |
|         self.m_value = self.parameterAsDouble(parameters, self.M_VALUE, context)
 | |
|         self.dynamic_m = QgsProcessingParameters.isDynamic(parameters, self.M_VALUE)
 | |
|         if self.dynamic_m:
 | |
|             self.m_property = parameters[self.M_VALUE]
 | |
|         return True
 | |
| 
 | |
|     def sourceFlags(self):
 | |
|         return QgsProcessingFeatureSource.FlagSkipGeometryValidityChecks
 | |
| 
 | |
|     def processFeature(self, feature, context, feedback):
 | |
|         input_geometry = feature.geometry()
 | |
|         if input_geometry:
 | |
|             new_geom = input_geometry.constGet().clone()
 | |
|             if QgsWkbTypes.hasM(new_geom.wkbType()):
 | |
|                 # addMValue won't alter existing M values, so drop them first
 | |
|                 new_geom.dropMValue()
 | |
| 
 | |
|             m = self.m_value
 | |
|             if self.dynamic_m:
 | |
|                 m, ok = self.m_property.valueAsDouble(context.expressionContext(), m)
 | |
|             new_geom.addMValue(m)
 | |
| 
 | |
|             feature.setGeometry(QgsGeometry(new_geom))
 | |
| 
 | |
|         return [feature]
 |