27using namespace Qt::StringLiterals;
31QString QgsConcaveHullAlgorithm::name()
const
33 return u
"concavehull"_s;
36QString QgsConcaveHullAlgorithm::displayName()
const
38 return QObject::tr(
"Concave hull (by layer)" );
41QStringList QgsConcaveHullAlgorithm::tags()
const
43 return QObject::tr(
"concave,hull,bounds,bounding" ).split(
',' );
46QString QgsConcaveHullAlgorithm::group()
const
48 return QObject::tr(
"Vector geometry" );
51QString QgsConcaveHullAlgorithm::groupId()
const
53 return u
"vectorgeometry"_s;
56QString QgsConcaveHullAlgorithm::shortHelpString()
const
58 return QObject::tr(
"This algorithm computes the concave hull covering all features from an input point layer." )
60 + QObject::tr(
"See the 'Concave hull (by feature)' algorithm for a concave hull calculation which covers individual features from a layer." );
63QString QgsConcaveHullAlgorithm::shortDescription()
const
65 return QObject::tr(
"Computes the concave hull of all features from an input point layer." );
68QgsConcaveHullAlgorithm *QgsConcaveHullAlgorithm::createInstance()
const
70 return new QgsConcaveHullAlgorithm();
73void QgsConcaveHullAlgorithm::initAlgorithm(
const QVariantMap & )
78 addParameter(
new QgsProcessingParameterBoolean( u
"NO_MULTIGEOMETRY"_s, QObject::tr(
"Split multipart geometry into singleparts" ),
false ) );
84 mSource.reset( parameterAsSource( parameters, u
"INPUT"_s, context ) );
88 if ( mSource->featureCount() < 3 )
91 mStep = mSource->featureCount() > 0 ? 50.0 /
static_cast<double>( mSource->featureCount() ) : 1;
93 mPercentage = parameterAsDouble( parameters, u
"ALPHA"_s, context );
94 mAllowHoles = parameterAsBool( parameters, u
"HOLES"_s, context );
95 mSplitMultipart = parameterAsBool( parameters, u
"NO_MULTIGEOMETRY"_s, context );
102 QGS_MARK_ALGORITHM_SOURCE
105 std::unique_ptr<QgsFeatureSink> sink( parameterAsSink( parameters, u
"OUTPUT"_s, context, dest,
QgsFields(),
Qgis::WkbType::Polygon, mSource->sourceCrs() ) );
109#if GEOS_VERSION_MAJOR == 3 && GEOS_VERSION_MINOR < 11
110 concaveHullQgis( sink, parameters, context, feedback );
112 concaveHullGeos( sink, parameters, feedback );
119 outputs.insert( u
"OUTPUT"_s, dest );
123void QgsConcaveHullAlgorithm::concaveHullGeos( std::unique_ptr<QgsFeatureSink> &sink,
const QVariantMap ¶meters,
QgsProcessingFeedback *feedback )
136 feedback->
setProgress(
static_cast<double>( i ) * mStep );
145 for (
auto pit = mp.const_parts_begin(); pit != mp.const_parts_end(); ++pit )
162 if ( mSplitMultipart && concaveHull.
isMultipart() )
165 mStep = collection.length() > 0 ? 50.0 /
static_cast<double>( collection.length() ) : 1;
166 for (
int i = 0; i < collection.length(); i++ )
176 geom = collection[i].removeInteriorRings();
205 feedback->
setProgressText( QObject::tr(
"Creating Delaunay triangles…" ) );
206 multiStepFeedback.setCurrentStep( 1 );
209 params[
"INPUT"] = parameters[
"INPUT"];
210 params[
"TOLERANCE"] = 0.0;
211 params[
"ADD_ATTRIBUTES"] =
false;
216 throw QgsProcessingException( QObject::tr(
"Failed to compute concave hull: Delaunay triangulation algorithm not found!" ) );
219 std::unique_ptr<QgsProcessingAlgorithm>
algorithm;
221 QVariantMap results =
algorithm->run( params, context, &multiStepFeedback );
234 feedback->
setProgressText( QObject::tr(
"Computing edges max length…" ) );
235 multiStepFeedback.setCurrentStep( 2 );
237 QVector<double> length;
238 QMap<long, double> edges;
249 multiStepFeedback.setProgress(
static_cast<double>( i ) * step );
255 for (
int j = 0; j < points.size() - 1; j++ )
257 length << std::sqrt( points.at( j ).sqrDist( points.at( j + 1 ) ) );
259 QVector<double> vec = length.mid( length.size() - 3, -1 );
260 edges[f.
id()] = *std::max_element( vec.constBegin(), vec.constEnd() );
262 const double maxLength = *std::max_element( length.constBegin(), length.constEnd() );
265 multiStepFeedback.setCurrentStep( 3 );
267 step = edges.size() > 0 ? 100.0 /
static_cast<double>( edges.size() ) : 1;
269 QMap<long, double>::iterator edgesIt = edges.begin();
270 while ( edgesIt != edges.end() )
275 if ( edgesIt.value() > mPercentage * maxLength )
277 toDelete << edgesIt.key();
282 multiStepFeedback.setProgress(
static_cast<double>( i ) * step );
286 feedback->
setProgressText( QObject::tr(
"Dissolving Delaunay triangles…" ) );
287 multiStepFeedback.setCurrentStep( 4 );
289 params[
"INPUT"] = layer->
source();
294 throw QgsProcessingException( QObject::tr(
"Failed to compute concave hull: Dissolve algorithm not found!" ) );
297 results =
algorithm->run( params, context, &multiStepFeedback );
312 multiStepFeedback.setCurrentStep( 5 );
314 if ( mSplitMultipart && concaveHull.
isMultipart() )
317 step = collection.length() > 0 ? 50.0 /
static_cast<double>( collection.length() ) : 1;
318 for (
int i = 0; i < collection.length(); i++ )
328 geom = collection[i].removeInteriorRings();
335 multiStepFeedback.setProgress( i * step );
349 multiStepFeedback.setProgress( 100 );
@ VectorPoint
Vector point layers.
@ VectorPolygon
Vector polygon layers.
@ SkipGeometryValidityChecks
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
@ Double
Double/float values.
Abstract base class for all geometries.
Qgis::WkbType wkbType() const
Returns the WKB type of the geometry.
static QgsProcessingRegistry * processingRegistry()
Returns the application's processing registry, used for managing processing providers,...
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.
Wraps a request for features to a vector layer (or directly its vector data provider).
@ 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...
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.
void setProgress(double progress)
Sets the current progress for the feedback object.
Container of fields for a vector layer.
A geometry is the spatial representation of a feature.
QgsGeometry concaveHull(double targetPercent, bool allowHoles=false, QgsFeedback *feedback=nullptr) const
Returns a possibly concave polygon that contains all the points in the geometry.
QString lastError() const
Returns an error string referring to the last error encountered either when this geometry was created...
QgsPolygonXY asPolygon() const
Returns the contents of the geometry as a polygon.
QVector< QgsGeometry > asGeometryCollection() const
Returns contents of the geometry as a list of geometries.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
bool isMultipart() const
Returns true if WKB of the geometry is of WKBMulti* type.
Qgis::GeometryOperationResult addPartV2(const QVector< QgsPointXY > &points, Qgis::WkbType wkbType=Qgis::WkbType::Unknown)
Adds a new part to a the geometry.
QgsGeometry removeInteriorRings(double minimumAllowedArea=-1) const
Removes the interior rings from a (multi)polygon geometry.
QString source() const
Returns the source for the layer.
Multi point geometry collection.
Abstract base class for processing algorithms.
QgsProcessingAlgorithm * create(const QVariantMap &configuration=QVariantMap()) const
Creates a copy of the algorithm, ready for execution.
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.
void featureSinkFinalized(const QString &output)
Reports that a feature sink has been finalized.
virtual void reportError(const QString &error, bool fatalError=false)
Reports that the algorithm encountered an error while executing.
virtual void setProgressText(const QString &text)
Sets a progress report text string.
Processing feedback object for multi-step operations.
A boolean parameter for processing algorithms.
A feature sink output for processing algorithms.
An input feature source (such as vector layers) parameter for processing algorithms.
A numeric parameter for processing algorithms.
const QgsProcessingAlgorithm * algorithmById(const QString &id) const
Finds an algorithm by its ID.
static QgsMapLayer * mapLayerFromString(const QString &string, QgsProcessingContext &context, bool allowLoadingNewLayers=true, QgsProcessingUtils::LayerHint typeHint=QgsProcessingUtils::LayerHint::UnknownType, QgsProcessing::LayerOptionsFlags flags=QgsProcessing::LayerOptionsFlags())
Interprets a string as a map layer within the supplied context.
static const QString TEMPORARY_OUTPUT
Constant used to indicate that a Processing algorithm output should be a temporary layer/file.
virtual bool deleteFeatures(const QgsFeatureIds &id)
Deletes one or more features from the provider.
Represents a vector layer which manages a vector based dataset.
long long featureCount(const QString &legendKey) const
Number of features rendered with specified legend key.
QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest()) const final
Queries the layer for features specified in request.
QgsVectorDataProvider * dataProvider() final
Returns the layer's data provider, it may be nullptr.
static Q_INVOKABLE bool isMultiType(Qgis::WkbType type)
Returns true if the WKB type is a multi type.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into allowing algorithms to be written in pure substantial changes are required in order to port existing x Processing algorithms for QGIS x The most significant changes are outlined not GeoAlgorithm For algorithms which operate on features one by consider subclassing the QgsProcessingFeatureBasedAlgorithm class This class allows much of the boilerplate code for looping over features from a vector layer to be bypassed and instead requires implementation of a processFeature method Ensure that your algorithm(or algorithm 's parent class) implements the new pure virtual createInstance(self) call
T qgsgeometry_cast(QgsAbstractGeometry *geom)
QSet< QgsFeatureId > QgsFeatureIds