24QString QgsAspectAlgorithm::name()
 const 
   26  return QStringLiteral( 
"aspect" );
 
   29QString QgsAspectAlgorithm::displayName()
 const 
   31  return QObject::tr( 
"Aspect" );
 
   34QStringList QgsAspectAlgorithm::tags()
 const 
   36  return QObject::tr( 
"dem,aspect,terrain,slope" ).split( 
',' );
 
   39QString QgsAspectAlgorithm::group()
 const 
   41  return QObject::tr( 
"Raster terrain analysis" );
 
   44QString QgsAspectAlgorithm::groupId()
 const 
   46  return QStringLiteral( 
"rasterterrainanalysis" );
 
   49QString QgsAspectAlgorithm::shortHelpString()
 const 
   51  return QObject::tr( 
"This algorithm calculates the aspect of the Digital Terrain Model in input." )
 
   52         + QStringLiteral( 
"\n\n" )
 
   53         + 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." );
 
   57QString QgsAspectAlgorithm::shortDescription()
 const 
   59  return QObject::tr( 
"Generates a raster layer representing the slope direction from a Digital Terrain Model." );
 
   62QgsAspectAlgorithm *QgsAspectAlgorithm::createInstance()
 const 
   64  return new QgsAspectAlgorithm();
 
   67void QgsAspectAlgorithm::initAlgorithm( 
const QVariantMap & )
 
   77  QgsRasterLayer *inputLayer = parameterAsRasterLayer( parameters, QStringLiteral( 
"INPUT" ), context );
 
   82  const double zFactor = parameterAsDouble( parameters, QStringLiteral( 
"Z_FACTOR" ), context );
 
   84  const QString outputFile = parameterAsOutputLayer( parameters, QStringLiteral( 
"OUTPUT" ), context );
 
   85  const QFileInfo fi( outputFile );
 
   89  aspect.setZFactor( zFactor );
 
   90  aspect.processRaster( feedback );
 
   93  outputs.insert( QStringLiteral( 
"OUTPUT" ), outputFile );
 
@ Double
Double/float values.
 
Calculates aspect values in a window of 3x3 cells based on first order derivatives in x- and y- direc...
 
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.