25using namespace Qt::StringLiterals;
29QString QgsWedgeBuffersAlgorithm::name()
const
31 return u
"wedgebuffers"_s;
34QString QgsWedgeBuffersAlgorithm::displayName()
const
36 return QObject::tr(
"Create wedge buffers" );
39QStringList QgsWedgeBuffersAlgorithm::tags()
const
41 return QObject::tr(
"arc,segment,circular,circle,slice" ).split(
',' );
44QString QgsWedgeBuffersAlgorithm::group()
const
46 return QObject::tr(
"Vector geometry" );
49QString QgsWedgeBuffersAlgorithm::groupId()
const
51 return u
"vectorgeometry"_s;
54QString QgsWedgeBuffersAlgorithm::outputName()
const
56 return QObject::tr(
"Buffers" );
71QString QgsWedgeBuffersAlgorithm::shortHelpString()
const
74 "This algorithm creates wedge shaped buffers from input points.\n\n"
75 "The azimuth parameter gives the angle (in degrees) for the middle of the wedge to point. "
76 "The buffer width (in degrees) is specified by the width parameter. Note that the "
77 "wedge will extend to half of the angular width either side of the azimuth direction.\n\n"
78 "The outer radius of the buffer is specified via outer radius, and optionally an "
79 "inner radius can also be specified.\n\n"
80 "The native output from this algorithm are CurvePolygon geometries, but these may "
81 "be automatically segmentized to Polygons depending on the output format."
85QString QgsWedgeBuffersAlgorithm::shortDescription()
const
87 return QObject::tr(
"Creates wedge shaped buffers from input points." );
90QList<int> QgsWedgeBuffersAlgorithm::inputLayerTypes()
const
100QgsWedgeBuffersAlgorithm *QgsWedgeBuffersAlgorithm::createInstance()
const
102 return new QgsWedgeBuffersAlgorithm();
105void QgsWedgeBuffersAlgorithm::initParameters(
const QVariantMap & )
108 azimuth->setIsDynamic(
true );
110 azimuth->setDynamicLayerParameterName( u
"INPUT"_s );
111 addParameter( azimuth.release() );
114 width->setIsDynamic(
true );
116 width->setDynamicLayerParameterName( u
"INPUT"_s );
117 addParameter( width.release() );
120 outerRadius->setIsDynamic(
true );
122 outerRadius->setDynamicLayerParameterName( u
"INPUT"_s );
123 addParameter( outerRadius.release() );
126 innerRadius->setIsDynamic(
true );
128 innerRadius->setDynamicLayerParameterName( u
"INPUT"_s );
129 addParameter( innerRadius.release() );
139 mAzimuth = parameterAsDouble( parameters, u
"AZIMUTH"_s, context );
141 if ( mDynamicAzimuth )
142 mAzimuthProperty = parameters.value( u
"AZIMUTH"_s ).value<
QgsProperty>();
144 mWidth = parameterAsDouble( parameters, u
"WIDTH"_s, context );
147 mWidthProperty = parameters.value( u
"WIDTH"_s ).value<
QgsProperty>();
149 mOuterRadius = parameterAsDouble( parameters, u
"OUTER_RADIUS"_s, context );
151 if ( mDynamicOuterRadius )
152 mOuterRadiusProperty = parameters.value( u
"OUTER_RADIUS"_s ).value<
QgsProperty>();
154 mInnerRadius = parameterAsDouble( parameters, u
"INNER_RADIUS"_s, context );
156 if ( mDynamicInnerRadius )
157 mInnerRadiusProperty = parameters.value( u
"INNER_RADIUS"_s ).value<
QgsProperty>();
167 double azimuth = mAzimuth;
168 if ( mDynamicAzimuth )
169 azimuth = mAzimuthProperty.valueAsDouble( context.
expressionContext(), azimuth );
171 double width = mWidth;
175 double outerRadius = mOuterRadius;
176 if ( mDynamicOuterRadius )
179 double innerRadius = mInnerRadius;
180 if ( mDynamicInnerRadius )
187 auto result = std::make_unique<QgsMultiSurface>();
ProcessingSourceType
Processing data source types.
@ VectorPoint
Vector point layers.
@ VectorPolygon
Vector polygon layers.
@ SkipGeometryValidityChecks
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
WkbType
The WKB type describes the number of dimensions a geometry has.
@ CurvePolygon
CurvePolygon.
QFlags< ProcessingFeatureSourceFlag > ProcessingFeatureSourceFlags
Flags which control how QgsProcessingFeatureSource fetches features.
@ Double
Double/float values.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
bool hasGeometry() const
Returns true if the feature has an associated geometry.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
int numGeometries() const
Returns the number of geometries within the collection.
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.
static QgsGeometry createWedgeBuffer(const QgsPoint ¢er, double azimuth, double angularWidth, double outerRadius, double innerRadius=0)
Creates a wedge shaped buffer from a center point.
Qgis::WkbType wkbType() const
Returns type of the geometry as a WKB type (point / linestring / polygon etc.).
Multi point geometry collection.
QgsPoint * pointN(int index)
Returns the point with the specified index.
Point geometry type, with support for z-dimension and m-values.
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...
Definition for a property.
@ Double
Double value (including negative values).
@ DoublePositive
Positive double value (including 0).
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::GeometryType geometryType(Qgis::WkbType type)
Returns the geometry type for a WKB type, e.g., both MultiPolygon and CurvePolygon would have a Polyg...
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.
static Q_INVOKABLE bool hasZ(Qgis::WkbType type)
Tests whether a WKB type contains the z-dimension.
static Q_INVOKABLE bool hasM(Qgis::WkbType type)
Tests whether a WKB type contains m values.
static Qgis::WkbType multiType(Qgis::WkbType type)
Returns the multi type for a WKB type.
static Q_INVOKABLE bool isMultiType(Qgis::WkbType type)
Returns true if the WKB type is a multi type.
QList< QgsFeature > QgsFeatureList