mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-10-31 00:06:02 -04:00 
			
		
		
		
	Prevent changes to files that weren't changed between releases. This eases review of the changes between releases significantly.
		
			
				
	
	
		
			92 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| 
 | |
| """
 | |
| ***************************************************************************
 | |
|     Hillshade.py
 | |
|     ---------------------
 | |
|     Date                 : October 2016
 | |
|     Copyright            : (C) 2016 by Alexander Bruy
 | |
|     Email                : alexander dot bruy 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__ = 'Alexander Bruy'
 | |
| __date__ = 'October 2016'
 | |
| __copyright__ = '(C) 2016, Alexander Bruy'
 | |
| 
 | |
| import os
 | |
| 
 | |
| from qgis.PyQt.QtGui import QIcon
 | |
| 
 | |
| from qgis.analysis import QgsHillshadeFilter
 | |
| from qgis.core import (QgsRasterFileWriter,
 | |
|                        QgsProcessingParameterRasterLayer,
 | |
|                        QgsProcessingParameterNumber,
 | |
|                        QgsProcessingParameterRasterDestination)
 | |
| from processing.algs.qgis.QgisAlgorithm import QgisAlgorithm
 | |
| 
 | |
| pluginPath = os.path.split(os.path.split(os.path.dirname(__file__))[0])[0]
 | |
| 
 | |
| 
 | |
| class Hillshade(QgisAlgorithm):
 | |
| 
 | |
|     INPUT = 'INPUT'
 | |
|     Z_FACTOR = 'Z_FACTOR'
 | |
|     AZIMUTH = 'AZIMUTH'
 | |
|     V_ANGLE = 'V_ANGLE'
 | |
|     OUTPUT = 'OUTPUT'
 | |
| 
 | |
|     def icon(self):
 | |
|         return QIcon(os.path.join(pluginPath, 'images', 'dem.png'))
 | |
| 
 | |
|     def group(self):
 | |
|         return self.tr('Raster terrain analysis')
 | |
| 
 | |
|     def groupId(self):
 | |
|         return 'rasterterrainanalysis'
 | |
| 
 | |
|     def __init__(self):
 | |
|         super().__init__()
 | |
| 
 | |
|     def initAlgorithm(self, config=None):
 | |
|         self.addParameter(QgsProcessingParameterRasterLayer(self.INPUT,
 | |
|                                                             self.tr('Elevation layer')))
 | |
|         self.addParameter(QgsProcessingParameterNumber(self.Z_FACTOR,
 | |
|                                                        self.tr('Z factor'), QgsProcessingParameterNumber.Double,
 | |
|                                                        1, False, 0.00))
 | |
|         self.addParameter(QgsProcessingParameterNumber(self.AZIMUTH,
 | |
|                                                        self.tr('Azimuth (horizontal angle)'), QgsProcessingParameterNumber.Double,
 | |
|                                                        300, False, 0, 360))
 | |
|         self.addParameter(QgsProcessingParameterNumber(self.V_ANGLE,
 | |
|                                                        self.tr('Vertical angle'), QgsProcessingParameterNumber.Double,
 | |
|                                                        40, False, 1, 90))
 | |
|         self.addParameter(QgsProcessingParameterRasterDestination(self.OUTPUT, self.tr('Hillshade')))
 | |
| 
 | |
|     def name(self):
 | |
|         return 'hillshade'
 | |
| 
 | |
|     def displayName(self):
 | |
|         return self.tr('Hillshade')
 | |
| 
 | |
|     def processAlgorithm(self, parameters, context, feedback):
 | |
|         inputFile = self.parameterAsRasterLayer(parameters, self.INPUT, context).source()
 | |
|         zFactor = self.parameterAsDouble(parameters, self.Z_FACTOR, context)
 | |
|         azimuth = self.parameterAsDouble(parameters, self.AZIMUTH, context)
 | |
|         vAngle = self.parameterAsDouble(parameters, self.V_ANGLE, context)
 | |
| 
 | |
|         outputFile = self.parameterAsOutputLayer(parameters, self.OUTPUT, context)
 | |
|         outputFormat = QgsRasterFileWriter.driverForExtension(os.path.splitext(outputFile)[1])
 | |
| 
 | |
|         hillshade = QgsHillshadeFilter(inputFile, outputFile, outputFormat, azimuth, vAngle)
 | |
|         hillshade.setZFactor(zFactor)
 | |
|         hillshade.processRaster(feedback)
 | |
| 
 | |
|         return {self.OUTPUT: outputFile}
 |