QGIS API Documentation 3.41.0-Master (af5edcb665c)
Loading...
Searching...
No Matches
qgsalgorithmrandompointsinpolygons.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmrandompointsinpolygons.cpp
3 ---------------------
4 begin : March 2020
5 copyright : (C) 2020 by HÃ¥vard Tveite
6 email : havard dot tveite at nmbu dot no
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
20#include "qgsspatialindex.h"
21
22#include <random>
23
25
26QString QgsRandomPointsInPolygonsAlgorithm::name() const
27{
28 return QStringLiteral( "randompointsinpolygons" );
29}
30
31QString QgsRandomPointsInPolygonsAlgorithm::displayName() const
32{
33 return QObject::tr( "Random points in polygons" );
34}
35
36QStringList QgsRandomPointsInPolygonsAlgorithm::tags() const
37{
38 return QObject::tr( "seed,attributes,create" ).split( ',' );
39}
40
41QString QgsRandomPointsInPolygonsAlgorithm::group() const
42{
43 return QObject::tr( "Vector creation" );
44}
45
46QString QgsRandomPointsInPolygonsAlgorithm::groupId() const
47{
48 return QStringLiteral( "vectorcreation" );
49}
50
51void QgsRandomPointsInPolygonsAlgorithm::initAlgorithm( const QVariantMap & )
52{
53 addParameter( new QgsProcessingParameterFeatureSource( INPUT, QObject::tr( "Input polygon layer" ), QList<int>() << static_cast<int>( Qgis::ProcessingSourceType::VectorPolygon ) ) );
54 std::unique_ptr<QgsProcessingParameterNumber> numberPointsParam = std::make_unique<QgsProcessingParameterNumber>( POINTS_NUMBER, QObject::tr( "Number of points for each feature" ), Qgis::ProcessingNumberParameterType::Integer, 1, false, 1 );
55 numberPointsParam->setIsDynamic( true );
56 numberPointsParam->setDynamicPropertyDefinition( QgsPropertyDefinition( POINTS_NUMBER, QObject::tr( "Number of points for each feature" ), QgsPropertyDefinition::IntegerPositive ) );
57 numberPointsParam->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) );
58 addParameter( numberPointsParam.release() );
59
60 std::unique_ptr<QgsProcessingParameterDistance> minDistParam = std::make_unique<QgsProcessingParameterDistance>( MIN_DISTANCE, QObject::tr( "Minimum distance between points" ), 0, INPUT, true, 0 );
61 minDistParam->setIsDynamic( true );
62 minDistParam->setDynamicPropertyDefinition( QgsPropertyDefinition( MIN_DISTANCE, QObject::tr( "Minimum distance between points" ), QgsPropertyDefinition::DoublePositive ) );
63 minDistParam->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) );
64 addParameter( minDistParam.release() );
65
66 std::unique_ptr<QgsProcessingParameterDistance> minDistGlobalParam = std::make_unique<QgsProcessingParameterDistance>( MIN_DISTANCE_GLOBAL, QObject::tr( "Global minimum distance between points" ), 0, INPUT, true, 0 );
67 minDistGlobalParam->setFlags( minDistGlobalParam->flags() | Qgis::ProcessingParameterFlag::Advanced );
68 addParameter( minDistGlobalParam.release() );
69
70 std::unique_ptr<QgsProcessingParameterNumber> maxAttemptsParam = std::make_unique<QgsProcessingParameterNumber>( MAX_TRIES_PER_POINT, QObject::tr( "Maximum number of search attempts (for Min. dist. > 0)" ), Qgis::ProcessingNumberParameterType::Integer, 10, true, 1 );
71 maxAttemptsParam->setFlags( maxAttemptsParam->flags() | Qgis::ProcessingParameterFlag::Advanced );
72 maxAttemptsParam->setIsDynamic( true );
73 maxAttemptsParam->setDynamicPropertyDefinition( QgsPropertyDefinition( MAX_TRIES_PER_POINT, QObject::tr( "Maximum number of attempts per point (for Min. dist. > 0)" ), QgsPropertyDefinition::IntegerPositiveGreaterZero ) );
74 maxAttemptsParam->setDynamicLayerParameterName( QStringLiteral( "INPUT" ) );
75 addParameter( maxAttemptsParam.release() );
76
77 std::unique_ptr<QgsProcessingParameterNumber> randomSeedParam = std::make_unique<QgsProcessingParameterNumber>( SEED, QObject::tr( "Random seed" ), Qgis::ProcessingNumberParameterType::Integer, QVariant(), true, 1 );
78 randomSeedParam->setFlags( randomSeedParam->flags() | Qgis::ProcessingParameterFlag::Advanced );
79 addParameter( randomSeedParam.release() );
80
81 std::unique_ptr<QgsProcessingParameterBoolean> includePolygonAttrParam = std::make_unique<QgsProcessingParameterBoolean>( INCLUDE_POLYGON_ATTRIBUTES, QObject::tr( "Include polygon attributes" ), true );
82 includePolygonAttrParam->setFlags( includePolygonAttrParam->flags() | Qgis::ProcessingParameterFlag::Advanced );
83 addParameter( includePolygonAttrParam.release() );
84
85 addParameter( new QgsProcessingParameterFeatureSink( OUTPUT, QObject::tr( "Random points in polygons" ), Qgis::ProcessingSourceType::VectorPoint ) );
86
87 addOutput( new QgsProcessingOutputNumber( OUTPUT_POINTS, QObject::tr( "Total number of points generated" ) ) );
88 addOutput( new QgsProcessingOutputNumber( POINTS_MISSED, QObject::tr( "Number of missed points" ) ) );
89 addOutput( new QgsProcessingOutputNumber( POLYGONS_WITH_MISSED_POINTS, QObject::tr( "Number of polygons with missed points" ) ) );
90 addOutput( new QgsProcessingOutputNumber( FEATURES_WITH_EMPTY_OR_NO_GEOMETRY, QObject::tr( "Number of features with empty or no geometry" ) ) );
91}
92
93QString QgsRandomPointsInPolygonsAlgorithm::shortHelpString() const
94{
95 return QObject::tr( "<p>This algorithm creates a point layer, with points placed randomly "
96 "in the polygons of the <i><b>Input polygon layer</b></i>.</p> "
97 "<ul><li>For each feature in the <i><b>Input polygon layer</b></i>, the algorithm attempts to add "
98 "the specified <i><b>Number of points for each feature</b></i> to the output layer.</li> "
99 "<li>A <i><b>Minimum distance between points</b></i> and a "
100 "<i><b>Global minimum distance between points</b></i> can be specified.<br> "
101 "A point will not be added if there is an already generated point within "
102 "this (Euclidean) distance from the generated location. "
103 "With <i>Minimum distance between points</i>, only points in the same "
104 "polygon feature are considered, while for <i>Global minimum distance "
105 "between points</i> all previously generated points are considered. "
106 "If the <i>Global minimum distance between points</i> is set equal to "
107 "or larger than the (local) <i>Minimum distance between points</i>, the "
108 "latter has no effect.<br> "
109 "If the <i>Minimum distance between points</i> is too large, "
110 "it may not be possible to generate the specified <i>Number of points "
111 "for each feature</i>, but all the generated points are returned.</li> "
112 "<li>The <i><b>Maximum number of attempts per point</b></i> can be specified.</li> "
113 "<li>The seed for the random generator can be provided (<b><i>Random seed</i></b> "
114 "- integer, greater than 0).</li> "
115 "<li>The user can choose not to <i><b>Include polygon feature attributes</b></i> in "
116 "the attributes of the generated point features.</li> "
117 "</ul> "
118 "The total number of points will be<br> <b>'number of input features'</b> * "
119 "<i><b>Number of points for each feature</b></i><br> if there are no misses. "
120 "The <i>Number of points for each feature</i>, <i>Minimum distance between points</i> "
121 "and <i>Maximum number of attempts per point</i> can be data defined. "
122 "<p>Output from the algorithm:</p> "
123 "<ul> "
124 "<li> The number of features with an empty or no geometry "
125 "(<code>FEATURES_WITH_EMPTY_OR_NO_GEOMETRY</code>).</li> "
126 "<li> A point layer containing the random points (<code>OUTPUT</code>).</li> "
127 "<li> The number of generated features (<code>OUTPUT_POINTS</code>).</li> "
128 "<li> The number of missed points (<code>POINTS_MISSED</code>).</li> "
129 "<li> The number of features with non-empty geometry and missing points "
130 "(<code>POLYGONS_WITH_MISSED_POINTS</code>).</li> "
131 "</ul>"
132 );
133}
134
135
136QgsRandomPointsInPolygonsAlgorithm *QgsRandomPointsInPolygonsAlgorithm::createInstance() const
137{
138 return new QgsRandomPointsInPolygonsAlgorithm();
139}
140
141bool QgsRandomPointsInPolygonsAlgorithm::prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback * )
142{
143 mNumPoints = parameterAsInt( parameters, POINTS_NUMBER, context );
144 mDynamicNumPoints = QgsProcessingParameters::isDynamic( parameters, POINTS_NUMBER );
145 if ( mDynamicNumPoints )
146 mNumPointsProperty = parameters.value( POINTS_NUMBER ).value<QgsProperty>();
147
148 mMinDistance = parameterAsDouble( parameters, MIN_DISTANCE, context );
149 mDynamicMinDistance = QgsProcessingParameters::isDynamic( parameters, MIN_DISTANCE );
150 if ( mDynamicMinDistance )
151 mMinDistanceProperty = parameters.value( MIN_DISTANCE ).value<QgsProperty>();
152
153 mMaxAttempts = parameterAsInt( parameters, MAX_TRIES_PER_POINT, context );
154 mDynamicMaxAttempts = QgsProcessingParameters::isDynamic( parameters, MAX_TRIES_PER_POINT );
155 if ( mDynamicMaxAttempts )
156 mMaxAttemptsProperty = parameters.value( MAX_TRIES_PER_POINT ).value<QgsProperty>();
157
158 mMinDistanceGlobal = parameterAsDouble( parameters, MIN_DISTANCE_GLOBAL, context );
159
160 mUseRandomSeed = parameters.value( SEED ).isValid();
161 mRandSeed = parameterAsInt( parameters, SEED, context );
162 mIncludePolygonAttr = parameterAsBoolean( parameters, INCLUDE_POLYGON_ATTRIBUTES, context );
163 return true;
164}
165
166QVariantMap QgsRandomPointsInPolygonsAlgorithm::processAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback )
167{
168 std::unique_ptr<QgsProcessingFeatureSource> polygonSource( parameterAsSource( parameters, INPUT, context ) );
169 if ( !polygonSource )
170 throw QgsProcessingException( invalidSourceError( parameters, INPUT ) );
171
172 QgsFields fields;
173 fields.append( QgsField( QStringLiteral( "rand_point_id" ), QMetaType::Type::LongLong ) );
174 if ( mIncludePolygonAttr )
175 fields.extend( polygonSource->fields() );
176
177 QString ldest;
178 std::unique_ptr<QgsFeatureSink> sink( parameterAsSink( parameters, OUTPUT, context, ldest, fields, Qgis::WkbType::Point, polygonSource->sourceCrs() ) );
179 if ( !sink )
180 throw QgsProcessingException( invalidSinkError( parameters, OUTPUT ) );
181
182 QgsExpressionContext expressionContext = createExpressionContext( parameters, context, polygonSource.get() );
183
184 // Initialize random engine -- note that we only use this if the user has specified a fixed seed
185 std::random_device rd;
186 std::mt19937 mt( !mUseRandomSeed ? rd() : mRandSeed );
187 const std::uniform_real_distribution<> uniformDist( 0, 1 );
188 std::uniform_int_distribution<> uniformIntDist( 1, 999999999 );
189
190 // Index for finding global close points (mMinDistance != 0)
191 QgsSpatialIndex globalIndex;
192 int indexPoints = 0;
193
194 int totNPoints = 0;
195 int missedPoints = 0;
196 int missedPolygons = 0;
197 int emptyOrNullGeom = 0;
198
199 long long attempts = 0; // used for unique feature IDs in the indexes
200 const long numberOfFeatures = polygonSource->featureCount();
201 long long desiredNumberOfPoints = 0;
202 const double featureProgressStep = 100.0 / ( numberOfFeatures > 0 ? numberOfFeatures : 1 );
203 double baseFeatureProgress = 0.0;
204 QgsFeature polyFeat;
205 QgsFeatureIterator fitL = mIncludePolygonAttr || mDynamicNumPoints || mDynamicMinDistance || mDynamicMaxAttempts ? polygonSource->getFeatures()
206 : polygonSource->getFeatures( QgsFeatureRequest().setNoAttributes() );
207 while ( fitL.nextFeature( polyFeat ) )
208 {
209 if ( feedback->isCanceled() )
210 {
211 feedback->setProgress( 0 );
212 break;
213 }
214 if ( !polyFeat.hasGeometry() )
215 {
216 // Increment invalid features count
217 emptyOrNullGeom++;
218 baseFeatureProgress += featureProgressStep;
219 feedback->setProgress( baseFeatureProgress );
220 continue;
221 }
222 const QgsGeometry polyGeom( polyFeat.geometry() );
223 if ( polyGeom.isEmpty() )
224 {
225 // Increment invalid features count
226 emptyOrNullGeom++;
227 baseFeatureProgress += featureProgressStep;
228 feedback->setProgress( baseFeatureProgress );
229 continue;
230 }
231 if ( mDynamicNumPoints || mDynamicMinDistance || mDynamicMaxAttempts )
232 {
233 expressionContext.setFeature( polyFeat );
234 }
235 // (Re)initialize the local (per polygon) index
236 QgsSpatialIndex localIndex;
237 int localIndexPoints = 0;
238 int pointsAddedForThisFeature = 0;
239 // Get data defined parameters
240 int numberPointsForThisFeature = mNumPoints;
241 if ( mDynamicNumPoints )
242 {
243 numberPointsForThisFeature = mNumPointsProperty.valueAsInt( expressionContext, 0 );
244 }
245 desiredNumberOfPoints += numberPointsForThisFeature;
246 int maxAttemptsForThisFeature = mMaxAttempts;
247 if ( mDynamicMaxAttempts )
248 maxAttemptsForThisFeature = mMaxAttemptsProperty.valueAsInt( expressionContext, maxAttemptsForThisFeature );
249 double minDistanceForThisFeature = mMinDistance;
250 if ( mDynamicMinDistance )
251 minDistanceForThisFeature = mMinDistanceProperty.valueAsDouble( expressionContext, minDistanceForThisFeature );
252 const double pointProgressIncrement = featureProgressStep / ( numberPointsForThisFeature * maxAttemptsForThisFeature );
253 double pointProgress = 0.0;
254 // Check if we can avoid using the acceptPoint function
255 if ( ( minDistanceForThisFeature == 0 ) && ( mMinDistanceGlobal == 0 ) )
256 {
257 QVector<QgsPointXY> newPoints = polyGeom.randomPointsInPolygon( numberPointsForThisFeature, mUseRandomSeed ? uniformIntDist( mt ) : 0 );
258 for ( int i = 0; i < newPoints.length(); i++ )
259 {
260 // add the point
261 const QgsPointXY pt = newPoints[i];
262 QgsFeature f = QgsFeature( totNPoints );
263 QgsAttributes pAttrs = QgsAttributes();
264 pAttrs.append( totNPoints );
265 if ( mIncludePolygonAttr )
266 {
267 pAttrs.append( polyFeat.attributes() );
268 }
269 f.setAttributes( pAttrs );
270 const QgsGeometry newGeom = QgsGeometry::fromPointXY( pt );
271 f.setGeometry( newGeom );
272 if ( !sink->addFeature( f, QgsFeatureSink::FastInsert ) )
273 throw QgsProcessingException( writeFeatureError( sink.get(), parameters, QStringLiteral( "OUTPUT" ) ) );
274 totNPoints++;
275 pointsAddedForThisFeature++;
276 pointProgress += pointProgressIncrement * ( maxAttemptsForThisFeature );
277 }
278 feedback->setProgress( baseFeatureProgress + pointProgress );
279 continue;
280 }
281 else
282 {
283 // Have to check for minimum distance, provide the acceptPoints function
284 QVector<QgsPointXY> newPoints = polyGeom.randomPointsInPolygon( numberPointsForThisFeature, [&]( const QgsPointXY &newPoint ) -> bool {
285 attempts++;
286 // May have to check minimum distance to existing points
287 // The first point can always be added
288 // Local first (if larger than global)
289 if ( minDistanceForThisFeature != 0 && mMinDistanceGlobal < minDistanceForThisFeature && localIndexPoints > 0 )
290 {
291 const QList<QgsFeatureId> neighbors = localIndex.nearestNeighbor( newPoint, 1, minDistanceForThisFeature );
292 //if ( totNPoints > 0 && !neighbors.empty() )
293 if ( !neighbors.empty() )
294 {
295 return false;
296 }
297 }
298 // The global
299 if ( mMinDistanceGlobal != 0.0 && indexPoints > 0 )
300 {
301 const QList<QgsFeatureId> neighbors = globalIndex.nearestNeighbor( newPoint, 1, mMinDistanceGlobal );
302 //if ( totNPoints > 0 && !neighbors.empty() )
303 if ( !neighbors.empty() )
304 {
305 return false;
306 }
307 }
308 // Point is accepted - add it to the indexes
309 QgsFeature f = QgsFeature( attempts );
310 QgsAttributes pAttrs = QgsAttributes();
311 pAttrs.append( attempts );
312 f.setAttributes( pAttrs );
313 const QgsGeometry newGeom = QgsGeometry::fromPointXY( newPoint );
314
315 f.setGeometry( newGeom );
316 //totNPoints++;
317
318 if ( minDistanceForThisFeature != 0 )
319 {
320 if ( !localIndex.addFeature( f ) )
321 throw QgsProcessingException( writeFeatureError( sink.get(), parameters, QString() ) );
322 localIndexPoints++;
323 }
324 if ( mMinDistanceGlobal != 0.0 )
325 {
326 if ( !globalIndex.addFeature( f ) )
327 throw QgsProcessingException( writeFeatureError( sink.get(), parameters, QString() ) );
328 indexPoints++;
329 }
330 return true; }, mUseRandomSeed ? uniformIntDist( mt ) : 0, feedback, maxAttemptsForThisFeature );
331
332 // create and output features for the generated points
333 for ( int i = 0; i < newPoints.length(); i++ )
334 {
335 const QgsPointXY pt = newPoints[i];
336 QgsFeature f = QgsFeature( totNPoints );
337 QgsAttributes pAttrs = QgsAttributes();
338 pAttrs.append( totNPoints );
339 if ( mIncludePolygonAttr )
340 {
341 pAttrs.append( polyFeat.attributes() );
342 }
343 f.setAttributes( pAttrs );
344 const QgsGeometry newGeom = QgsGeometry::fromPointXY( pt );
345 f.setGeometry( newGeom );
346 if ( !sink->addFeature( f, QgsFeatureSink::FastInsert ) )
347 throw QgsProcessingException( writeFeatureError( sink.get(), parameters, QStringLiteral( "OUTPUT" ) ) );
348 totNPoints++;
349 pointsAddedForThisFeature++;
350 pointProgress += pointProgressIncrement * ( maxAttemptsForThisFeature );
351 }
352 feedback->setProgress( baseFeatureProgress + pointProgress );
353 }
354
355 baseFeatureProgress += featureProgressStep;
356 if ( pointsAddedForThisFeature < numberPointsForThisFeature )
357 {
358 missedPolygons++;
359 }
360 feedback->setProgress( baseFeatureProgress );
361 } // while features
362 missedPoints = desiredNumberOfPoints - totNPoints;
363 feedback->pushInfo( QObject::tr( "Total number of points generated: "
364 "%1\nNumber of missed points: "
365 "%2\nPolygons with missing points: "
366 "%3\nFeatures with empty or missing "
367 "geometries: %4"
368 )
369 .arg( totNPoints )
370 .arg( missedPoints )
371 .arg( missedPolygons )
372 .arg( emptyOrNullGeom ) );
373
374 sink->finalize();
375
376 QVariantMap outputs;
377 outputs.insert( OUTPUT, ldest );
378 outputs.insert( OUTPUT_POINTS, totNPoints );
379 outputs.insert( POINTS_MISSED, missedPoints );
380 outputs.insert( POLYGONS_WITH_MISSED_POINTS, missedPolygons );
381 outputs.insert( FEATURES_WITH_EMPTY_OR_NO_GEOMETRY, emptyOrNullGeom );
382
383 return outputs;
384}
385
@ VectorPoint
Vector point layers.
@ VectorPolygon
Vector polygon layers.
@ Advanced
Parameter is an advanced parameter which should be hidden from users by default.
A vector of attributes.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
Fetch next feature and stores in f, returns true on success.
This class wraps a request for features to a vector layer (or directly its vector data provider).
QgsFeatureRequest & setNoAttributes()
Set that no attributes will be fetched.
@ FastInsert
Use faster inserts, at the cost of updating the passed features to reflect changes made at the provid...
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
QgsAttributes attributes
Definition qgsfeature.h:67
void setAttributes(const QgsAttributes &attrs)
Sets the feature's attributes.
QgsGeometry geometry
Definition qgsfeature.h:69
bool hasGeometry() const
Returns true if the feature has an associated geometry.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition qgsfeedback.h:53
void setProgress(double progress)
Sets the current progress for the feedback object.
Definition qgsfeedback.h:61
Encapsulate a field in an attribute table or data source.
Definition qgsfield.h:53
Container of fields for a vector layer.
Definition qgsfields.h:46
bool append(const QgsField &field, Qgis::FieldOrigin origin=Qgis::FieldOrigin::Provider, int originIndex=-1)
Appends a field.
Definition qgsfields.cpp:70
void extend(const QgsFields &other)
Extends with fields from another QgsFields container.
A geometry is the spatial representation of a feature.
static QgsGeometry fromPointXY(const QgsPointXY &point)
Creates a new geometry from a QgsPointXY object.
A class to represent a 2D point.
Definition qgspointxy.h:60
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.
virtual void pushInfo(const QString &info)
Pushes a general informational message from the algorithm.
A numeric output for processing algorithms.
A feature sink output for processing algorithms.
An input feature source (such as vector layers) parameter for processing algorithms.
static bool isDynamic(const QVariantMap &parameters, const QString &name)
Returns true if the parameter with matching name is a dynamic parameter, and must be evaluated once f...
Definition for a property.
Definition qgsproperty.h:45
@ IntegerPositiveGreaterZero
Non-zero positive integer values.
Definition qgsproperty.h:54
@ IntegerPositive
Positive integer values (including 0)
Definition qgsproperty.h:53
@ DoublePositive
Positive double value (including 0)
Definition qgsproperty.h:56
A store for object properties.
double valueAsDouble(const QgsExpressionContext &context, double defaultValue=0.0, bool *ok=nullptr) const
Calculates the current value of the property and interprets it as a double.
int valueAsInt(const QgsExpressionContext &context, int defaultValue=0, bool *ok=nullptr) const
Calculates the current value of the property and interprets it as an integer.
A spatial index for QgsFeature objects.
QList< QgsFeatureId > nearestNeighbor(const QgsPointXY &point, int neighbors=1, double maxDistance=0) const
Returns nearest neighbors to a point.
bool addFeature(QgsFeature &feature, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags()) override
Adds a feature to the index.