QGIS API Documentation 3.99.0-Master (357b655ed83)
Loading...
Searching...
No Matches
qgsalgorithmpoleofinaccessibility.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmpoleofinaccessibility.cpp
3 ---------------------
4 begin : December 2019
5 copyright : (C) 2019 by Alexander Bruy
6 email : alexander dot bruy at gmail dot com
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
19
20#include "qgsapplication.h"
21
22#include <QString>
23
24using namespace Qt::StringLiterals;
25
27
28QString QgsPoleOfInaccessibilityAlgorithm::name() const
29{
30 return u"poleofinaccessibility"_s;
31}
32
33QString QgsPoleOfInaccessibilityAlgorithm::displayName() const
34{
35 return QObject::tr( "Pole of inaccessibility" );
36}
37
38QStringList QgsPoleOfInaccessibilityAlgorithm::tags() const
39{
40 return QObject::tr( "furthest,point,distant,extreme,maximum,centroid,center,centre" ).split( ',' );
41}
42
43QString QgsPoleOfInaccessibilityAlgorithm::group() const
44{
45 return QObject::tr( "Vector geometry" );
46}
47
48QString QgsPoleOfInaccessibilityAlgorithm::groupId() const
49{
50 return u"vectorgeometry"_s;
51}
52
53QString QgsPoleOfInaccessibilityAlgorithm::shortHelpString() const
54{
55 return QObject::tr( "This algorithm calculates the pole of inaccessibility for a polygon layer, which is the most "
56 "distant internal point from the boundary of the surface. This algorithm uses the 'polylabel' "
57 "algorithm (Vladimir Agafonkin, 2016), which is an iterative approach guaranteed to find the "
58 "true pole of inaccessibility within a specified tolerance (in layer units). More precise "
59 "tolerances require more iterations and will take longer to calculate." )
60 + u"\n\n"_s
61 + QObject::tr( "The distance from the calculated pole to the polygon boundary will be stored as a new "
62 "attribute in the output layer." );
63}
64
65QString QgsPoleOfInaccessibilityAlgorithm::shortDescription() const
66{
67 return QObject::tr( "Creates a point layer with features representing the most "
68 "distant internal point from the boundary of the surface for a polygon layer." );
69}
70
71QString QgsPoleOfInaccessibilityAlgorithm::svgIconPath() const
72{
73 return QgsApplication::iconPath( u"/algorithms/mAlgorithmCentroids.svg"_s );
74}
75
76QIcon QgsPoleOfInaccessibilityAlgorithm::icon() const
77{
78 return QgsApplication::getThemeIcon( u"/algorithms/mAlgorithmCentroids.svg"_s );
79}
80
81QString QgsPoleOfInaccessibilityAlgorithm::outputName() const
82{
83 return QObject::tr( "Point" );
84}
85
86QList<int> QgsPoleOfInaccessibilityAlgorithm::inputLayerTypes() const
87{
88 return QList<int>() << static_cast<int>( Qgis::ProcessingSourceType::VectorPolygon );
89}
90
91Qgis::ProcessingSourceType QgsPoleOfInaccessibilityAlgorithm::outputLayerType() const
92{
94}
95
96Qgis::WkbType QgsPoleOfInaccessibilityAlgorithm::outputWkbType( Qgis::WkbType inputWkbType ) const
97{
98 Q_UNUSED( inputWkbType );
99
101}
102
103QgsFields QgsPoleOfInaccessibilityAlgorithm::outputFields( const QgsFields &inputFields ) const
104{
105 QgsFields newFields;
106 newFields.append( QgsField( u"dist_pole"_s, QMetaType::Type::Double ) );
107
108 return QgsProcessingUtils::combineFields( inputFields, newFields );
109}
110
111QgsPoleOfInaccessibilityAlgorithm *QgsPoleOfInaccessibilityAlgorithm::createInstance() const
112{
113 return new QgsPoleOfInaccessibilityAlgorithm();
114}
115
116void QgsPoleOfInaccessibilityAlgorithm::initParameters( const QVariantMap & )
117{
118 auto toleranceParam = std::make_unique<QgsProcessingParameterDistance>( u"TOLERANCE"_s, QObject::tr( "Tolerance" ), 1.0, u"INPUT"_s, 0.0 );
119 toleranceParam->setIsDynamic( true );
120 toleranceParam->setDynamicPropertyDefinition( QgsPropertyDefinition( u"Tolerance"_s, QObject::tr( "Tolerance" ), QgsPropertyDefinition::Double ) );
121 toleranceParam->setDynamicLayerParameterName( u"INPUT"_s );
122 addParameter( toleranceParam.release() );
123}
124
125bool QgsPoleOfInaccessibilityAlgorithm::prepareAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback * )
126{
127 mTolerance = parameterAsDouble( parameters, u"TOLERANCE"_s, context );
128 mDynamicTolerance = QgsProcessingParameters::isDynamic( parameters, u"TOLERANCE"_s );
129 if ( mDynamicTolerance )
130 mToleranceProperty = parameters.value( u"TOLERANCE"_s ).value<QgsProperty>();
131
132 return true;
133}
134
135QgsFeatureList QgsPoleOfInaccessibilityAlgorithm::processFeature( const QgsFeature &feature, QgsProcessingContext &context, QgsProcessingFeedback * )
136{
137 QgsFeature outFeature = feature;
138 if ( outFeature.hasGeometry() )
139 {
140 double tolerance = mTolerance;
141 if ( mDynamicTolerance )
142 tolerance = mToleranceProperty.valueAsDouble( context.expressionContext(), tolerance );
143
144 double distance;
145 const QgsGeometry outputGeom = outFeature.geometry().poleOfInaccessibility( tolerance, &distance );
146 if ( outputGeom.isNull() )
147 {
148 throw QgsProcessingException( QObject::tr( "Error calculating pole of inaccessibility" ) );
149 }
150 QgsAttributes attrs = outFeature.attributes();
151 attrs.append( distance );
152 outFeature.setAttributes( attrs );
153 outFeature.setGeometry( outputGeom );
154 }
155 else
156 {
157 QgsAttributes attrs = outFeature.attributes();
158 attrs.append( QVariant() );
159 outFeature.setAttributes( attrs );
160 }
161
162 return QgsFeatureList() << outFeature;
163}
164
ProcessingSourceType
Processing data source types.
Definition qgis.h:3602
@ VectorPoint
Vector point layers.
Definition qgis.h:3605
@ VectorPolygon
Vector polygon layers.
Definition qgis.h:3607
WkbType
The WKB type describes the number of dimensions a geometry has.
Definition qgis.h:280
@ Point
Point.
Definition qgis.h:282
static QIcon getThemeIcon(const QString &name, const QColor &fillColor=QColor(), const QColor &strokeColor=QColor())
Helper to get a theme icon.
static QString iconPath(const QString &iconFile)
Returns path to the desired icon file.
A vector of attributes.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:60
QgsAttributes attributes
Definition qgsfeature.h:69
void setAttributes(const QgsAttributes &attrs)
Sets the feature's attributes.
QgsGeometry geometry
Definition qgsfeature.h:71
bool hasGeometry() const
Returns true if the feature has an associated geometry.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
Encapsulate a field in an attribute table or data source.
Definition qgsfield.h:56
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:76
A geometry is the spatial representation of a feature.
QgsGeometry poleOfInaccessibility(double precision, double *distanceToBoundary=nullptr) const
Calculates the approximate pole of inaccessibility for a surface, which is the most distant internal ...
Contains information about the context in which a processing algorithm is executed.
QgsExpressionContext & expressionContext()
Returns the expression context.
Custom exception class for processing related exceptions.
Base class for providing feedback from a processing algorithm.
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...
static QgsFields combineFields(const QgsFields &fieldsA, const QgsFields &fieldsB, const QString &fieldsBPrefix=QString())
Combines two field lists, avoiding duplicate field names (in a case-insensitive manner).
Definition for a property.
Definition qgsproperty.h:47
@ Double
Double value (including negative values).
Definition qgsproperty.h:57
A store for object properties.
QList< QgsFeature > QgsFeatureList