24 QString QgsDifferenceAlgorithm::name()
const
26 return QStringLiteral(
"difference" );
29 QString QgsDifferenceAlgorithm::displayName()
const
31 return QObject::tr(
"Difference" );
34 QString QgsDifferenceAlgorithm::group()
const
36 return QObject::tr(
"Vector overlay" );
39 QString QgsDifferenceAlgorithm::groupId()
const
41 return QStringLiteral(
"vectoroverlay" );
44 QString QgsDifferenceAlgorithm::shortHelpString()
const
46 return QObject::tr(
"This algorithm extracts features from the Input layer that fall outside, or partially overlap, features in the Overlay layer. "
47 "Input layer features that partially overlap feature(s) in the Overlay layer are split along those features' boundary "
48 "and only the portions outside the Overlay layer features are retained." )
49 + QStringLiteral(
"\n\n" )
50 + QObject::tr(
"Attributes are not modified, although properties such as area or length of the features will "
51 "be modified by the difference operation. If such properties are stored as attributes, those attributes will have to "
52 "be manually updated." );
55 bool QgsDifferenceAlgorithm::supportInPlaceEdit(
const QgsMapLayer *l )
const
57 const QgsVectorLayer *layer = qobject_cast< const QgsVectorLayer * >( l );
64 QgsProcessingAlgorithm::Flags QgsDifferenceAlgorithm::flags()
const
73 return new QgsDifferenceAlgorithm();
76 void QgsDifferenceAlgorithm::initAlgorithm(
const QVariantMap & )
86 std::unique_ptr< QgsFeatureSource > sourceA( parameterAsSource( parameters, QStringLiteral(
"INPUT" ), context ) );
90 std::unique_ptr< QgsFeatureSource > sourceB( parameterAsSource( parameters, QStringLiteral(
"OVERLAY" ), context ) );
97 std::unique_ptr< QgsFeatureSink > sink( parameterAsSink( parameters, QStringLiteral(
"OUTPUT" ), context, dest, sourceA->fields(), geomType, sourceA->sourceCrs() ) );
102 outputs.insert( QStringLiteral(
"OUTPUT" ), dest );
105 int total = sourceA->featureCount();
106 QgsOverlayUtils::difference( *sourceA, *sourceB, *sink, context, feedback, count, total, QgsOverlayUtils::OutputA );