QGIS API Documentation
3.8.0-Zanzibar (11aff65)
|
A ramp shader will color a raster pixel based on a list of values ranges in a ramp. More...
#include <qgscolorrampshader.h>
Classes | |
struct | ColorRampItem |
Public Types | |
enum | ClassificationMode { Continuous = 1, EqualInterval = 2, Quantile = 3 } |
Classification modes used to create the color ramp shader. More... | |
enum | Type { Interpolated, Discrete, Exact } |
Supported methods for color interpolation. More... | |
Public Member Functions | |
QgsColorRampShader (double minimumValue=0.0, double maximumValue=255.0, QgsColorRamp *colorRamp=nullptr, Type type=Interpolated, ClassificationMode classificationMode=Continuous) | |
Creates a new color ramp shader. More... | |
QgsColorRampShader (const QgsColorRampShader &other) | |
Copy constructor. More... | |
ClassificationMode | classificationMode () const |
Returns the classification mode. More... | |
void | classifyColorRamp (int classes=0, int band=-1, const QgsRectangle &extent=QgsRectangle(), QgsRasterInterface *input=nullptr) |
Classify color ramp shader. More... | |
void | classifyColorRamp (int band=-1, const QgsRectangle &extent=QgsRectangle(), QgsRasterInterface *input=nullptr) |
Classify color ramp shader. More... | |
bool | clip () const |
Returns whether the shader will clip values which are out of range. More... | |
QList< QgsColorRampShader::ColorRampItem > | colorRampItemList () const |
Returns the custom colormap. More... | |
Type | colorRampType () const |
Returns the color ramp type. More... | |
QString | colorRampTypeAsQString () const |
Returns the color ramp type as a string. More... | |
bool | isEmpty () const |
Whether the color ramp contains any items. More... | |
void | legendSymbologyItems (QList< QPair< QString, QColor > > &symbolItems) const override |
Returns legend symbology items if provided by renderer. More... | |
QgsColorRampShader & | operator= (const QgsColorRampShader &other) |
Assignment operator. More... | |
void | readXml (const QDomElement &elem) |
Reads configuration from the given DOM element. More... | |
void | setClassificationMode (ClassificationMode classificationMode) |
Sets classification mode. More... | |
void | setClip (bool clip) |
Sets whether the shader should not render values out of range. More... | |
void | setColorRampItemList (const QList< QgsColorRampShader::ColorRampItem > &list) |
Sets a custom colormap. More... | |
void | setColorRampType (QgsColorRampShader::Type colorRampType) |
Sets the color ramp type. More... | |
void | setColorRampType (const QString &type) |
Sets the color ramp type. More... | |
void | setSourceColorRamp (QgsColorRamp *colorramp) |
Set the source color ramp. More... | |
bool | shade (double value, int *returnRedValue, int *returnGreenValue, int *returnBlueValue, int *returnAlphaValue) const override |
Generates and new RGB value based on one input value. More... | |
bool | shade (double redValue, double greenValue, double blueValue, double alphaValue, int *returnRedValue, int *returnGreenValue, int *returnBlueValue, int *returnAlphaValue) const override |
Generates and new RGB value based on original RGB value. More... | |
QgsColorRamp * | sourceColorRamp () const |
Gets the source color ramp. More... | |
QDomElement | writeXml (QDomDocument &doc) const |
Writes configuration to a new DOM element. More... | |
Public Member Functions inherited from QgsRasterShaderFunction | |
QgsRasterShaderFunction (double minimumValue=0.0, double maximumValue=255.0) | |
virtual | ~QgsRasterShaderFunction ()=default |
double | maximumValue () const |
Returns the minimum value for the raster shader. More... | |
double | minimumMaximumRange () const |
double | minimumValue () const |
Returns the maximum value for the raster shader. More... | |
virtual void | setMaximumValue (double value) |
Sets the maximum value for the raster shader. More... | |
virtual void | setMinimumValue (double value) |
Sets the minimum value for the raster shader. More... | |
Protected Attributes | |
std::unique_ptr< QgsColorRamp > | mSourceColorRamp |
Source color ramp. More... | |
Protected Attributes inherited from QgsRasterShaderFunction | |
double | mMaximumValue |
User defineable maximum value for the shading function. More... | |
double | mMinimumMaximumRange |
Minimum maximum range for the shading function. More... | |
double | mMinimumValue |
User defineable minimum value for the shading function. More... | |
A ramp shader will color a raster pixel based on a list of values ranges in a ramp.
Definition at line 39 of file qgscolorrampshader.h.
Classification modes used to create the color ramp shader.
Enumerator | |
---|---|
Continuous | Uses breaks from color palette. |
EqualInterval | Uses equal interval. |
Quantile | Uses quantile (i.e. equal pixel) count. |
Definition at line 53 of file qgscolorrampshader.h.
Supported methods for color interpolation.
Definition at line 45 of file qgscolorrampshader.h.
QgsColorRampShader::QgsColorRampShader | ( | double | minimumValue = 0.0 , |
double | maximumValue = 255.0 , |
||
QgsColorRamp * | colorRamp = nullptr , |
||
Type | type = Interpolated , |
||
ClassificationMode | classificationMode = Continuous |
||
) |
Creates a new color ramp shader.
minimumValue | minimum value for the raster shader |
maximumValue | maximum value for the raster shader |
type | interpolation type used |
classificationMode | method used to classify the color ramp shader |
colorRamp | vector color ramp used to classify the color ramp shader. Ownership is transferred to the shader. |
Definition at line 34 of file qgscolorrampshader.cpp.
QgsColorRampShader::QgsColorRampShader | ( | const QgsColorRampShader & | other | ) |
Copy constructor.
Definition at line 44 of file qgscolorrampshader.cpp.
|
inline |
Returns the classification mode.
Definition at line 186 of file qgscolorrampshader.h.
void QgsColorRampShader::classifyColorRamp | ( | int | classes = 0 , |
int | band = -1 , |
||
const QgsRectangle & | extent = QgsRectangle() , |
||
QgsRasterInterface * | input = nullptr |
||
) |
Classify color ramp shader.
classes | number of classes |
band | raster band used in classification (only used in quantile mode) |
extent | extent used in classification (only used in quantile mode) |
input | raster input used in classification (only used in quantile mode) |
Definition at line 135 of file qgscolorrampshader.cpp.
void QgsColorRampShader::classifyColorRamp | ( | int | band = -1 , |
const QgsRectangle & | extent = QgsRectangle() , |
||
QgsRasterInterface * | input = nullptr |
||
) |
Classify color ramp shader.
band | raster band used in classification (quantile mode only) |
extent | extent used in classification (quantile mode only) |
input | raster input used in classification (quantile mode only) |
Definition at line 314 of file qgscolorrampshader.cpp.
|
inline |
Returns whether the shader will clip values which are out of range.
Definition at line 199 of file qgscolorrampshader.h.
|
inline |
Returns the custom colormap.
Definition at line 105 of file qgscolorrampshader.h.
|
inline |
Returns the color ramp type.
Definition at line 108 of file qgscolorrampshader.h.
QString QgsColorRampShader::colorRampTypeAsQString | ( | ) | const |
Returns the color ramp type as a string.
Definition at line 77 of file qgscolorrampshader.cpp.
bool QgsColorRampShader::isEmpty | ( | ) | const |
Whether the color ramp contains any items.
Definition at line 104 of file qgscolorrampshader.cpp.
|
overridevirtual |
Returns legend symbology items if provided by renderer.
Reimplemented from QgsRasterShaderFunction.
Definition at line 487 of file qgscolorrampshader.cpp.
QgsColorRampShader & QgsColorRampShader::operator= | ( | const QgsColorRampShader & | other | ) |
Assignment operator.
Definition at line 59 of file qgscolorrampshader.cpp.
void QgsColorRampShader::readXml | ( | const QDomElement & | elem | ) |
Reads configuration from the given DOM element.
Definition at line 525 of file qgscolorrampshader.cpp.
|
inline |
Sets classification mode.
Definition at line 183 of file qgscolorrampshader.h.
|
inline |
Sets whether the shader should not render values out of range.
clip | set to true to clip values which are out of range. |
Definition at line 193 of file qgscolorrampshader.h.
void QgsColorRampShader::setColorRampItemList | ( | const QList< QgsColorRampShader::ColorRampItem > & | list | ) |
Sets a custom colormap.
Definition at line 91 of file qgscolorrampshader.cpp.
void QgsColorRampShader::setColorRampType | ( | QgsColorRampShader::Type | colorRampType | ) |
Sets the color ramp type.
Definition at line 99 of file qgscolorrampshader.cpp.
void QgsColorRampShader::setColorRampType | ( | const QString & | type | ) |
Sets the color ramp type.
Definition at line 109 of file qgscolorrampshader.cpp.
void QgsColorRampShader::setSourceColorRamp | ( | QgsColorRamp * | colorramp | ) |
Set the source color ramp.
Ownership is transferred to the shader.
Definition at line 130 of file qgscolorrampshader.cpp.
|
overridevirtual |
Generates and new RGB value based on one input value.
Reimplemented from QgsRasterShaderFunction.
Definition at line 319 of file qgscolorrampshader.cpp.
|
overridevirtual |
Generates and new RGB value based on original RGB value.
Reimplemented from QgsRasterShaderFunction.
Definition at line 469 of file qgscolorrampshader.cpp.
QgsColorRamp * QgsColorRampShader::sourceColorRamp | ( | ) | const |
Gets the source color ramp.
Definition at line 125 of file qgscolorrampshader.cpp.
QDomElement QgsColorRampShader::writeXml | ( | QDomDocument & | doc | ) | const |
Writes configuration to a new DOM element.
Definition at line 496 of file qgscolorrampshader.cpp.
|
protected |
Source color ramp.
Definition at line 204 of file qgscolorrampshader.h.