Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmslope.cpp 3 : : --------------------- 4 : : begin : November 2019 5 : : copyright : (C) 2019 by Alexander Bruy 6 : : email : alexander dot bruy at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #include "qgsalgorithmslope.h" 19 : : #include "qgsrasterfilewriter.h" 20 : : #include "qgsslopefilter.h" 21 : : 22 : : ///@cond PRIVATE 23 : : 24 : 0 : QString QgsSlopeAlgorithm::name() const 25 : : { 26 : 0 : return QStringLiteral( "slope" ); 27 : : } 28 : : 29 : 0 : QString QgsSlopeAlgorithm::displayName() const 30 : : { 31 : 0 : return QObject::tr( "Slope" ); 32 : : } 33 : : 34 : 0 : QStringList QgsSlopeAlgorithm::tags() const 35 : : { 36 : 0 : return QObject::tr( "dem,slope,terrain" ).split( ',' ); 37 : 0 : } 38 : : 39 : 0 : QString QgsSlopeAlgorithm::group() const 40 : : { 41 : 0 : return QObject::tr( "Raster terrain analysis" ); 42 : : } 43 : : 44 : 0 : QString QgsSlopeAlgorithm::groupId() const 45 : : { 46 : 0 : return QStringLiteral( "rasterterrainanalysis" ); 47 : : } 48 : : 49 : 0 : QString QgsSlopeAlgorithm::shortHelpString() const 50 : : { 51 : 0 : return QObject::tr( "This algorithm calculates the angle of inclination " 52 : : "of the terrain from an input raster layer. The slope " 53 : : "is expressed in degrees." ); 54 : : } 55 : : 56 : 0 : QgsSlopeAlgorithm *QgsSlopeAlgorithm::createInstance() const 57 : : { 58 : 0 : return new QgsSlopeAlgorithm(); 59 : : } 60 : : 61 : 0 : void QgsSlopeAlgorithm::initAlgorithm( const QVariantMap & ) 62 : : { 63 : 0 : addParameter( new QgsProcessingParameterRasterLayer( QStringLiteral( "INPUT" ), QObject::tr( "Elevation layer" ) ) ); 64 : 0 : addParameter( new QgsProcessingParameterNumber( QStringLiteral( "Z_FACTOR" ), QObject::tr( "Z factor" ), 65 : 0 : QgsProcessingParameterNumber::Double, 1, false, 0 ) ); 66 : : 67 : 0 : addParameter( new QgsProcessingParameterRasterDestination( QStringLiteral( "OUTPUT" ), QObject::tr( "Slope" ) ) ); 68 : 0 : } 69 : : 70 : 0 : QVariantMap QgsSlopeAlgorithm::processAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) 71 : : { 72 : 0 : QgsRasterLayer *inputLayer = parameterAsRasterLayer( parameters, QStringLiteral( "INPUT" ), context ); 73 : : 74 : 0 : if ( !inputLayer ) 75 : 0 : throw QgsProcessingException( invalidRasterError( parameters, QStringLiteral( "INPUT" ) ) ); 76 : : 77 : 0 : double zFactor = parameterAsDouble( parameters, QStringLiteral( "Z_FACTOR" ), context ); 78 : : 79 : 0 : const QString outputFile = parameterAsOutputLayer( parameters, QStringLiteral( "OUTPUT" ), context ); 80 : 0 : QFileInfo fi( outputFile ); 81 : 0 : const QString outputFormat = QgsRasterFileWriter::driverForExtension( fi.suffix() ); 82 : : 83 : 0 : QgsSlopeFilter slope( inputLayer->source(), outputFile, outputFormat ); 84 : 0 : slope.setZFactor( zFactor ); 85 : 0 : slope.processRaster( feedback ); 86 : : 87 : 0 : QVariantMap outputs; 88 : 0 : outputs.insert( QStringLiteral( "OUTPUT" ), outputFile ); 89 : 0 : return outputs; 90 : 0 : } 91 : : 92 : : ///@endcond