22QString QgsArrayTranslatedFeaturesAlgorithm::name()
const
24 return QStringLiteral(
"arraytranslatedfeatures" );
27QString QgsArrayTranslatedFeaturesAlgorithm::displayName()
const
29 return QObject::tr(
"Array of translated features" );
32QStringList QgsArrayTranslatedFeaturesAlgorithm::tags()
const
34 return QObject::tr(
"translate,parallel,offset,duplicate,grid,spaced,moved,copy,features,objects,step,repeat" ).split(
',' );
37QString QgsArrayTranslatedFeaturesAlgorithm::group()
const
39 return QObject::tr(
"Vector creation" );
42QString QgsArrayTranslatedFeaturesAlgorithm::groupId()
const
44 return QStringLiteral(
"vectorcreation" );
47QString QgsArrayTranslatedFeaturesAlgorithm::outputName()
const
49 return QObject::tr(
"Translated" );
52QString QgsArrayTranslatedFeaturesAlgorithm::shortHelpString()
const
54 return QObject::tr(
"This algorithm creates copies of features in a layer, by creating multiple translated versions of each feature. "
55 "Each copy is incrementally displaced by a preset amount in the x/y/z/m axis." );
58QString QgsArrayTranslatedFeaturesAlgorithm::shortDescription()
const
60 return QObject::tr(
"Creates multiple translated copies of features in a layer." );
68QgsArrayTranslatedFeaturesAlgorithm *QgsArrayTranslatedFeaturesAlgorithm::createInstance()
const
70 return new QgsArrayTranslatedFeaturesAlgorithm();
73void QgsArrayTranslatedFeaturesAlgorithm::initParameters(
const QVariantMap & )
75 std::unique_ptr< QgsProcessingParameterNumber > count = std::make_unique< QgsProcessingParameterNumber >( QStringLiteral(
"COUNT" ),
78 count->setIsDynamic(
true );
80 count->setDynamicLayerParameterName( QStringLiteral(
"INPUT" ) );
81 addParameter( count.release() );
83 std::unique_ptr< QgsProcessingParameterDistance > xOffset = std::make_unique< QgsProcessingParameterDistance >( QStringLiteral(
"DELTA_X" ),
84 QObject::tr(
"Step distance (x-axis)" ),
85 0.0, QStringLiteral(
"INPUT" ) );
86 xOffset->setIsDynamic(
true );
88 xOffset->setDynamicLayerParameterName( QStringLiteral(
"INPUT" ) );
89 addParameter( xOffset.release() );
91 std::unique_ptr< QgsProcessingParameterDistance > yOffset = std::make_unique< QgsProcessingParameterDistance >( QStringLiteral(
"DELTA_Y" ),
92 QObject::tr(
"Step distance (y-axis)" ),
93 0.0, QStringLiteral(
"INPUT" ) );
94 yOffset->setIsDynamic(
true );
96 yOffset->setDynamicLayerParameterName( QStringLiteral(
"INPUT" ) );
97 addParameter( yOffset.release() );
99 std::unique_ptr< QgsProcessingParameterNumber > zOffset = std::make_unique< QgsProcessingParameterNumber >( QStringLiteral(
"DELTA_Z" ),
102 zOffset->setIsDynamic(
true );
104 zOffset->setDynamicLayerParameterName( QStringLiteral(
"INPUT" ) );
105 addParameter( zOffset.release() );
107 std::unique_ptr< QgsProcessingParameterNumber > mOffset = std::make_unique< QgsProcessingParameterNumber >( QStringLiteral(
"DELTA_M" ),
110 mOffset->setIsDynamic(
true );
112 mOffset->setDynamicLayerParameterName( QStringLiteral(
"INPUT" ) );
113 addParameter( mOffset.release() );
118 mCount = parameterAsInt( parameters, QStringLiteral(
"COUNT" ), context );
121 mCountProperty = parameters.value( QStringLiteral(
"COUNT" ) ).value<
QgsProperty >();
123 mDeltaX = parameterAsDouble( parameters, QStringLiteral(
"DELTA_X" ), context );
125 if ( mDynamicDeltaX )
126 mDeltaXProperty = parameters.value( QStringLiteral(
"DELTA_X" ) ).value<
QgsProperty >();
128 mDeltaY = parameterAsDouble( parameters, QStringLiteral(
"DELTA_Y" ), context );
130 if ( mDynamicDeltaY )
131 mDeltaYProperty = parameters.value( QStringLiteral(
"DELTA_Y" ) ).value<
QgsProperty >();
133 mDeltaZ = parameterAsDouble( parameters, QStringLiteral(
"DELTA_Z" ), context );
135 if ( mDynamicDeltaZ )
136 mDeltaZProperty = parameters.value( QStringLiteral(
"DELTA_Z" ) ).value<
QgsProperty >();
138 mDeltaM = parameterAsDouble( parameters, QStringLiteral(
"DELTA_M" ), context );
140 if ( mDynamicDeltaM )
141 mDeltaMProperty = parameters.value( QStringLiteral(
"DELTA_M" ) ).value<
QgsProperty >();
158 result.reserve( count + 1 );
160 double deltaX = mDeltaX;
161 if ( mDynamicDeltaX )
163 double deltaY = mDeltaY;
164 if ( mDynamicDeltaY )
166 double deltaZ = mDeltaZ;
167 if ( mDynamicDeltaZ )
169 double deltaM = mDeltaM;
170 if ( mDynamicDeltaM )
183 outAttrs << QVariant( 0 );
188 for (
int i = 0; i < count; ++i )
191 geometry.
translate( deltaX, deltaY, deltaZ, deltaM );
194 outAttrs << QVariant( i + 1 );
196 result << offsetFeature;
217QgsFields QgsArrayTranslatedFeaturesAlgorithm::outputFields(
const QgsFields &inputFields )
const
220 output.
append(
QgsField( QStringLiteral(
"instance" ), QMetaType::Type::Int ) );
@ 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.
@ Double
Double/float values.
virtual bool addZValue(double zValue=0)=0
Adds a z-dimension to the geometry, initialized to a preset value.
bool isMeasure() const
Returns true if the geometry contains m values.
bool is3D() const
Returns true if the geometry is 3D and contains a z-value.
virtual bool addMValue(double mValue=0)=0
Adds a measure to the geometry, initialized to a preset value.
QFlags< SinkFlag > SinkFlags
@ RegeneratePrimaryKey
This flag indicates, that a primary key field cannot be guaranteed to be unique and the sink should i...
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
void setAttributes(const QgsAttributes &attrs)
Sets the feature's attributes.
bool hasGeometry() const
Returns true if the feature has an associated geometry.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
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.
A geometry is the spatial representation of a feature.
QgsAbstractGeometry * get()
Returns a modifiable (non-const) reference to the underlying abstract geometry primitive.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
Qgis::GeometryOperationResult translate(double dx, double dy, double dz=0.0, double dm=0.0)
Translates this geometry by dx, dy, dz and dm.
Contains information about the context in which a processing algorithm is executed.
QgsExpressionContext & expressionContext()
Returns the expression context.
Base class for providing feedback from a processing algorithm.
static bool isDynamic(const QVariantMap ¶meters, const QString &name)
Returns true if the parameter with matching name is a dynamic parameter, and must be evaluated once f...
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).
Definition for a property.
@ Double
Double value (including negative values)
@ IntegerPositiveGreaterZero
Non-zero positive integer values.
A store for object properties.
double valueAsDouble(const QgsExpressionContext &context, double defaultValue=0.0, bool *ok=nullptr) const
Calculates the current value of the property and interprets it as a double.
static Qgis::WkbType addM(Qgis::WkbType type)
Adds the m dimension to a WKB type and returns the new type.
static Qgis::WkbType addZ(Qgis::WkbType type)
Adds the z dimension to a WKB type and returns the new type.
QList< QgsFeature > QgsFeatureList