29#include <QDomDocument>
33using namespace Qt::StringLiterals;
38 mGradientRamp = std::make_unique<QgsGradientColorRamp>( QColor( 255, 255, 255 ), QColor( 0, 0, 0 ) );
39 mLegendSettings.setMinimumLabel( QObject::tr(
"Minimum" ) );
40 mLegendSettings.setMaximumLabel( QObject::tr(
"Maximum" ) );
48 mValues.resize( context.
painter()->device()->width() * context.
painter()->device()->height() / ( mRenderQuality * mRenderQuality ) );
50 mCalculatedMaxValue = 0;
51 mFeaturesRendered = 0;
52 mRadiusPixels = std::round( context.
convertToPainterUnits( mRadius, mRadiusUnit, mRadiusMapUnitScale ) / mRenderQuality );
53 mRadiusSquared = mRadiusPixels * mRadiusPixels;
66 mWeightAttrNum = fields.
lookupField( mWeightExpressionString );
67 if ( mWeightAttrNum == -1 )
69 mWeightExpression = std::make_unique<QgsExpression>( mWeightExpressionString );
76 mExplicitMax = dataDefinedExplicitMax;
80 mRadius = dataDefinedRadius;
82 initializeValues( context );
104 Q_UNUSED( drawVertexMarker )
118 if ( !mWeightExpressionString.isEmpty() )
121 if ( mWeightAttrNum == -1 )
123 Q_ASSERT( mWeightExpression.get() );
129 value = attrs.value( mWeightAttrNum );
132 const double evalWeight = value.toDouble( &ok );
139 const int width = context.
painter()->device()->width() / mRenderQuality;
140 const int height = context.
painter()->device()->height() / mRenderQuality;
154 for ( QgsMultiPointXY::const_iterator pointIt = multiPoint.constBegin(); pointIt != multiPoint.constEnd(); ++pointIt )
157 const int pointX = pixel.
x() / mRenderQuality;
158 const int pointY = pixel.
y() / mRenderQuality;
159 for (
int x = std::max( pointX - mRadiusPixels, 0 ); x < std::min( pointX + mRadiusPixels, width ); ++x )
164 for (
int y = std::max( pointY - mRadiusPixels, 0 ); y < std::min( pointY + mRadiusPixels, height ); ++y )
166 const int index = y * width + x;
167 if ( index >= mValues.count() )
171 const double distanceSquared = std::pow( pointX - x, 2.0 ) + std::pow( pointY - y, 2.0 );
172 if ( distanceSquared > mRadiusSquared )
177 const double score = weight * quarticKernel( std::sqrt( distanceSquared ), mRadiusPixels );
178 const double value = mValues.at( index ) + score;
179 if ( value > mCalculatedMaxValue )
181 mCalculatedMaxValue = value;
183 mValues[index] = value;
191 if ( mFeaturesRendered % 200 == 0 )
193 renderImage( context );
200double QgsHeatmapRenderer::uniformKernel(
const double distance,
const int bandwidth )
const
203 Q_UNUSED( bandwidth )
207double QgsHeatmapRenderer::quarticKernel(
const double distance,
const int bandwidth )
const
209 return std::pow( 1. - std::pow( distance /
static_cast< double >( bandwidth ), 2 ), 2 );
212double QgsHeatmapRenderer::triweightKernel(
const double distance,
const int bandwidth )
const
214 return std::pow( 1. - std::pow( distance /
static_cast< double >( bandwidth ), 2 ), 3 );
217double QgsHeatmapRenderer::epanechnikovKernel(
const double distance,
const int bandwidth )
const
219 return ( 1. - std::pow( distance /
static_cast< double >( bandwidth ), 2 ) );
222double QgsHeatmapRenderer::triangularKernel(
const double distance,
const int bandwidth )
const
224 return ( 1. - ( distance /
static_cast< double >( bandwidth ) ) );
231 renderImage( context );
232 mWeightExpression.reset();
242 QImage image( context.
painter()->device()->width() / mRenderQuality, context.
painter()->device()->height() / mRenderQuality, QImage::Format_ARGB32 );
243 image.fill( Qt::transparent );
245 const double scaleMax = mExplicitMax > 0 ? mExplicitMax : mCalculatedMaxValue;
250 for (
int heightIndex = 0; heightIndex < image.height(); ++heightIndex )
255 QRgb *scanLine =
reinterpret_cast< QRgb *
>( image.scanLine( heightIndex ) );
256 for (
int widthIndex = 0; widthIndex < image.width(); ++widthIndex )
259 pixVal = mValues.at( idx ) > 0 ? std::min( ( mValues.at( idx ) / scaleMax ), 1.0 ) : 0;
262 pixColor = mGradientRamp->color( pixVal );
264 scanLine[widthIndex] = pixColor.rgba();
269 if ( mRenderQuality > 1 )
271 const QImage resized = image.scaled( context.
painter()->device()->width(), context.
painter()->device()->height() );
272 context.
painter()->drawImage( 0, 0, resized );
276 context.
painter()->drawImage( 0, 0, image );
282 return u
"[HEATMAP]"_s;
308 const double extension = context.
convertToMapUnits( mRadius, mRadiusUnit, mRadiusMapUnitScale );
319 r->
setRadius( element.attribute( u
"radius"_s, u
"50.0"_s ).toFloat() );
322 r->
setMaximumValue( element.attribute( u
"max_value"_s, u
"0.0"_s ).toFloat() );
326 QDomElement sourceColorRampElem = element.firstChildElement( u
"colorramp"_s );
327 if ( !sourceColorRampElem.isNull() && sourceColorRampElem.attribute( u
"name"_s ) ==
"[source]"_L1 )
342 rendererElem.setAttribute( u
"type"_s, u
"heatmapRenderer"_s );
343 rendererElem.setAttribute( u
"radius"_s, QString::number( mRadius ) );
344 rendererElem.setAttribute( u
"radius_unit"_s, QString::number(
static_cast< int >( mRadiusUnit ) ) );
346 rendererElem.setAttribute( u
"max_value"_s, QString::number( mExplicitMax ) );
347 rendererElem.setAttribute( u
"quality"_s, QString::number( mRenderQuality ) );
348 rendererElem.setAttribute( u
"weight_expression"_s, mWeightExpressionString );
353 rendererElem.appendChild( colorRampElem );
355 mLegendSettings.writeXml( doc, rendererElem, context );
375 QSet<QString> attributes;
381 attributes << mWeightExpressionString;
392 if ( renderer->
type() ==
"heatmapRenderer"_L1 )
398 auto res = std::make_unique< QgsHeatmapRenderer >();
400 return res.release();
422 mGradientRamp.reset( ramp );
427 mLegendSettings = settings;
RenderUnit
Rendering size units.
double valueAsDouble(int key, const QgsExpressionContext &context, double defaultValue=0.0, bool *ok=nullptr) const
Calculates the current value of the property with the specified key and interprets it as a double.
Settings for a color ramp legend node.
A legend node which renders a color ramp.
Abstract base class for color ramps.
Handles parsing and evaluation of expressions (formerly called "search strings").
bool hasParserError() const
Returns true if an error occurred when parsing the input expression.
QSet< QString > referencedColumns() const
Gets list of columns referenced by the expression.
QgsPropertyCollection & dataDefinedProperties()
Returns a reference to the renderer's property collection, used for data defined overrides.
QgsFeatureRenderer(const QString &type)
virtual void stopRender(QgsRenderContext &context)
Must be called when a render cycle has finished, to allow the renderer to clean up.
@ HeatmapRadius
Heatmap renderer radius.
@ HeatmapMaximum
Heatmap maximum value.
void copyRendererData(QgsFeatureRenderer *destRenderer) const
Clones generic renderer data to another renderer.
void saveRendererData(QDomDocument &doc, QDomElement &element, const QgsReadWriteContext &context)
Saves generic renderer data into the specified element.
virtual void startRender(QgsRenderContext &context, const QgsFields &fields)
Must be called when a new render cycle is started.
virtual QgsFeatureRenderer * clone() const =0
Create a deep copy of this renderer.
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.
Container of fields for a vector layer.
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.
Qgis::GeometryOperationResult transform(const QgsCoordinateTransform &ct, Qgis::TransformDirection direction=Qgis::TransformDirection::Forward, bool transformZ=false)
Transforms this geometry as described by the coordinate transform ct.
QgsMultiPointXY asMultiPoint() const
Returns the contents of the geometry as a multi-point.
QgsPointXY asPoint() const
Returns the contents of the geometry as a 2-dimensional point.
bool isMultipart() const
Returns true if WKB of the geometry is of WKBMulti* type.
void setColorRamp(QgsColorRamp *ramp)
Sets the color ramp to use for shading the heatmap.
QgsSymbol * symbolForFeature(const QgsFeature &feature, QgsRenderContext &context) const override
To be overridden.
void modifyRequestExtent(QgsRectangle &extent, QgsRenderContext &context) override
Allows for a renderer to modify the extent of a feature request prior to rendering.
void startRender(QgsRenderContext &context, const QgsFields &fields) override
Must be called when a new render cycle is started.
QSet< QString > usedAttributes(const QgsRenderContext &context) const override
Returns a list of attributes required by this renderer.
void setRadius(const double radius)
Sets the radius for the heatmap.
void setLegendSettings(const QgsColorRampLegendNodeSettings &settings)
Sets the color ramp legend settings.
void setRadiusUnit(const Qgis::RenderUnit unit)
Sets the units used for the heatmap's radius.
static QgsFeatureRenderer * create(QDomElement &element, const QgsReadWriteContext &context)
Creates a new heatmap renderer instance from XML.
void setRenderQuality(const int quality)
Sets the render quality used for drawing the heatmap.
bool renderFeature(const QgsFeature &feature, QgsRenderContext &context, int layer=-1, bool selected=false, bool drawVertexMarker=false) override
Render a feature using this renderer in the given context.
~QgsHeatmapRenderer() override
static QgsHeatmapRenderer * convertFromRenderer(const QgsFeatureRenderer *renderer)
void setWeightExpression(const QString &expression)
Sets the expression used for weighting points when generating the heatmap.
void setMaximumValue(const double value)
Sets the maximum value used for shading the heatmap.
void stopRender(QgsRenderContext &context) override
Must be called when a render cycle has finished, to allow the renderer to clean up.
QString dump() const override
Returns debug information about this renderer.
QDomElement save(QDomDocument &doc, const QgsReadWriteContext &context) override
Stores renderer properties to an XML element.
QList< QgsLayerTreeModelLegendNode * > createLegendNodes(QgsLayerTreeLayer *nodeLayer) const override
Returns a list of legend nodes to be used for the legend for the renderer.
QgsHeatmapRenderer * clone() const override
Create a deep copy of this renderer.
const QgsColorRampLegendNodeSettings & legendSettings() const
Returns the color ramp legend settings.
bool accept(QgsStyleEntityVisitorInterface *visitor) const override
Accepts the specified symbology visitor, causing it to visit all symbols associated with the renderer...
void setRadiusMapUnitScale(const QgsMapUnitScale &scale)
Sets the map unit scale used for the heatmap's radius.
QgsSymbolList symbols(QgsRenderContext &context) const override
Returns list of symbols used by the renderer.
Layer tree node points to a map layer.
QgsLayerTreeLayer * clone() const override
Create a copy of the node. Returns new instance.
QgsPointXY transform(const QgsPointXY &p) const
Transforms a point p from map (world) coordinates to device coordinates.
A container for the context for various read/write operations on objects.
A rectangle specified with double values.
void setYMinimum(double y)
Set the minimum y value.
void setXMinimum(double x)
Set the minimum x value.
void setYMaximum(double y)
Set the maximum y value.
void setXMaximum(double x)
Set the maximum x value.
Contains information about the context of a rendering operation.
double convertToMapUnits(double size, Qgis::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale()) const
Converts a size from the specified units to map units.
double convertToPainterUnits(double size, Qgis::RenderUnit unit, const QgsMapUnitScale &scale=QgsMapUnitScale(), Qgis::RenderSubcomponentProperty property=Qgis::RenderSubcomponentProperty::Generic) const
Converts a size from the specified units to painter units (pixels).
QPainter * painter()
Returns the destination QPainter for the render operation.
QgsExpressionContext & expressionContext()
Gets the expression context.
const QgsMapToPixel & mapToPixel() const
Returns the context's map to pixel transform, which transforms between map coordinates and device coo...
bool renderingStopped() const
Returns true if the rendering operation has been stopped and any ongoing rendering should be canceled...
QgsCoordinateTransform coordinateTransform() const
Returns the current coordinate transform for the context.
A color ramp entity for QgsStyle databases.
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.
static QString encodeMapUnitScale(const QgsMapUnitScale &mapUnitScale)
static std::unique_ptr< QgsColorRamp > loadColorRamp(QDomElement &element)
Creates a color ramp from the settings encoded in an XML element.
static QgsMapUnitScale decodeMapUnitScale(const QString &str)
static QDomElement saveColorRamp(const QString &name, const QgsColorRamp *ramp, QDomDocument &doc)
Encodes a color ramp's settings to an XML element.
Abstract base class for all rendered symbols.
QVector< QgsPointXY > QgsMultiPointXY
A collection of QgsPoints that share a common collection of attributes.
#define RENDERER_TAG_NAME
QList< QgsSymbol * > QgsSymbolList
Contains information relating to the style entity currently being visited.