24using namespace Qt::StringLiterals;
29QString QgsIntersectionAlgorithm::name()
const
31 return u
"intersection"_s;
34QString QgsIntersectionAlgorithm::displayName()
const
36 return QObject::tr(
"Intersection" );
39QString QgsIntersectionAlgorithm::group()
const
41 return QObject::tr(
"Vector overlay" );
44QString QgsIntersectionAlgorithm::groupId()
const
46 return u
"vectoroverlay"_s;
49QString QgsIntersectionAlgorithm::shortHelpString()
const
51 return QObject::tr(
"This algorithm extracts the overlapping portions of features in the Input and Overlay layers. "
52 "Features in the output Intersection layer are assigned the attributes of the overlapping features "
53 "from both the Input and Overlay layers." );
56QString QgsIntersectionAlgorithm::shortDescription()
const
58 return QObject::tr(
"Extracts overlapping portions of features between two layers." );
68 return new QgsIntersectionAlgorithm();
71void QgsIntersectionAlgorithm::initAlgorithm(
const QVariantMap & )
78 QObject::tr(
"Input fields to keep (leave empty to keep all fields)" ), QVariant(),
83 QObject::tr(
"Overlay fields to keep (leave empty to keep all fields)" ), QVariant(),
87 auto prefix = std::make_unique<QgsProcessingParameterString>( u
"OVERLAY_FIELDS_PREFIX"_s, QObject::tr(
"Overlay fields prefix" ), QString(),
false,
true );
89 addParameter( prefix.release() );
95 addParameter( gridSize.release() );
101 std::unique_ptr<QgsFeatureSource> sourceA( parameterAsSource( parameters, u
"INPUT"_s, context ) );
105 std::unique_ptr<QgsFeatureSource> sourceB( parameterAsSource( parameters, u
"OVERLAY"_s, context ) );
111 const QStringList fieldsA = parameterAsStrings( parameters, u
"INPUT_FIELDS"_s, context );
112 const QStringList fieldsB = parameterAsStrings( parameters, u
"OVERLAY_FIELDS"_s, context );
117 const QString overlayFieldsPrefix = parameterAsString( parameters, u
"OVERLAY_FIELDS_PREFIX"_s, context );
125 std::unique_ptr<QgsFeatureSink> sink( parameterAsSink( parameters, u
"OUTPUT"_s, context, dest, outputFields, geomType, sourceA->sourceCrs(),
QgsFeatureSink::RegeneratePrimaryKey ) );
130 outputs.insert( u
"OUTPUT"_s, dest );
133 const long total = sourceA->featureCount();
136 if ( parameters.value( u
"GRID_SIZE"_s ).isValid() )
138 geometryParameters.
setGridSize( parameterAsDouble( parameters, u
"GRID_SIZE"_s, context ) );
141 QgsOverlayUtils::intersection( *sourceA, *sourceB, *sink, context, feedback, count, total, fieldIndicesA, fieldIndicesB, geometryParameters );
@ 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.
WkbType
The WKB type describes the number of dimensions a geometry has.
@ Advanced
Parameter is an advanced parameter which should be hidden from users by default.
@ Double
Double/float values.
@ RegeneratePrimaryKey
This flag indicates, that a primary key field cannot be guaranteed to be unique and the sink should i...
Container of fields for a vector layer.
Encapsulates parameters under which a geometry operation is performed.
void setGridSize(double size)
Sets the grid size which will be used to snap vertices of a geometry.
Abstract base class for processing algorithms.
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.
A feature sink output for processing algorithms.
An input feature source (such as vector layers) parameter for processing algorithms.
A vector layer or feature source field parameter for processing algorithms.
static QgsFields indicesToFields(const QList< int > &indices, const QgsFields &fields)
Returns a subset of fields based on the indices of desired fields.
static QList< int > fieldNamesToIndices(const QStringList &fieldNames, const QgsFields &fields)
Returns a list of field indices parsed from the given list of field names.
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).
static Qgis::WkbType multiType(Qgis::WkbType type)
Returns the multi type for a WKB type.