QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
An RGB renderer for 2d visualisation of point clouds using embedded red, green and blue attributes. More...
#include <qgspointcloudrgbrenderer.h>
Public Member Functions | |
QgsPointCloudRgbRenderer () | |
Constructor for QgsPointCloudRgbRenderer. More... | |
QString | blueAttribute () const |
Returns the attribute to use for the blue channel. More... | |
const QgsContrastEnhancement * | blueContrastEnhancement () const |
Returns the contrast enhancement to use for the blue channel. More... | |
QgsPointCloudRenderer * | clone () const override |
Create a deep copy of this renderer. More... | |
QString | greenAttribute () const |
Returns the attribute to use for the green channel. More... | |
const QgsContrastEnhancement * | greenContrastEnhancement () const |
Returns the contrast enhancement to use for the green channel. More... | |
QString | redAttribute () const |
Returns the attribute to use for the red channel. More... | |
const QgsContrastEnhancement * | redContrastEnhancement () const |
Returns the contrast enhancement to use for the red channel. More... | |
void | renderBlock (const QgsPointCloudBlock *block, QgsPointCloudRenderContext &context) override |
Renders a block of point cloud data using the specified render context. More... | |
QDomElement | save (QDomDocument &doc, const QgsReadWriteContext &context) const override |
Saves the renderer configuration to an XML element. More... | |
void | setBlueAttribute (const QString &attribute) |
Sets the attribute to use for the blue channel. More... | |
void | setBlueContrastEnhancement (QgsContrastEnhancement *enhancement) |
Sets the contrast enhancement to use for the blue channel. More... | |
void | setGreenAttribute (const QString &attribute) |
Sets the attribute to use for the green channel. More... | |
void | setGreenContrastEnhancement (QgsContrastEnhancement *enhancement) |
Sets the contrast enhancement to use for the green channel. More... | |
void | setRedAttribute (const QString &attribute) |
Sets the attribute to use for the red channel. More... | |
void | setRedContrastEnhancement (QgsContrastEnhancement *enhancement) |
Sets the contrast enhancement to use for the red channel. More... | |
QString | type () const override |
Returns the identifier of the renderer type. More... | |
QSet< QString > | usedAttributes (const QgsPointCloudRenderContext &context) const override |
Returns a list of attributes required by this renderer. More... | |
Public Member Functions inherited from QgsPointCloudRenderer | |
QgsPointCloudRenderer ()=default | |
Constructor for QgsPointCloudRenderer. More... | |
QgsPointCloudRenderer (const QgsPointCloudRenderer &other)=delete | |
QgsPointCloudRenderer cannot be copied – use clone() instead. More... | |
virtual | ~QgsPointCloudRenderer ()=default |
virtual void | checkLegendItem (const QString &key, bool state=true) |
Called when the check state of the legend item with the specified key is changed. More... | |
virtual QList< QgsLayerTreeModelLegendNode * > | createLegendNodes (QgsLayerTreeLayer *nodeLayer) |
Creates a set of legend nodes representing the renderer. More... | |
QVector< QVariantMap > | identify (QgsPointCloudLayer *layer, const QgsRenderContext &context, const QgsGeometry &geometry, double toleranceForPointIdentification=0) |
Returns the list of visible points of the point cloud layer layer and an extent defined by a geometry in the 2D plane geometry. More... | |
virtual bool | legendItemChecked (const QString &key) |
Returns true if the legend item with the specified key is checked. More... | |
virtual QStringList | legendRuleKeys () const |
Returns a list of all rule keys for legend nodes created by the renderer. More... | |
double | maximumScreenError () const |
Returns the maximum screen error allowed when rendering the point cloud. More... | |
QgsUnitTypes::RenderUnit | maximumScreenErrorUnit () const |
Returns the unit for the maximum screen error allowed when rendering the point cloud. More... | |
QgsPointCloudRenderer & | operator= (const QgsPointCloudRenderer &other)=delete |
QgsPointCloudRenderer cannot be copied – use clone() instead. More... | |
double | pointSize () const |
Returns the point size. More... | |
const QgsMapUnitScale & | pointSizeMapUnitScale () const |
Returns the map unit scale used for the point size. More... | |
QgsUnitTypes::RenderUnit | pointSizeUnit () const |
Returns the units used for the point size. More... | |
PointSymbol | pointSymbol () const |
Returns the symbol used by the renderer for drawing points. More... | |
void | setMaximumScreenError (double error) |
Sets the maximum screen error allowed when rendering the point cloud. More... | |
void | setMaximumScreenErrorUnit (QgsUnitTypes::RenderUnit unit) |
Sets the unit for the maximum screen error allowed when rendering the point cloud. More... | |
void | setPointSize (double size) |
Sets the point size. More... | |
void | setPointSizeMapUnitScale (const QgsMapUnitScale &scale) |
Sets the map unit scale used for the point size. More... | |
void | setPointSizeUnit (const QgsUnitTypes::RenderUnit units) |
Sets the units used for the point size. More... | |
void | setPointSymbol (PointSymbol symbol) |
Sets the symbol used by the renderer for drawing points. More... | |
virtual void | startRender (QgsPointCloudRenderContext &context) |
Must be called when a new render cycle is started. More... | |
virtual void | stopRender (QgsPointCloudRenderContext &context) |
Must be called when a render cycle has finished, to allow the renderer to clean up. More... | |
virtual bool | willRenderPoint (const QMap< QString, QVariant > &pointAttributes) |
Checks whether the point holding pointAttributes attributes will be rendered By default if not overridden in the subclass renderer will return true ( the renderer is responsible for the filtering behavior ) More... | |
Static Public Member Functions | |
static QgsPointCloudRenderer * | create (QDomElement &element, const QgsReadWriteContext &context) |
Creates an RGB renderer from an XML element. More... | |
Static Public Member Functions inherited from QgsPointCloudRenderer | |
static QgsPointCloudRenderer * | load (QDomElement &element, const QgsReadWriteContext &context) |
Creates a renderer from an XML element. More... | |
Additional Inherited Members | |
Public Types inherited from QgsPointCloudRenderer | |
enum | PointSymbol { Square , Circle } |
Rendering symbols for points. More... | |
Protected Member Functions inherited from QgsPointCloudRenderer | |
void | copyCommonProperties (QgsPointCloudRenderer *destination) const |
Copies common point cloud properties (such as point size and screen error) to the destination renderer. More... | |
void | drawPoint (double x, double y, const QColor &color, QgsPointCloudRenderContext &context) const |
Draws a point using a color at the specified x and y (in map coordinates). More... | |
void | restoreCommonProperties (const QDomElement &element, const QgsReadWriteContext &context) |
Restores common renderer properties (such as point size and screen error) from the specified DOM element. More... | |
void | saveCommonProperties (QDomElement &element, const QgsReadWriteContext &context) const |
Saves common renderer properties (such as point size and screen error) to the specified DOM element. More... | |
Static Protected Member Functions inherited from QgsPointCloudRenderer | |
static void | pointXY (QgsPointCloudRenderContext &context, const char *ptr, int i, double &x, double &y) |
Retrieves the x and y coordinate for the point at index i. More... | |
static double | pointZ (QgsPointCloudRenderContext &context, const char *ptr, int i) |
Retrieves the z value for the point at index i. More... | |
An RGB renderer for 2d visualisation of point clouds using embedded red, green and blue attributes.
Definition at line 33 of file qgspointcloudrgbrenderer.h.
QgsPointCloudRgbRenderer::QgsPointCloudRgbRenderer | ( | ) |
Constructor for QgsPointCloudRgbRenderer.
Definition at line 22 of file qgspointcloudrgbrenderer.cpp.
QString QgsPointCloudRgbRenderer::blueAttribute | ( | ) | const |
Returns the attribute to use for the blue channel.
Definition at line 271 of file qgspointcloudrgbrenderer.cpp.
const QgsContrastEnhancement * QgsPointCloudRgbRenderer::blueContrastEnhancement | ( | ) | const |
Returns the contrast enhancement to use for the blue channel.
Definition at line 301 of file qgspointcloudrgbrenderer.cpp.
|
overridevirtual |
Create a deep copy of this renderer.
Should be implemented by all subclasses and generate a proper subclass.
Implements QgsPointCloudRenderer.
Definition at line 32 of file qgspointcloudrgbrenderer.cpp.
|
static |
Creates an RGB renderer from an XML element.
Definition at line 168 of file qgspointcloudrgbrenderer.cpp.
QString QgsPointCloudRgbRenderer::greenAttribute | ( | ) | const |
Returns the attribute to use for the green channel.
Definition at line 261 of file qgspointcloudrgbrenderer.cpp.
const QgsContrastEnhancement * QgsPointCloudRgbRenderer::greenContrastEnhancement | ( | ) | const |
Returns the contrast enhancement to use for the green channel.
Definition at line 291 of file qgspointcloudrgbrenderer.cpp.
QString QgsPointCloudRgbRenderer::redAttribute | ( | ) | const |
Returns the attribute to use for the red channel.
Definition at line 251 of file qgspointcloudrgbrenderer.cpp.
const QgsContrastEnhancement * QgsPointCloudRgbRenderer::redContrastEnhancement | ( | ) | const |
Returns the contrast enhancement to use for the red channel.
Definition at line 281 of file qgspointcloudrgbrenderer.cpp.
|
overridevirtual |
Renders a block of point cloud data using the specified render context.
Implements QgsPointCloudRenderer.
Definition at line 57 of file qgspointcloudrgbrenderer.cpp.
|
overridevirtual |
Saves the renderer configuration to an XML element.
Implements QgsPointCloudRenderer.
Definition at line 209 of file qgspointcloudrgbrenderer.cpp.
void QgsPointCloudRgbRenderer::setBlueAttribute | ( | const QString & | attribute | ) |
Sets the attribute to use for the blue channel.
Definition at line 276 of file qgspointcloudrgbrenderer.cpp.
void QgsPointCloudRgbRenderer::setBlueContrastEnhancement | ( | QgsContrastEnhancement * | enhancement | ) |
Sets the contrast enhancement to use for the blue channel.
Ownership of enhancement is transferred.
Definition at line 306 of file qgspointcloudrgbrenderer.cpp.
void QgsPointCloudRgbRenderer::setGreenAttribute | ( | const QString & | attribute | ) |
Sets the attribute to use for the green channel.
Definition at line 266 of file qgspointcloudrgbrenderer.cpp.
void QgsPointCloudRgbRenderer::setGreenContrastEnhancement | ( | QgsContrastEnhancement * | enhancement | ) |
Sets the contrast enhancement to use for the green channel.
Ownership of enhancement is transferred.
Definition at line 296 of file qgspointcloudrgbrenderer.cpp.
void QgsPointCloudRgbRenderer::setRedAttribute | ( | const QString & | attribute | ) |
Sets the attribute to use for the red channel.
Definition at line 256 of file qgspointcloudrgbrenderer.cpp.
void QgsPointCloudRgbRenderer::setRedContrastEnhancement | ( | QgsContrastEnhancement * | enhancement | ) |
Sets the contrast enhancement to use for the red channel.
Ownership of enhancement is transferred.
Definition at line 286 of file qgspointcloudrgbrenderer.cpp.
|
overridevirtual |
Returns the identifier of the renderer type.
Implements QgsPointCloudRenderer.
Definition at line 27 of file qgspointcloudrgbrenderer.cpp.
|
overridevirtual |
Returns a list of attributes required by this renderer.
Attributes not listed in here may not be requested from the provider at rendering time.
Reimplemented from QgsPointCloudRenderer.
Definition at line 244 of file qgspointcloudrgbrenderer.cpp.