24 QString QgsSlopeAlgorithm::name()
 const 
   26   return QStringLiteral( 
"slope" );
 
   29 QString QgsSlopeAlgorithm::displayName()
 const 
   31   return QObject::tr( 
"Slope" );
 
   34 QStringList QgsSlopeAlgorithm::tags()
 const 
   36   return QObject::tr( 
"dem,slope,terrain" ).split( 
',' );
 
   39 QString QgsSlopeAlgorithm::group()
 const 
   41   return QObject::tr( 
"Raster terrain analysis" );
 
   44 QString QgsSlopeAlgorithm::groupId()
 const 
   46   return QStringLiteral( 
"rasterterrainanalysis" );
 
   49 QString QgsSlopeAlgorithm::shortHelpString()
 const 
   51   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." );
 
   56 QgsSlopeAlgorithm *QgsSlopeAlgorithm::createInstance()
 const 
   58   return new QgsSlopeAlgorithm();
 
   61 void QgsSlopeAlgorithm::initAlgorithm( 
const QVariantMap & )
 
   72   QgsRasterLayer *inputLayer = parameterAsRasterLayer( parameters, QStringLiteral( 
"INPUT" ), context );
 
   77   double zFactor = parameterAsDouble( parameters, QStringLiteral( 
"Z_FACTOR" ), context );
 
   79   const QString outputFile = parameterAsOutputLayer( parameters, QStringLiteral( 
"OUTPUT" ), context );
 
   80   QFileInfo fi( outputFile );
 
   84   slope.setZFactor( zFactor );
 
   85   slope.processRaster( feedback );
 
   88   outputs.insert( QStringLiteral( 
"OUTPUT" ), outputFile );
 
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.
@ Double
Double/float values.
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...