23 QString QgsPolygonizeAlgorithm::name()
const
25 return QStringLiteral(
"polygonize" );
28 QString QgsPolygonizeAlgorithm::displayName()
const
30 return QObject::tr(
"Polygonize" );
33 QString QgsPolygonizeAlgorithm::shortHelpString()
const
35 return QObject::tr(
"Creates a polygon layer from the input lines layer." );
38 QStringList QgsPolygonizeAlgorithm::tags()
const
40 return QObject::tr(
"create,lines,polygons,convert" ).split(
',' );
43 QString QgsPolygonizeAlgorithm::group()
const
45 return QObject::tr(
"Vector geometry" );
48 QString QgsPolygonizeAlgorithm::groupId()
const
50 return QStringLiteral(
"vectorgeometry" );
53 void QgsPolygonizeAlgorithm::initAlgorithm(
const QVariantMap & )
58 QObject::tr(
"Keep fields from the input layer" ),
false,
true ) );
64 QgsPolygonizeAlgorithm *QgsPolygonizeAlgorithm::createInstance()
const
66 return new QgsPolygonizeAlgorithm();
71 std::unique_ptr< QgsProcessingFeatureSource > source( parameterAsSource( parameters, QStringLiteral(
"INPUT" ), context ) );
76 if ( parameterAsBoolean( parameters, QStringLiteral(
"KEEP_FIELDS" ), context ) )
77 fields = source->fields();
80 std::unique_ptr< QgsFeatureSink > sink( parameterAsSink( parameters, QStringLiteral(
"OUTPUT" ), context, dest, fields,
QgsWkbTypes::Polygon, source->sourceCrs() ) );
86 feedback->
pushInfo( QObject::tr(
"Collecting lines…" ) );
88 double step = source->featureCount() > 0 ? 40.0 / source->featureCount() : 1;
91 QVector<QgsGeometry> linesList;
92 linesList.reserve( source->featureCount() );
105 feedback->
pushInfo( QObject::tr(
"Noding lines…" ) );
108 return QVariantMap();
111 feedback->
pushInfo( QObject::tr(
"Polygonizing…" ) );
114 feedback->
reportError( QObject::tr(
"No polygons were created." ) );
122 for (
int part = 0; part < collection->
numGeometries(); ++part )
136 outputs.insert( QStringLiteral(
"OUTPUT" ), dest );
137 outputs.insert( QStringLiteral(
"NUM_POLYGONS" ), polygonCount );
virtual QgsAbstractGeometry * clone() const =0
Clones the geometry by performing a deep copy.
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
This class 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 SIP_HOLDGIL
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.
int numGeometries() const SIP_HOLDGIL
Returns the number of geometries within the collection.
const QgsAbstractGeometry * geometryN(int n) const
Returns a const reference to a geometry from within the collection.
A geometry is the spatial representation of a feature.
const QgsAbstractGeometry * constGet() const SIP_HOLDGIL
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
static QgsGeometry polygonize(const QVector< QgsGeometry > &geometries)
Creates a GeometryCollection geometry containing possible polygons formed from the constituent linewo...
static QgsGeometry unaryUnion(const QVector< QgsGeometry > &geometries)
Compute the unary union on a list of geometries.
bool isEmpty() const
Returns true if the geometry is empty (eg a linestring with no vertices, or a collection with no geom...
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.
virtual void reportError(const QString &error, bool fatalError=false)
Reports that the algorithm encountered an error while executing.
A numeric output for processing algorithms.
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.
@ TypeVectorLine
Vector line layers.
@ TypeVectorPolygon
Vector polygon layers.