28QString QgsExplodeAlgorithm::name()
const
30 return QStringLiteral(
"explodelines" );
33QString QgsExplodeAlgorithm::displayName()
const
35 return QObject::tr(
"Explode lines" );
38QStringList QgsExplodeAlgorithm::tags()
const
40 return QObject::tr(
"segments,parts" ).split(
',' );
43QString QgsExplodeAlgorithm::group()
const
45 return QObject::tr(
"Vector geometry" );
48QString QgsExplodeAlgorithm::groupId()
const
50 return QStringLiteral(
"vectorgeometry" );
53QString QgsExplodeAlgorithm::shortHelpString()
const
55 return QObject::tr(
"This algorithm takes a lines layer and creates a new one in which each line is replaced by a set of "
56 "lines representing the segments in the original line. Each line in the resulting layer contains only a "
57 "start and an end point, with no intermediate nodes between them.\n\n"
58 "If the input layer consists of CircularStrings or CompoundCurves, the output layer will be of the "
59 "same type and contain only single curve segments." );
62QString QgsExplodeAlgorithm::shortDescription()
const
64 return QObject::tr(
"Creates a line layer in which each feature represents a segment from an input line layer." );
72QList<int> QgsExplodeAlgorithm::inputLayerTypes()
const
82QgsExplodeAlgorithm *QgsExplodeAlgorithm::createInstance()
const
84 return new QgsExplodeAlgorithm();
87QString QgsExplodeAlgorithm::outputName()
const
89 return QObject::tr(
"Exploded" );
105 const std::vector<QgsGeometry> parts = extractAsParts( f.
geometry() );
108 features.reserve( parts.size() );
113 features << outputFeature;
129std::vector<QgsGeometry> QgsExplodeAlgorithm::extractAsParts(
const QgsGeometry &geometry )
const
133 std::vector<QgsGeometry> parts;
135 for (
int part = 0; part < collection->
numGeometries(); ++part )
138 parts.reserve( parts.size() + segments.size() );
139 std::move( std::begin( segments ), std::end( segments ), std::back_inserter( parts ) );
149std::vector<QgsGeometry> QgsExplodeAlgorithm::curveAsSingleSegments(
const QgsCurve *curve,
bool useCompoundCurves )
const
151 std::vector<QgsGeometry> parts;
159 for (
int i = 0; i < line->
numPoints() - 1; ++i )
163 auto ls = std::make_unique<QgsLineString>( QVector<QgsPoint>() << ptA << ptB );
164 if ( !useCompoundCurves )
166 parts.emplace_back(
QgsGeometry( std::move( ls ) ) );
170 auto cc = std::make_unique<QgsCompoundCurve>();
171 cc->addCurve( ls.release() );
172 parts.emplace_back(
QgsGeometry( std::move( cc ) ) );
181 for (
int i = 0; i <
string->numPoints() - 2; i += 2 )
183 const QgsPoint ptA =
string->pointN( i );
184 const QgsPoint ptB =
string->pointN( i + 1 );
185 const QgsPoint ptC =
string->pointN( i + 2 );
186 auto cs = std::make_unique<QgsCircularString>();
188 if ( !useCompoundCurves )
190 parts.emplace_back(
QgsGeometry( std::move( cs ) ) );
194 auto cc = std::make_unique<QgsCompoundCurve>();
195 cc->addCurve( cs.release() );
196 parts.emplace_back(
QgsGeometry( std::move( cc ) ) );
205 for (
int i = 0; i < compoundCurve->
nCurves(); ++i )
207 std::vector<QgsGeometry> segments = curveAsSingleSegments( compoundCurve->
curveAt( i ),
true );
208 parts.reserve( parts.size() + segments.size() );
209 std::move( std::begin( segments ), std::end( segments ), std::back_inserter( parts ) );
ProcessingSourceType
Processing data source types.
@ VectorLine
Vector line layers.
@ RegeneratesPrimaryKey
Algorithm always drops any existing primary keys or FID values and regenerates them in outputs.
QFlags< ProcessingAlgorithmDocumentationFlag > ProcessingAlgorithmDocumentationFlags
Flags describing algorithm behavior for documentation purposes.
@ SkipGeometryValidityChecks
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
WkbType
The WKB type describes the number of dimensions a geometry has.
@ CompoundCurve
CompoundCurve.
@ CircularString
CircularString.
QFlags< ProcessingFeatureSourceFlag > ProcessingFeatureSourceFlags
Flags which control how QgsProcessingFeatureSource fetches features.
Qgis::WkbType wkbType() const
Returns the WKB type of the geometry.
Circular string geometry type.
Compound curve geometry type.
int nCurves() const
Returns the number of curves in the geometry.
const QgsCurve * curveAt(int i) const
Returns the curve at the specified index.
Abstract base class for curved geometry type.
QFlags< SinkFlag > SinkFlags
@ RegeneratePrimaryKey
This flag indicates, that a primary key field cannot be guaranteed to be unique and the sink should i...
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
void setAttributes(const QgsAttributes &attrs)
Sets the feature's attributes.
bool hasGeometry() const
Returns true if the feature has an associated geometry.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
int numGeometries() const
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
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.
Line string geometry type, with support for z-dimension and m-values.
int numPoints() const override
Returns the number of points in the curve.
QgsPoint pointN(int i) const
Returns the specified point from inside the line string.
Point geometry type, with support for z-dimension and m-values.
Contains information about the context in which a processing algorithm is executed.
Base class for providing feedback from a processing algorithm.
static Qgis::WkbType singleType(Qgis::WkbType type)
Returns the single type for a WKB type.
static Qgis::WkbType flatType(Qgis::WkbType type)
Returns the flat type for a WKB type.
T qgsgeometry_cast(QgsAbstractGeometry *geom)
QVector< QgsPoint > QgsPointSequence
QList< QgsFeature > QgsFeatureList