Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmaspect.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 "qgsalgorithmaspect.h" 19 : : #include "qgsrasterfilewriter.h" 20 : : #include "qgsaspectfilter.h" 21 : : 22 : : ///@cond PRIVATE 23 : : 24 : 0 : QString QgsAspectAlgorithm::name() const 25 : : { 26 : 0 : return QStringLiteral( "aspect" ); 27 : : } 28 : : 29 : 0 : QString QgsAspectAlgorithm::displayName() const 30 : : { 31 : 0 : return QObject::tr( "Aspect" ); 32 : : } 33 : : 34 : 0 : QStringList QgsAspectAlgorithm::tags() const 35 : : { 36 : 0 : return QObject::tr( "dem,aspect,terrain" ).split( ',' ); 37 : 0 : } 38 : : 39 : 0 : QString QgsAspectAlgorithm::group() const 40 : : { 41 : 0 : return QObject::tr( "Raster terrain analysis" ); 42 : : } 43 : : 44 : 0 : QString QgsAspectAlgorithm::groupId() const 45 : : { 46 : 0 : return QStringLiteral( "rasterterrainanalysis" ); 47 : : } 48 : : 49 : 0 : QString QgsAspectAlgorithm::shortHelpString() const 50 : : { 51 : 0 : return QObject::tr( "This algorithm calculates the aspect of the Digital Terrain Model in input." ) 52 : 0 : + QStringLiteral( "\n\n" ) 53 : 0 : + QObject::tr( "The final aspect raster layer contains values from 0 to 360 that express " 54 : : "the slope direction: starting from North (0°) and continuing clockwise." ); 55 : 0 : } 56 : : 57 : 0 : QgsAspectAlgorithm *QgsAspectAlgorithm::createInstance() const 58 : : { 59 : 0 : return new QgsAspectAlgorithm(); 60 : : } 61 : : 62 : 0 : void QgsAspectAlgorithm::initAlgorithm( const QVariantMap & ) 63 : : { 64 : 0 : addParameter( new QgsProcessingParameterRasterLayer( QStringLiteral( "INPUT" ), QObject::tr( "Elevation layer" ) ) ); 65 : 0 : addParameter( new QgsProcessingParameterNumber( QStringLiteral( "Z_FACTOR" ), QObject::tr( "Z factor" ), 66 : 0 : QgsProcessingParameterNumber::Double, 1, false, 0 ) ); 67 : : 68 : 0 : addParameter( new QgsProcessingParameterRasterDestination( QStringLiteral( "OUTPUT" ), QObject::tr( "Aspect" ) ) ); 69 : 0 : } 70 : : 71 : 0 : QVariantMap QgsAspectAlgorithm::processAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) 72 : : { 73 : 0 : QgsRasterLayer *inputLayer = parameterAsRasterLayer( parameters, QStringLiteral( "INPUT" ), context ); 74 : : 75 : 0 : if ( !inputLayer ) 76 : 0 : throw QgsProcessingException( invalidRasterError( parameters, QStringLiteral( "INPUT" ) ) ); 77 : : 78 : 0 : double zFactor = parameterAsDouble( parameters, QStringLiteral( "Z_FACTOR" ), context ); 79 : : 80 : 0 : const QString outputFile = parameterAsOutputLayer( parameters, QStringLiteral( "OUTPUT" ), context ); 81 : 0 : QFileInfo fi( outputFile ); 82 : 0 : const QString outputFormat = QgsRasterFileWriter::driverForExtension( fi.suffix() ); 83 : : 84 : 0 : QgsAspectFilter aspect( inputLayer->source(), outputFile, outputFormat ); 85 : 0 : aspect.setZFactor( zFactor ); 86 : 0 : aspect.processRaster( feedback ); 87 : : 88 : 0 : QVariantMap outputs; 89 : 0 : outputs.insert( QStringLiteral( "OUTPUT" ), outputFile ); 90 : 0 : return outputs; 91 : 0 : } 92 : : 93 : : ///@endcond