31 SetMarkerRotationVisitor(
const QString &rotationField )
32 : mRotationField( rotationField )
48 QString mRotationField;
54 SetMarkerRotationPostProcessor( std::unique_ptr<QgsFeatureRenderer> renderer,
const QString &rotationField )
55 : mRenderer( std::move( renderer ) )
56 , mRotationField( rotationField )
61 if (
QgsVectorLayer *vl = qobject_cast<QgsVectorLayer *>( layer ) )
63 SetMarkerRotationVisitor visitor( mRotationField );
64 mRenderer->accept( &visitor );
65 vl->setRenderer( mRenderer.release() );
71 std::unique_ptr<QgsFeatureRenderer> mRenderer;
72 QString mRotationField;
75QString QgsAngleToNearestAlgorithm::name()
const
77 return QStringLiteral(
"angletonearest" );
80QString QgsAngleToNearestAlgorithm::displayName()
const
82 return QObject::tr(
"Align points to features" );
85QStringList QgsAngleToNearestAlgorithm::tags()
const
87 return QObject::tr(
"align,marker,stroke,fill,orient,points,lines,angles,rotation,rotate" ).split(
',' );
90QString QgsAngleToNearestAlgorithm::group()
const
92 return QObject::tr(
"Cartography" );
95QString QgsAngleToNearestAlgorithm::groupId()
const
97 return QStringLiteral(
"cartography" );
100QgsAngleToNearestAlgorithm::~QgsAngleToNearestAlgorithm() =
default;
102void QgsAngleToNearestAlgorithm::initAlgorithm(
const QVariantMap &configuration )
104 mIsInPlace = configuration.value( QStringLiteral(
"IN_PLACE" ) ).toBool();
109 addParameter(
new QgsProcessingParameterDistance( QStringLiteral(
"MAX_DISTANCE" ), QObject::tr(
"Maximum distance to consider" ), QVariant(), QStringLiteral(
"INPUT" ),
true, 0 ) );
112 addParameter(
new QgsProcessingParameterString( QStringLiteral(
"FIELD_NAME" ), QObject::tr(
"Angle field name" ), QStringLiteral(
"rotation" ) ) );
114 addParameter(
new QgsProcessingParameterField( QStringLiteral(
"FIELD_NAME" ), QObject::tr(
"Angle field name" ), QStringLiteral(
"rotation" ), QStringLiteral(
"INPUT" ) ) );
116 addParameter(
new QgsProcessingParameterBoolean( QStringLiteral(
"APPLY_SYMBOLOGY" ), QObject::tr(
"Automatically apply symbology" ),
true ) );
128QString QgsAngleToNearestAlgorithm::shortHelpString()
const
130 return QObject::tr(
"This algorithm calculates the rotation required to align point features with their nearest "
131 "feature from another reference layer. A new field is added to the output layer which is filled with the angle "
132 "(in degrees, clockwise) to the nearest reference feature.\n\n"
133 "Optionally, the output layer's symbology can be set to automatically use the calculated rotation "
134 "field to rotate marker symbols.\n\n"
135 "If desired, a maximum distance to use when aligning points can be set, to avoid aligning isolated points "
136 "to distant features." );
139QString QgsAngleToNearestAlgorithm::shortDescription()
const
141 return QObject::tr(
"Rotates point features to align them to nearby features." );
144QgsAngleToNearestAlgorithm *QgsAngleToNearestAlgorithm::createInstance()
const
146 return new QgsAngleToNearestAlgorithm();
149bool QgsAngleToNearestAlgorithm::supportInPlaceEdit(
const QgsMapLayer *layer )
const
151 if (
const QgsVectorLayer *vl = qobject_cast<const QgsVectorLayer *>( layer ) )
162 if (
QgsVectorLayer *sourceLayer = parameterAsVectorLayer( parameters, QStringLiteral(
"INPUT" ), context ) )
164 mSourceRenderer.reset( sourceLayer->renderer()->clone() );
173 const double maxDistance = parameters.value( QStringLiteral(
"MAX_DISTANCE" ) ).isValid() ? parameterAsDouble( parameters, QStringLiteral(
"MAX_DISTANCE" ), context ) : std::numeric_limits<double>::quiet_NaN();
174 std::unique_ptr<QgsProcessingFeatureSource> input( parameterAsSource( parameters, QStringLiteral(
"INPUT" ), context ) );
178 std::unique_ptr<QgsProcessingFeatureSource> referenceSource( parameterAsSource( parameters, QStringLiteral(
"REFERENCE_LAYER" ), context ) );
179 if ( !referenceSource )
182 const QString fieldName = parameterAsString( parameters, QStringLiteral(
"FIELD_NAME" ), context );
192 outFields.
append(
QgsField( fieldName, QMetaType::Type::Double ) );
196 std::unique_ptr<QgsFeatureSink> sink( parameterAsSink( parameters, QStringLiteral(
"OUTPUT" ), context, dest, outFields, input->wkbType(), input->sourceCrs() ) );
197 if ( parameters.value( QStringLiteral(
"OUTPUT" ) ).isValid() && !sink )
202 double step = referenceSource->featureCount() > 0 ? 50.0 / referenceSource->featureCount() : 1;
216 step = input->featureCount() > 0 ? 50.0 / input->featureCount() : 1;
231 if ( !f.hasGeometry() )
234 attributes.append( QVariant() );
236 attributes[fieldIndex] = QVariant();
237 f.setAttributes( attributes );
243 const QList<QgsFeatureId> nearest = index.nearestNeighbor( f.geometry(), 1, std::isnan( maxDistance ) ? 0 : maxDistance );
244 if ( nearest.empty() )
246 feedback->
pushInfo( QObject::tr(
"No matching features found within search distance" ) );
248 attributes.append( QVariant() );
250 attributes[fieldIndex] = QVariant();
251 f.setAttributes( attributes );
257 if ( nearest.count() > 1 )
259 feedback->
pushInfo( QObject::tr(
"Multiple matching features found at same distance from search feature, found %n feature(s)",
nullptr, nearest.count() ) );
266 attributes.append( line->startPoint().azimuth( line->endPoint() ) );
268 attributes[fieldIndex] = line->startPoint().azimuth( line->endPoint() );
273 attributes.append( QVariant() );
275 attributes[fieldIndex] = QVariant();
277 f.setAttributes( attributes );
287 const bool applySymbology = parameterAsBool( parameters, QStringLiteral(
"APPLY_SYMBOLOGY" ), context );
288 if ( applySymbology )
294 QVariantMap inPlaceParams = parameters;
295 inPlaceParams.insert( QStringLiteral(
"INPUT" ), parameters.value( QStringLiteral(
"INPUT" ) ).value<QgsProcessingFeatureSourceDefinition>().source );
296 if (
QgsVectorLayer *sourceLayer = parameterAsVectorLayer( inPlaceParams, QStringLiteral(
"INPUT" ), context ) )
298 std::unique_ptr<QgsFeatureRenderer> sourceRenderer( sourceLayer->renderer()->clone() );
299 SetMarkerRotationPostProcessor processor( std::move( sourceRenderer ), fieldName );
300 processor.postProcessLayer( sourceLayer, context, feedback );
310 outputs.insert( QStringLiteral(
"OUTPUT" ), dest );
@ VectorPoint
Vector point layers.
QFlags< ProcessingAlgorithmFlag > ProcessingAlgorithmFlags
Flags indicating how and when an algorithm operates and should be exposed to users.
@ SupportsInPlaceEdits
Algorithm supports in-place editing.
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).
QgsFeatureRequest & setNoAttributes()
Set that no attributes will be fetched.
@ 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...
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.
Container of fields for a vector layer.
bool append(const QgsField &field, Qgis::FieldOrigin origin=Qgis::FieldOrigin::Provider, int originIndex=-1)
Appends a field.
Q_INVOKABLE int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
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.
QgsGeometry shortestLine(const QgsGeometry &other) const
Returns the shortest line joining this geometry to another geometry.
Line string geometry type, with support for z-dimension and m-values.
Base class for all map layer types.
A marker symbol type, for rendering Point and MultiPoint geometries.
virtual Qgis::ProcessingAlgorithmFlags flags() const
Returns the flags indicating how and when the algorithm operates and should be exposed to users.
void setPostProcessor(QgsProcessingLayerPostProcessorInterface *processor)
Sets the layer post-processor.
Contains information about the context in which a processing algorithm is executed.
QgsProcessingContext::LayerDetails & layerToLoadOnCompletionDetails(const QString &layer)
Returns a reference to the details for a given layer which is loaded on completion of the algorithm o...
QgsCoordinateTransformContext transformContext() const
Returns the coordinate transform context.
bool willLoadLayerOnCompletion(const QString &layer) const
Returns true if the given layer (by ID or datasource) will be loaded into the current project upon co...
Custom exception class for processing related exceptions.
Base class for providing feedback from a processing algorithm.
virtual void pushInfo(const QString &info)
Pushes a general informational message from the algorithm.
An interface for layer post-processing handlers for execution following a processing algorithm operat...
virtual void postProcessLayer(QgsMapLayer *layer, QgsProcessingContext &context, QgsProcessingFeedback *feedback)=0
Post-processes the specified layer, following successful execution of a processing algorithm.
A boolean parameter for processing algorithms.
A double numeric parameter for distance values.
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.
A string parameter for processing algorithms.
static QgsProperty fromField(const QString &fieldName, bool isActive=true)
Returns a new FieldBasedProperty created from the specified field name.
A spatial index for QgsFeature objects.
@ FlagStoreFeatureGeometries
Indicates that the spatial index should also store feature geometries. This requires more memory,...
An interface for classes which can visit style entity (e.g.
virtual bool visit(const QgsStyleEntityVisitorInterface::StyleLeaf &entity)
Called when the visitor will visit a style entity.
A symbol entity for QgsStyle databases.
Represents a vector layer which manages a vector based data sets.
Contains information relating to the style entity currently being visited.
const QgsStyleEntityInterface * entity
Reference to style entity being visited.