Navigation Menu

Skip to content

Commit

Permalink
register random raster and normal raster algorithms
Browse files Browse the repository at this point in the history
  • Loading branch information
root676 authored and nyalldawson committed Apr 20, 2020
1 parent 36d25f3 commit ca62140
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/analysis/CMakeLists.txt
Expand Up @@ -94,6 +94,7 @@ SET(QGIS_ANALYSIS_SRCS
processing/qgsalgorithmmultiparttosinglepart.cpp
processing/qgsalgorithmmultiringconstantbuffer.cpp
processing/qgsalgorithmnearestneighbouranalysis.cpp
processing/qgsalgorithmnormalraster.cpp
processing/qgsalgorithmoffsetlines.cpp
processing/qgsalgorithmorderbyexpression.cpp
processing/qgsalgorithmorientedminimumboundingbox.cpp
Expand All @@ -114,6 +115,7 @@ SET(QGIS_ANALYSIS_SRCS
processing/qgsalgorithmrandomextract.cpp
processing/qgsalgorithmrandompointsextent.cpp
processing/qgsalgorithmrandompointsonlines.cpp
processing/qgsalgorithmrandomraster.cpp
processing/qgsalgorithmrasterlayeruniquevalues.cpp
processing/qgsalgorithmrasterlogicalop.cpp
processing/qgsalgorithmrasterize.cpp
Expand Down
4 changes: 4 additions & 0 deletions src/analysis/processing/qgsnativealgorithms.cpp
Expand Up @@ -89,6 +89,7 @@
#include "qgsalgorithmmultiparttosinglepart.h"
#include "qgsalgorithmmultiringconstantbuffer.h"
#include "qgsalgorithmnearestneighbouranalysis.h"
#include "qgsalgorithmnormalraster.h"
#include "qgsalgorithmoffsetlines.h"
#include "qgsalgorithmorderbyexpression.h"
#include "qgsalgorithmorientedminimumboundingbox.h"
Expand All @@ -108,6 +109,7 @@
#include "qgsalgorithmrandomextract.h"
#include "qgsalgorithmrandompointsextent.h"
#include "qgsalgorithmrandompointsonlines.h"
#include "qgsalgorithmrandomraster.h"
#include "qgsalgorithmrasterlayeruniquevalues.h"
#include "qgsalgorithmrasterlogicalop.h"
#include "qgsalgorithmrasterize.h"
Expand Down Expand Up @@ -293,6 +295,7 @@ void QgsNativeAlgorithms::loadAlgorithms()
addAlgorithm( new QgsMultipartToSinglepartAlgorithm() );
addAlgorithm( new QgsMultiRingConstantBufferAlgorithm() );
addAlgorithm( new QgsNearestNeighbourAnalysisAlgorithm() );
addAlgorithm( new QgsNormalRasterAlgorithm() );
addAlgorithm( new QgsOffsetLinesAlgorithm() );
addAlgorithm( new QgsOrderByExpressionAlgorithm() );
addAlgorithm( new QgsOrientedMinimumBoundingBoxAlgorithm() );
Expand All @@ -313,6 +316,7 @@ void QgsNativeAlgorithms::loadAlgorithms()
addAlgorithm( new QgsRandomExtractAlgorithm() );
addAlgorithm( new QgsRandomPointsExtentAlgorithm() );
addAlgorithm( new QgsRandomPointsOnLinesAlgorithm() );
addAlgorithm( new QgsRandomRasterAlgorithm() );
addAlgorithm( new QgsRasterLayerUniqueValuesReportAlgorithm() );
addAlgorithm( new QgsRasterLayerZonalStatsAlgorithm() );
addAlgorithm( new QgsRasterLogicalAndAlgorithm() );
Expand Down

0 comments on commit ca62140

Please sign in to comment.