33void QgsJoinByLocationSummaryAlgorithm::initAlgorithm(
const QVariantMap & )
37 auto predicateParam = std::make_unique<QgsProcessingParameterEnum>( QStringLiteral(
"PREDICATE" ), QObject::tr(
"Where the features" ), QgsJoinByLocationAlgorithm::translatedPredicates(),
true, 0 );
38 QVariantMap predicateMetadata;
39 QVariantMap widgetMetadata;
40 widgetMetadata.insert( QStringLiteral(
"useCheckBoxes" ),
true );
41 widgetMetadata.insert( QStringLiteral(
"columns" ), 2 );
42 predicateMetadata.insert( QStringLiteral(
"widget_wrapper" ), widgetMetadata );
43 predicateParam->setMetadata( predicateMetadata );
44 addParameter( predicateParam.release() );
50 mAllSummaries << QObject::tr(
"count" )
51 << QObject::tr(
"unique" )
52 << QObject::tr(
"min" )
53 << QObject::tr(
"max" )
54 << QObject::tr(
"range" )
55 << QObject::tr(
"sum" )
56 << QObject::tr(
"mean" )
57 << QObject::tr(
"median" )
58 << QObject::tr(
"stddev" )
59 << QObject::tr(
"minority" )
60 << QObject::tr(
"majority" )
61 << QObject::tr(
"q1" )
62 << QObject::tr(
"q3" )
63 << QObject::tr(
"iqr" )
64 << QObject::tr(
"empty" )
65 << QObject::tr(
"filled" )
66 << QObject::tr(
"min_length" )
67 << QObject::tr(
"max_length" )
68 << QObject::tr(
"mean_length" );
70 auto summaryParam = std::make_unique<QgsProcessingParameterEnum>( QStringLiteral(
"SUMMARIES" ), QObject::tr(
"Summaries to calculate (leave empty to use all available)" ), mAllSummaries,
true, QVariant(),
true );
71 addParameter( summaryParam.release() );
73 addParameter(
new QgsProcessingParameterBoolean( QStringLiteral(
"DISCARD_NONMATCHING" ), QObject::tr(
"Discard records which could not be joined" ),
false ) );
77QString QgsJoinByLocationSummaryAlgorithm::name()
const
79 return QStringLiteral(
"joinbylocationsummary" );
82QString QgsJoinByLocationSummaryAlgorithm::displayName()
const
84 return QObject::tr(
"Join attributes by location (summary)" );
87QStringList QgsJoinByLocationSummaryAlgorithm::tags()
const
89 return QObject::tr(
"summary,aggregate,join,intersects,intersecting,touching,within,contains,overlaps,relation,spatial,"
90 "stats,statistics,sum,maximum,minimum,mean,average,standard,deviation,"
91 "count,distinct,unique,variance,median,quartile,range,majority,minority,histogram,distinct" )
95QString QgsJoinByLocationSummaryAlgorithm::group()
const
97 return QObject::tr(
"Vector general" );
100QString QgsJoinByLocationSummaryAlgorithm::groupId()
const
102 return QStringLiteral(
"vectorgeneral" );
105QString QgsJoinByLocationSummaryAlgorithm::shortHelpString()
const
107 return QObject::tr(
"This algorithm takes an input vector layer and creates a new vector layer that is an extended version of the input one, with additional attributes in its attribute table.\n\n"
108 "The additional attributes and their values are taken from a second vector layer. A spatial criteria is applied to select the values from the second layer that are added to each feature from the first layer in the resulting one.\n\n"
109 "The algorithm calculates a statistical summary for the values from matching features in the second layer( e.g. maximum value, mean value, etc )." );
112QString QgsJoinByLocationSummaryAlgorithm::shortDescription()
const
114 return QObject::tr(
"Calculates summaries of attributes from one vector layer to another by location." );
117QIcon QgsJoinByLocationSummaryAlgorithm::icon()
const
122QString QgsJoinByLocationSummaryAlgorithm::svgIconPath()
const
127QgsJoinByLocationSummaryAlgorithm *QgsJoinByLocationSummaryAlgorithm::createInstance()
const
129 return new QgsJoinByLocationSummaryAlgorithm();
134 std::unique_ptr<QgsProcessingFeatureSource> baseSource( parameterAsSource( parameters, QStringLiteral(
"INPUT" ), context ) );
138 std::unique_ptr<QgsProcessingFeatureSource> joinSource( parameterAsSource( parameters, QStringLiteral(
"JOIN" ), context ) );
143 feedback->
reportError( QObject::tr(
"No spatial index exists for join layer, performance will be severely degraded" ) );
145 QStringList joinedFieldNames = parameterAsStrings( parameters, QStringLiteral(
"JOIN_FIELDS" ), context );
147 bool discardNonMatching = parameterAsBoolean( parameters, QStringLiteral(
"DISCARD_NONMATCHING" ), context );
149 QList<int> summaries = parameterAsEnums( parameters, QStringLiteral(
"SUMMARIES" ), context );
150 if ( summaries.empty() )
152 for (
int i = 0; i < mAllSummaries.size(); ++i )
156 QgsFields sourceFields = baseSource->fields();
158 QList<int> joinFieldIndices;
159 if ( joinedFieldNames.empty() )
162 for (
const QgsField &sourceField : joinSource->fields() )
164 joinedFieldNames.append( sourceField.name() );
169 auto addFieldKeepType = [&fieldsToJoin](
const QgsField &original,
const QString &statistic ) {
172 fieldsToJoin.
append( field );
176 auto addFieldWithType = [&fieldsToJoin](
const QgsField &original,
const QString &statistic, QMetaType::Type type ) {
180 if ( type == QMetaType::Type::Double )
185 fieldsToJoin.
append( field );
194 QList<FieldType> fieldTypes;
196 struct FieldStatistic
198 FieldStatistic(
int enumIndex,
const QString &name, QMetaType::Type type )
199 : enumIndex( enumIndex )
206 QMetaType::Type type;
208 static const QVector<FieldStatistic> sNumericStats {
209 FieldStatistic( 0, QStringLiteral(
"count" ), QMetaType::Type::LongLong ),
210 FieldStatistic( 1, QStringLiteral(
"unique" ), QMetaType::Type::LongLong ),
211 FieldStatistic( 2, QStringLiteral(
"min" ), QMetaType::Type::Double ),
212 FieldStatistic( 3, QStringLiteral(
"max" ), QMetaType::Type::Double ),
213 FieldStatistic( 4, QStringLiteral(
"range" ), QMetaType::Type::Double ),
214 FieldStatistic( 5, QStringLiteral(
"sum" ), QMetaType::Type::Double ),
215 FieldStatistic( 6, QStringLiteral(
"mean" ), QMetaType::Type::Double ),
216 FieldStatistic( 7, QStringLiteral(
"median" ), QMetaType::Type::Double ),
217 FieldStatistic( 8, QStringLiteral(
"stddev" ), QMetaType::Type::Double ),
218 FieldStatistic( 9, QStringLiteral(
"minority" ), QMetaType::Type::Double ),
219 FieldStatistic( 10, QStringLiteral(
"majority" ), QMetaType::Type::Double ),
220 FieldStatistic( 11, QStringLiteral(
"q1" ), QMetaType::Type::Double ),
221 FieldStatistic( 12, QStringLiteral(
"q3" ), QMetaType::Type::Double ),
222 FieldStatistic( 13, QStringLiteral(
"iqr" ), QMetaType::Type::Double ),
224 static const QVector<FieldStatistic> sDateTimeStats {
225 FieldStatistic( 0, QStringLiteral(
"count" ), QMetaType::Type::LongLong ),
226 FieldStatistic( 1, QStringLiteral(
"unique" ), QMetaType::Type::LongLong ),
227 FieldStatistic( 14, QStringLiteral(
"empty" ), QMetaType::Type::LongLong ),
228 FieldStatistic( 15, QStringLiteral(
"filled" ), QMetaType::Type::LongLong ),
229 FieldStatistic( 2, QStringLiteral(
"min" ), QMetaType::Type::UnknownType ),
230 FieldStatistic( 3, QStringLiteral(
"max" ), QMetaType::Type::UnknownType ),
232 static const QVector<FieldStatistic> sStringStats {
233 FieldStatistic( 0, QStringLiteral(
"count" ), QMetaType::Type::LongLong ),
234 FieldStatistic( 1, QStringLiteral(
"unique" ), QMetaType::Type::LongLong ),
235 FieldStatistic( 14, QStringLiteral(
"empty" ), QMetaType::Type::LongLong ),
236 FieldStatistic( 15, QStringLiteral(
"filled" ), QMetaType::Type::LongLong ),
237 FieldStatistic( 2, QStringLiteral(
"min" ), QMetaType::Type::UnknownType ),
238 FieldStatistic( 3, QStringLiteral(
"max" ), QMetaType::Type::UnknownType ),
239 FieldStatistic( 16, QStringLiteral(
"min_length" ), QMetaType::Type::Int ),
240 FieldStatistic( 17, QStringLiteral(
"max_length" ), QMetaType::Type::Int ),
241 FieldStatistic( 18, QStringLiteral(
"mean_length" ), QMetaType::Type::Double ),
244 for (
const QString &field : std::as_const( joinedFieldNames ) )
246 const int fieldIndex = joinSource->fields().lookupField( field );
247 if ( fieldIndex >= 0 )
249 joinFieldIndices.append( fieldIndex );
251 const QgsField joinField = joinSource->fields().at( fieldIndex );
252 QVector<FieldStatistic> statisticList;
255 fieldTypes.append( FieldType::Numeric );
256 statisticList = sNumericStats;
258 else if ( joinField.
type() == QMetaType::Type::QDate
259 || joinField.
type() == QMetaType::Type::QTime
260 || joinField.
type() == QMetaType::Type::QDateTime )
262 fieldTypes.append( FieldType::DateTime );
263 statisticList = sDateTimeStats;
267 fieldTypes.append( FieldType::String );
268 statisticList = sStringStats;
271 for (
const FieldStatistic &statistic : std::as_const( statisticList ) )
273 if ( summaries.contains( statistic.enumIndex ) )
275 if ( statistic.type != QMetaType::Type::UnknownType )
276 addFieldWithType( joinField, statistic.name, statistic.type );
278 addFieldKeepType( joinField, statistic.name );
287 std::unique_ptr<QgsFeatureSink> sink( parameterAsSink( parameters, QStringLiteral(
"OUTPUT" ), context, destId, outputFields, baseSource->wkbType(), baseSource->sourceCrs() ) );
293 QList<int> predicates = parameterAsEnums( parameters, QStringLiteral(
"PREDICATE" ), context );
294 QgsJoinByLocationAlgorithm::sortPredicates( predicates );
298 const double step = baseSource->featureCount() > 0 ? 100.0 / baseSource->featureCount() : 1;
307 if ( !discardNonMatching )
319 std::unique_ptr<QgsGeometryEngine> engine;
320 QVector<QVector<QVariant>> values;
337 engine->prepareGeometry();
340 if ( QgsJoinByLocationAlgorithm::featureFilter( testJoinFeature, engine.get(),
true, predicates ) )
343 joinAttributes.reserve( joinFieldIndices.size() );
344 for (
int joinIndex : std::as_const( joinFieldIndices ) )
346 joinAttributes.append( testJoinFeature.
attribute( joinIndex ) );
348 values.append( joinAttributes );
358 if ( values.empty() )
360 if ( discardNonMatching )
378 outputAttributes.reserve( outputFields.
size() );
379 for (
int fieldIndex = 0; fieldIndex < joinFieldIndices.size(); ++fieldIndex )
381 const FieldType &fieldType = fieldTypes.at( fieldIndex );
384 case FieldType::Numeric:
387 for (
const QVector<QVariant> &value : std::as_const( values ) )
392 for (
const FieldStatistic &statistic : sNumericStats )
394 if ( summaries.contains( statistic.enumIndex ) )
397 switch ( statistic.enumIndex )
442 if ( val.isValid() && std::isnan( val.toDouble() ) )
444 outputAttributes.append( val );
450 case FieldType::DateTime:
453 QVariantList inputValues;
454 inputValues.reserve( values.size() );
455 for (
const QVector<QVariant> &value : std::as_const( values ) )
457 inputValues << value.at( fieldIndex );
460 for (
const FieldStatistic &statistic : sDateTimeStats )
462 if ( summaries.contains( statistic.enumIndex ) )
465 switch ( statistic.enumIndex )
486 outputAttributes.append( val );
492 case FieldType::String:
495 QVariantList inputValues;
496 inputValues.reserve( values.size() );
497 for (
const QVector<QVariant> &value : std::as_const( values ) )
499 if ( value.at( fieldIndex ).isNull() )
502 stat.
addString( value.at( fieldIndex ).toString() );
505 for (
const FieldStatistic &statistic : sStringStats )
507 if ( summaries.contains( statistic.enumIndex ) )
510 switch ( statistic.enumIndex )
540 outputAttributes.append( val );
558 results.insert( QStringLiteral(
"OUTPUT" ), destId );
@ VectorAnyGeometry
Any vector layer with geometry.
@ NotPresent
No spatial index exists for the source.
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.
Calculator for summary statistics and aggregates for a list of datetimes.
void calculate(const QVariantList &values)
Calculates summary statistics for a list of variants.
QDateTime min() const
Returns the minimum (earliest) non-null datetime value.
int count() const
Returns the calculated count of values.
int countMissing() const
Returns the number of missing (null) datetime values.
int countDistinct() const
Returns the number of distinct datetime values.
QDateTime max() const
Returns the maximum (latest) non-null datetime value.
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
Fetch next feature and stores in f, returns true on success.
Wraps a request for features to a vector layer (or directly its vector data provider).
QgsFeatureRequest & setSubsetOfAttributes(const QgsAttributeList &attrs)
Set a subset of attributes that will be fetched.
QgsFeatureRequest & setDestinationCrs(const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context)
Sets the destination crs for feature's geometries.
QgsFeatureRequest & setFilterRect(const QgsRectangle &rectangle)
Sets the rectangle from which features will be taken.
@ 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...
void resizeAttributes(int fieldCount)
Resizes the attributes attached to this feature to the given number of fields.
void setAttributes(const QgsAttributes &attrs)
Sets the feature's attributes.
bool hasGeometry() const
Returns true if the feature has an associated geometry.
Q_INVOKABLE QVariant attribute(const QString &name) const
Lookup attribute value by attribute name.
bool isCanceled() const
Tells whether the operation has been canceled already.
void setProgress(double progress)
Sets the current progress for the feedback object.
Encapsulate a field in an attribute table or data source.
void setPrecision(int precision)
Set the field precision.
void setName(const QString &name)
Set the field name.
void setType(QMetaType::Type type)
Set variant type.
void setLength(int len)
Set the field length.
Container of fields for a vector layer.
bool append(const QgsField &field, Qgis::FieldOrigin origin=Qgis::FieldOrigin::Provider, int originIndex=-1)
Appends a field.
int size() const
Returns number of items.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
QgsRectangle boundingBox() const
Returns the bounding box of the geometry.
static QgsGeometryEngine * createGeometryEngine(const QgsAbstractGeometry *geometry, double precision=0.0, Qgis::GeosCreationFlags flags=Qgis::GeosCreationFlag::SkipEmptyInteriorRings)
Creates and returns a new geometry engine representing the specified geometry using precision on a gr...
Contains information about the context in which a processing algorithm is executed.
QgsCoordinateTransformContext transformContext() const
Returns the coordinate transform context.
Custom exception class for processing related exceptions.
Base class for providing feedback from a processing algorithm.
virtual void reportError(const QString &error, bool fatalError=false)
Reports that the algorithm encountered an error while executing.
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.
A vector layer or feature source field parameter for processing algorithms.
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).
Calculator for summary statistics for a list of doubles.
void addVariant(const QVariant &value)
Adds a single value to the statistics calculation.
double firstQuartile() const
Returns the first quartile of the values.
double sum() const
Returns calculated sum of values.
double mean() const
Returns calculated mean of values.
double majority() const
Returns majority of values.
double interQuartileRange() const
Returns the inter quartile range of the values.
double median() const
Returns calculated median of values.
double minority() const
Returns minority of values.
double min() const
Returns calculated minimum from values.
double stDev() const
Returns population standard deviation.
double thirdQuartile() const
Returns the third quartile of the values.
int count() const
Returns calculated count of values.
double range() const
Returns calculated range (difference between maximum and minimum values).
double max() const
Returns calculated maximum from values.
void finalize()
Must be called after adding all values with addValues() and before retrieving any calculated statisti...
int variety() const
Returns variety of values.
Calculator for summary statistics and aggregates for a list of strings.
QString max() const
Returns the maximum (non-null) string value.
QString min() const
Returns the minimum (non-null) string value.
int countMissing() const
Returns the number of missing (null) string values.
int count() const
Returns the calculated count of values.
int countDistinct() const
Returns the number of distinct string values.
void finalize()
Must be called after adding all strings with addString() and before retrieving any calculated string ...
void addString(const QString &string)
Adds a single string to the statistics calculation.
int minLength() const
Returns the minimum length of strings.
int maxLength() const
Returns the maximum length of strings.
double meanLength() const
Returns the mean length of strings.