QGIS API Documentation 3.99.0-Master (2fe06baccd8)
Loading...
Searching...
No Matches
qgsalgorithmslope.cpp
Go to the documentation of this file.
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
20#include "qgsrasterfilewriter.h"
21#include "qgsslopefilter.h"
22
24
25QString QgsSlopeAlgorithm::name() const
26{
27 return QStringLiteral( "slope" );
28}
29
30QString QgsSlopeAlgorithm::displayName() const
31{
32 return QObject::tr( "Slope" );
33}
34
35QStringList QgsSlopeAlgorithm::tags() const
36{
37 return QObject::tr( "dem,slope,terrain" ).split( ',' );
38}
39
40QString QgsSlopeAlgorithm::group() const
41{
42 return QObject::tr( "Raster terrain analysis" );
43}
44
45QString QgsSlopeAlgorithm::groupId() const
46{
47 return QStringLiteral( "rasterterrainanalysis" );
48}
49
50QString QgsSlopeAlgorithm::shortHelpString() const
51{
52 return QObject::tr( "This algorithm calculates the angle of inclination "
53 "of the terrain from an input raster layer. The slope "
54 "is expressed in degrees." );
55}
56
57QString QgsSlopeAlgorithm::shortDescription() const
58{
59 return QObject::tr( "Calculates the angle of inclination of the terrain from an input raster layer." );
60}
61
62QgsSlopeAlgorithm *QgsSlopeAlgorithm::createInstance() const
63{
64 return new QgsSlopeAlgorithm();
65}
66
67void QgsSlopeAlgorithm::initAlgorithm( const QVariantMap & )
68{
69 addParameter( new QgsProcessingParameterRasterLayer( QStringLiteral( "INPUT" ), QObject::tr( "Elevation layer" ) ) );
70 addParameter( new QgsProcessingParameterNumber( QStringLiteral( "Z_FACTOR" ), QObject::tr( "Z factor" ), Qgis::ProcessingNumberParameterType::Double, 1, false, 0 ) );
71
72 addParameter( new QgsProcessingParameterRasterDestination( QStringLiteral( "OUTPUT" ), QObject::tr( "Slope" ) ) );
73}
74
75QVariantMap QgsSlopeAlgorithm::processAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback )
76{
77 QgsRasterLayer *inputLayer = parameterAsRasterLayer( parameters, QStringLiteral( "INPUT" ), context );
78
79 if ( !inputLayer )
80 throw QgsProcessingException( invalidRasterError( parameters, QStringLiteral( "INPUT" ) ) );
81
82 const double zFactor = parameterAsDouble( parameters, QStringLiteral( "Z_FACTOR" ), context );
83
84 const QString outputFile = parameterAsOutputLayer( parameters, QStringLiteral( "OUTPUT" ), context );
85 const QFileInfo fi( outputFile );
86 const QString outputFormat = QgsRasterFileWriter::driverForExtension( fi.suffix() );
87
88 QgsSlopeFilter slope( inputLayer->source(), outputFile, outputFormat );
89 slope.setZFactor( zFactor );
90 slope.processRaster( feedback );
91
92 QVariantMap outputs;
93 outputs.insert( QStringLiteral( "OUTPUT" ), outputFile );
94 return outputs;
95}
96
@ Double
Double/float values.
Definition qgis.h:3804
QString source() const
Returns the source for the layer.
Contains information about the context in which a processing algorithm is executed.
Custom exception class for processing related exceptions.
Base class for providing feedback from a processing algorithm.
A numeric parameter for processing algorithms.
A raster layer destination parameter, for specifying the destination path for a raster layer created ...
A raster layer parameter for processing algorithms.
static QString driverForExtension(const QString &extension)
Returns the GDAL driver name for a specified file extension.
Represents a raster layer.
Calculates slope values in a window of 3x3 cells based on first order derivatives in x- and y- direct...