29using namespace Qt::StringLiterals;
34 mColorRampShader.classifyColorRamp( 5, -1,
QgsRectangle(),
nullptr );
44 auto res = std::make_unique< QgsPointCloudAttributeByRampRenderer >();
45 res->mAttribute = mAttribute;
46 res->mColorRampShader = mColorRampShader;
62 visibleExtent.
grow( std::max( visibleExtent.
width(), visibleExtent.
height() ) * 0.05 );
65 const char *ptr = block->
data();
70 int attributeOffset = 0;
78 const bool considerZ = !zRange.
isInfinite() || renderElevation;
80 const bool applyZOffset =
attribute->name() ==
"Z"_L1;
81 const bool applyXOffset =
attribute->name() ==
"X"_L1;
82 const bool applyYOffset =
attribute->name() ==
"Y"_L1;
89 const bool reproject = ct.
isValid();
95 for (
int i = 0; i < count; ++i )
105 z =
pointZ( context, ptr, i );
110 pointXY( context, ptr, i, x, y );
111 if ( visibleExtent.
contains( x, y ) )
125 double attributeValue = 0;
126 context.
getAttribute( ptr, i * recordSize + attributeOffset, attributeType, attributeValue );
129 attributeValue = context.
offset().
x() + context.
scale().
x() * attributeValue;
131 attributeValue = context.
offset().
y() + context.
scale().
y() * attributeValue;
135 mColorRampShader.shade( attributeValue, &red, &green, &blue, &alpha );
146 drawPoint( x, y, QColor( red, green, blue, alpha ), context );
147 if ( renderElevation )
159 auto r = std::make_unique< QgsPointCloudAttributeByRampRenderer >();
161 r->setAttribute( element.attribute( u
"attribute"_s, u
"Intensity"_s ) );
163 QDomElement elemShader = element.firstChildElement( u
"colorrampshader"_s );
164 r->mColorRampShader.readXml( elemShader, context );
166 r->setMinimum( element.attribute( u
"min"_s, u
"0"_s ).toDouble() );
167 r->setMaximum( element.attribute( u
"max"_s, u
"100"_s ).toDouble() );
169 r->restoreCommonProperties( element, context );
176 QDomElement rendererElem = doc.createElement( u
"renderer"_s );
178 rendererElem.setAttribute( u
"type"_s, u
"ramp"_s );
179 rendererElem.setAttribute( u
"min"_s, mMin );
180 rendererElem.setAttribute( u
"max"_s, mMax );
182 rendererElem.setAttribute( u
"attribute"_s, mAttribute );
184 QDomElement elemShader = mColorRampShader.writeXml( doc, context );
185 rendererElem.appendChild( elemShader );
201 QList<QgsLayerTreeModelLegendNode *> res;
204 switch ( mColorRampShader.colorRampType() )
209 if ( mColorRampShader.sourceColorRamp() && ( ! mColorRampShader.legendSettings() || mColorRampShader.legendSettings()->useContinuousLegend() ) )
213 mColorRampShader.minimumValue(),
214 mColorRampShader.maximumValue() );
222 QList< QPair< QString, QColor > > items;
223 mColorRampShader.legendSymbologyItems( items );
224 res.reserve( items.size() );
225 for (
const QPair< QString, QColor > &item : std::as_const( items ) )
247 return mColorRampShader;
252 mColorRampShader = shader;
277 auto data = std::make_unique< QgsPointCloudAttributeByRampRendererPreparedData >();
278 data->attributeName = mAttribute;
279 data->colorRampShader = mColorRampShader;
281 data->attributeIsX = mAttribute ==
"X"_L1;
282 data->attributeIsY = mAttribute ==
"Y"_L1;
283 data->attributeIsZ = mAttribute ==
"Z"_L1;
289 double attributeValue = 0;
296 attributeValue = block->
offset().
x() + block->
scale().
x() * attributeValue;
298 attributeValue = block->
offset().
y() + block->
scale().
y() * attributeValue;
305 return QColor( red, green, blue, alpha );
@ Exact
Assigns the color of the exact matching value in the color ramp item list.
@ Linear
Interpolates the color between two class breaks linearly.
@ Discrete
Assigns the color of the higher class for every pixel between two class breaks.
Settings for a color ramp legend node.
A legend node which renders a color ramp.
A ramp shader will color a raster pixel based on a list of values ranges in a ramp.
Custom exception class for Coordinate Reference System related exceptions.
QgsRange which stores a range of double values.
bool isInfinite() const
Returns true if the range consists of all possible values.
Layer tree node points to a map layer.
QgsLayerTreeLayer * clone() const override
Create a copy of the node. Returns new instance.
QColor pointColor(const QgsPointCloudBlock *block, int i, double z) override
An optimised method of retrieving the color of a point from a point cloud block.
bool prepareBlock(const QgsPointCloudBlock *block) override
Prepares the renderer for using the specified block.
QSet< QString > usedAttributes() const override
Returns the set of attributes used by the prepared point cloud renderer.
QgsColorRampShader colorRampShader
QgsPointCloudAttribute::DataType attributeType
QString type() const override
Returns the identifier of the renderer type.
void setMaximum(double maximum)
Sets the maximum value for attributes which will be used by the color ramp shader.
QgsPointCloudRenderer * clone() const override
Create a deep copy of this renderer.
static QgsPointCloudRenderer * create(QDomElement &element, const QgsReadWriteContext &context)
Creates an RGB renderer from an XML element.
void renderBlock(const QgsPointCloudBlock *block, QgsPointCloudRenderContext &context) override
Renders a block of point cloud data using the specified render context.
void setMinimum(double minimum)
Sets the minimum value for attributes which will be used by the color ramp shader.
QgsPointCloudAttributeByRampRenderer()
Constructor for QgsPointCloudAttributeByRampRenderer.
QDomElement save(QDomDocument &doc, const QgsReadWriteContext &context) const override
Saves the renderer configuration to an XML element.
double maximum() const
Returns the maximum value for attributes which will be used by the color ramp shader.
QList< QgsLayerTreeModelLegendNode * > createLegendNodes(QgsLayerTreeLayer *nodeLayer) override
Creates a set of legend nodes representing the renderer.
void setColorRampShader(const QgsColorRampShader &shader)
Sets the color ramp shader function used to visualize the attribute.
QSet< QString > usedAttributes(const QgsPointCloudRenderContext &context) const override
Returns a list of attributes required by this renderer.
std::unique_ptr< QgsPreparedPointCloudRendererData > prepare() override
Returns prepared data container for bulk point color retrieval.
QgsColorRampShader colorRampShader() const
Returns the color ramp shader function used to visualize the attribute.
double minimum() const
Returns the minimum value for attributes which will be used by the color ramp shader.
QString attribute() const
Returns the attribute to use for the renderer.
void setAttribute(const QString &attribute)
Sets the attribute to use for the renderer.
A collection of point cloud attributes.
int pointRecordSize() const
Returns total size of record.
const QgsPointCloudAttribute * find(const QString &attributeName, int &offset) const
Finds the attribute with the name.
Attribute for point cloud data pair of name and size in bytes.
DataType
Systems of unit measurement.
DataType type() const
Returns the data type.
Base class for storing raw data from point cloud nodes.
QgsVector3D scale() const
Returns the custom scale of the block.
const char * data() const
Returns raw pointer to data.
QgsPointCloudAttributeCollection attributes() const
Returns the attributes that are stored in the data block, along with their size.
int pointCount() const
Returns number of points that are stored in the block.
int pointRecordSize() const
Returns the total size of each individual point record.
QgsVector3D offset() const
Returns the custom offset of the block.
Encapsulates the render context for a 2D point cloud rendering operation.
double zValueFixedOffset() const
Returns any constant offset which must be applied to z values taken from the point cloud index.
QgsVector3D offset() const
Returns the offset of the layer's int32 coordinates compared to CRS coords.
QgsRenderContext & renderContext()
Returns a reference to the context's render context.
void incrementPointsRendered(long count)
Increments the count of points rendered by the specified amount.
static void getAttribute(const char *data, std::size_t offset, QgsPointCloudAttribute::DataType type, T &value)
Retrieves the attribute value from data at the specified offset, where type indicates the original da...
double zValueScale() const
Returns any constant scaling factor which must be applied to z values taken from the point cloud inde...
QgsVector3D scale() const
Returns the scale of the layer's int32 coordinates compared to CRS coords.
bool renderAsTriangles() const
Returns whether points are triangulated to render solid surface.
void drawPointToElevationMap(double x, double y, double z, QgsPointCloudRenderContext &context) const
Draws a point at the elevation z using at the specified x and y (in map coordinates) on the elevation...
void saveCommonProperties(QDomElement &element, const QgsReadWriteContext &context) const
Saves common renderer properties (such as point size and screen error) to the specified DOM element.
void addPointToTriangulation(double x, double y, double z, const QColor &color, QgsPointCloudRenderContext &context)
Adds a point to the list of points to be triangulated (only used when renderAsTriangles() is enabled)...
void copyCommonProperties(QgsPointCloudRenderer *destination) const
Copies common point cloud properties (such as point size and screen error) to the destination rendere...
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).
static double pointZ(QgsPointCloudRenderContext &context, const char *ptr, int i)
Retrieves the z value for the point at index i.
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.
bool contains(const QgsRange< T > &other) const
Returns true if this range contains another range.
Implementation of legend node interface for displaying raster legend entries.
A container for the context for various read/write operations on objects.
A rectangle specified with double values.
bool contains(const QgsRectangle &rect) const
Returns true when rectangle contains other rectangle.
void grow(double delta)
Grows the rectangle in place by the specified amount.
QgsElevationMap * elevationMap() const
Returns the destination elevation map for the render operation.
const QgsRectangle & extent() const
When rendering a map layer, calling this method returns the "clipping" extent for the layer (in the l...
QgsDoubleRange zRange() const
Returns the range of z-values which should be rendered.
bool renderingStopped() const
Returns true if the rendering operation has been stopped and any ongoing rendering should be canceled...
QPainter * previewRenderPainter()
Returns the const destination QPainter for temporary in-progress preview renders.
QgsCoordinateTransform coordinateTransform() const
Returns the current coordinate transform for the context.
Implementation of legend node interface for displaying arbitrary labels with icons.
static QgsStyle * defaultStyle(bool initialize=true)
Returns the default application-wide style.
double y() const
Returns Y coordinate.
double z() const
Returns Z coordinate.
double x() const
Returns X coordinate.