QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgsalgorithmuniquevalueindex.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsalgorithmuniquevalueindex.cpp
3 ---------------------
4 begin : January 2018
5 copyright : (C) 2018 by Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
19
21
22QString QgsAddUniqueValueIndexAlgorithm::name() const
23{
24 return QStringLiteral( "adduniquevalueindexfield" );
25}
26
27QString QgsAddUniqueValueIndexAlgorithm::displayName() const
28{
29 return QObject::tr( "Add unique value index field" );
30}
31
32QStringList QgsAddUniqueValueIndexAlgorithm::tags() const
33{
34 return QObject::tr( "categorize,categories,category,reclassify,classes,create" ).split( ',' );
35}
36
37QString QgsAddUniqueValueIndexAlgorithm::group() const
38{
39 return QObject::tr( "Vector table" );
40}
41
42QString QgsAddUniqueValueIndexAlgorithm::groupId() const
43{
44 return QStringLiteral( "vectortable" );
45}
46
47void QgsAddUniqueValueIndexAlgorithm::initAlgorithm( const QVariantMap & )
48{
49 addParameter( new QgsProcessingParameterFeatureSource( QStringLiteral( "INPUT" ), QObject::tr( "Input layer" ), QList<int>() << static_cast<int>( Qgis::ProcessingSourceType::Vector ) ) );
50 addParameter( new QgsProcessingParameterField( QStringLiteral( "FIELD" ), QObject::tr( "Class field" ), QVariant(), QStringLiteral( "INPUT" ), Qgis::ProcessingFieldParameterDataType::Any ) );
51 addParameter( new QgsProcessingParameterString( QStringLiteral( "FIELD_NAME" ), QObject::tr( "Output field name" ), QStringLiteral( "NUM_FIELD" ) ) );
52
53 std::unique_ptr<QgsProcessingParameterFeatureSink> classedOutput = std::make_unique<QgsProcessingParameterFeatureSink>( QStringLiteral( "OUTPUT" ), QObject::tr( "Layer with index field" ), Qgis::ProcessingSourceType::VectorAnyGeometry, QVariant(), true );
54 classedOutput->setCreateByDefault( true );
55 addParameter( classedOutput.release() );
56
57 std::unique_ptr<QgsProcessingParameterFeatureSink> summaryOutput = std::make_unique<QgsProcessingParameterFeatureSink>( QStringLiteral( "SUMMARY_OUTPUT" ), QObject::tr( "Class summary" ), Qgis::ProcessingSourceType::Vector, QVariant(), true );
58 summaryOutput->setCreateByDefault( false );
59 addParameter( summaryOutput.release() );
60}
61
62QString QgsAddUniqueValueIndexAlgorithm::shortHelpString() const
63{
64 return QObject::tr( "This algorithm takes a vector layer and an attribute and adds a new numeric field. Values in this field correspond to values in the specified attribute, so features with the same "
65 "value for the attribute will have the same value in the new numeric field. This creates a numeric equivalent of the specified attribute, which defines the same classes.\n\n"
66 "The new attribute is not added to the input layer but a new layer is generated instead.\n\n"
67 "Optionally, a separate table can be output which contains a summary of the class field values mapped to the new unique numeric value." );
68}
69
70QgsAddUniqueValueIndexAlgorithm *QgsAddUniqueValueIndexAlgorithm::createInstance() const
71{
72 return new QgsAddUniqueValueIndexAlgorithm();
73}
74
75QVariantMap QgsAddUniqueValueIndexAlgorithm::processAlgorithm( const QVariantMap &parameters, QgsProcessingContext &context, QgsProcessingFeedback *feedback )
76{
77 std::unique_ptr<QgsProcessingFeatureSource> source( parameterAsSource( parameters, QStringLiteral( "INPUT" ), context ) );
78 if ( !source )
79 throw QgsProcessingException( invalidSourceError( parameters, QStringLiteral( "INPUT" ) ) );
80
81 const QString newFieldName = parameterAsString( parameters, QStringLiteral( "FIELD_NAME" ), context );
82 QgsFields fields = source->fields();
83 const QgsField newField = QgsField( newFieldName, QMetaType::Type::Int );
84 fields.append( newField );
85
86 QString dest;
87 std::unique_ptr<QgsFeatureSink> sink( parameterAsSink( parameters, QStringLiteral( "OUTPUT" ), context, dest, fields, source->wkbType(), source->sourceCrs() ) );
88
89 const QString sourceFieldName = parameterAsString( parameters, QStringLiteral( "FIELD" ), context );
90 const int fieldIndex = source->fields().lookupField( sourceFieldName );
91 if ( fieldIndex < 0 )
92 throw QgsProcessingException( QObject::tr( "Invalid field name %1" ).arg( sourceFieldName ) );
93
94 QString summaryDest;
95 QgsFields summaryFields;
96 summaryFields.append( newField );
97 summaryFields.append( source->fields().at( fieldIndex ) );
98 std::unique_ptr<QgsFeatureSink> summarySink( parameterAsSink( parameters, QStringLiteral( "SUMMARY_OUTPUT" ), context, summaryDest, summaryFields, Qgis::WkbType::NoGeometry ) );
99
100 QHash<QVariant, int> classes;
101
103
104 const long count = source->featureCount();
105 const double step = count > 0 ? 100.0 / count : 1;
106 int current = 0;
107 QgsFeature feature;
108 while ( it.nextFeature( feature ) )
109 {
110 if ( feedback->isCanceled() )
111 {
112 break;
113 }
114
115 QgsAttributes attributes = feature.attributes();
116 const QVariant clazz = attributes.at( fieldIndex );
117
118 int thisValue = classes.value( clazz, -1 );
119 if ( thisValue == -1 )
120 {
121 thisValue = classes.count();
122 classes.insert( clazz, thisValue );
123 }
124
125 if ( sink )
126 {
127 attributes.append( thisValue );
128 feature.setAttributes( attributes );
129 if ( !sink->addFeature( feature, QgsFeatureSink::FastInsert ) )
130 throw QgsProcessingException( writeFeatureError( sink.get(), parameters, QStringLiteral( "OUTPUT" ) ) );
131 }
132
133 feedback->setProgress( current * step );
134 current++;
135 }
136
137 if ( summarySink )
138 {
139 //generate summary table - first we make a sorted version of the classes
140 QMap<int, QVariant> sorted;
141 for ( auto classIt = classes.constBegin(); classIt != classes.constEnd(); ++classIt )
142 {
143 sorted.insert( classIt.value(), classIt.key() );
144 }
145 // now save them
146 for ( auto sortedIt = sorted.constBegin(); sortedIt != sorted.constEnd(); ++sortedIt )
147 {
148 QgsFeature f;
149 f.setAttributes( QgsAttributes() << sortedIt.key() << sortedIt.value() );
150 if ( !summarySink->addFeature( f, QgsFeatureSink::FastInsert ) )
151 throw QgsProcessingException( writeFeatureError( summarySink.get(), parameters, QStringLiteral( "SUMMARY_OUTPUT" ) ) );
152 }
153 }
154
155 QVariantMap results;
156 if ( sink )
157 {
158 sink->finalize();
159 results.insert( QStringLiteral( "OUTPUT" ), dest );
160 }
161 if ( summarySink )
162 {
163 summarySink->finalize();
164 results.insert( QStringLiteral( "SUMMARY_OUTPUT" ), summaryDest );
165 }
166 return results;
167}
168
@ Vector
Tables (i.e. vector layers with or without geometry). When used for a sink this indicates the sink ha...
@ VectorAnyGeometry
Any vector layer with geometry.
@ SkipGeometryValidityChecks
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
@ NoGeometry
No geometry.
A vector of attributes.
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.
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...
Definition qgsfeature.h:58
QgsAttributes attributes
Definition qgsfeature.h:67
void setAttributes(const QgsAttributes &attrs)
Sets the feature's attributes.
bool isCanceled() const
Tells whether the operation has been canceled already.
Definition qgsfeedback.h:53
void setProgress(double progress)
Sets the current progress for the feedback object.
Definition qgsfeedback.h:61
Encapsulate a field in an attribute table or data source.
Definition qgsfield.h:53
Container of fields for a vector layer.
Definition qgsfields.h:46
bool append(const QgsField &field, Qgis::FieldOrigin origin=Qgis::FieldOrigin::Provider, int originIndex=-1)
Appends a field.
Definition qgsfields.cpp:70
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.
An input feature source (such as vector layers) parameter for processing algorithms.
A vector layer or feature source field parameter for processing algorithms.
A string parameter for processing algorithms.