QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
|
Generates and renders elevation profile plots. More...
#include <qgsprofilerenderer.h>
Signals | |
void | generationFinished () |
Emitted when the profile generation is finished (or canceled). More... | |
Public Member Functions | |
QgsProfilePlotRenderer (const QList< QgsAbstractProfileSource * > &sources, const QgsProfileRequest &request) | |
Constructor for QgsProfilePlotRenderer, using the provided list of profile sources to generate the results. More... | |
~QgsProfilePlotRenderer () override | |
void | cancelGeneration () |
Stop the generation job - does not return until the job has terminated. More... | |
void | cancelGenerationWithoutBlocking () |
Triggers cancellation of the generation job without blocking. More... | |
QVector< QgsProfileIdentifyResults > | identify (const QgsDoubleRange &distanceRange, const QgsDoubleRange &elevationRange, const QgsProfileIdentifyContext &context) |
Identify results visible within the specified ranges. More... | |
QVector< QgsProfileIdentifyResults > | identify (const QgsProfilePoint &point, const QgsProfileIdentifyContext &context) |
Identify results visible at the specified profile point. More... | |
void | invalidateAllRefinableSources () |
Invalidates previous results from all refinable sources. More... | |
bool | invalidateResults (QgsAbstractProfileSource *source) |
Invalidates the profile results from the source with matching ID. More... | |
bool | isActive () const |
Returns true if the generation job is currently running in background. More... | |
void | regenerateInvalidatedResults () |
Starts a background regeneration of any invalidated results and immediately returns. More... | |
void | render (QgsRenderContext &context, double width, double height, double distanceMin, double distanceMax, double zMin, double zMax, const QString &sourceId=QString()) |
Renders a portion of the profile using the specified render context. More... | |
QImage | renderToImage (int width, int height, double distanceMin, double distanceMax, double zMin, double zMax, const QString &sourceId=QString()) |
Renders a portion of the profile to an image with the given width and height. More... | |
void | replaceSource (QgsAbstractProfileSource *source) |
Replaces the existing source with matching ID. More... | |
void | setContext (const QgsProfileGenerationContext &context) |
Sets the context in which the profile generation will occur. More... | |
QgsProfileSnapResult | snapPoint (const QgsProfilePoint &point, const QgsProfileSnapContext &context) |
Snap a point to the results. More... | |
QStringList | sourceIds () const |
Returns the ordered list of source IDs for the sources used by the renderer. More... | |
void | startGeneration () |
Start the generation job and immediately return. More... | |
void | waitForFinished () |
Block until the current job has finished. More... | |
QgsDoubleRange | zRange () const |
Returns the limits of the retrieved elevation values. More... | |
Generates and renders elevation profile plots.
This class has two roles:
Step 1, involving the generation of the elevation profiles only needs to occur once. This is done via a call to startGeneration(), which commences generation of the profiles from each source in a separate background thread. When the generation is completed for all sources the generationFinished() signal is emitted.
After the profile is generated, it can be rendered. The rendering step may be undertaken multiple times (e.g. to render to different image sizes or data ranges) without having to re-generate the raw profile data.
Definition at line 58 of file qgsprofilerenderer.h.
QgsProfilePlotRenderer::QgsProfilePlotRenderer | ( | const QList< QgsAbstractProfileSource * > & | sources, |
const QgsProfileRequest & | request | ||
) |
Constructor for QgsProfilePlotRenderer, using the provided list of profile sources to generate the results.
Definition at line 27 of file qgsprofilerenderer.cpp.
|
override |
Definition at line 41 of file qgsprofilerenderer.cpp.
void QgsProfilePlotRenderer::cancelGeneration | ( | ) |
Stop the generation job - does not return until the job has terminated.
Does nothing if the generation is not active.
Definition at line 84 of file qgsprofilerenderer.cpp.
void QgsProfilePlotRenderer::cancelGenerationWithoutBlocking | ( | ) |
Triggers cancellation of the generation job without blocking.
The generation job will continue to operate until it is able to cancel, at which stage the generationFinished() signal will be emitted. Does nothing if the generation is not active.
Definition at line 107 of file qgsprofilerenderer.cpp.
|
signal |
Emitted when the profile generation is finished (or canceled).
QVector< QgsProfileIdentifyResults > QgsProfilePlotRenderer::identify | ( | const QgsDoubleRange & | distanceRange, |
const QgsDoubleRange & | elevationRange, | ||
const QgsProfileIdentifyContext & | context | ||
) |
Identify results visible within the specified ranges.
Definition at line 376 of file qgsprofilerenderer.cpp.
QVector< QgsProfileIdentifyResults > QgsProfilePlotRenderer::identify | ( | const QgsProfilePoint & | point, |
const QgsProfileIdentifyContext & | context | ||
) |
Identify results visible at the specified profile point.
Definition at line 357 of file qgsprofilerenderer.cpp.
void QgsProfilePlotRenderer::invalidateAllRefinableSources | ( | ) |
Invalidates previous results from all refinable sources.
Definition at line 169 of file qgsprofilerenderer.cpp.
bool QgsProfilePlotRenderer::invalidateResults | ( | QgsAbstractProfileSource * | source | ) |
Invalidates the profile results from the source with matching ID.
The matching stored source will be deleted and replaced with source.
Returns true
if results were previously stored for the matching source and have been invalidated.
Definition at line 195 of file qgsprofilerenderer.cpp.
bool QgsProfilePlotRenderer::isActive | ( | ) | const |
Returns true
if the generation job is currently running in background.
Definition at line 135 of file qgsprofilerenderer.cpp.
void QgsProfilePlotRenderer::regenerateInvalidatedResults | ( | ) |
Starts a background regeneration of any invalidated results and immediately returns.
Does nothing if the generation is already in progress.
Definition at line 242 of file qgsprofilerenderer.cpp.
void QgsProfilePlotRenderer::render | ( | QgsRenderContext & | context, |
double | width, | ||
double | height, | ||
double | distanceMin, | ||
double | distanceMax, | ||
double | zMin, | ||
double | zMax, | ||
const QString & | sourceId = QString() |
||
) |
Renders a portion of the profile using the specified render context.
If sourceId is empty then all sources will be rendered, otherwise only the matching source will be rendered.
Definition at line 289 of file qgsprofilerenderer.cpp.
QImage QgsProfilePlotRenderer::renderToImage | ( | int | width, |
int | height, | ||
double | distanceMin, | ||
double | distanceMax, | ||
double | zMin, | ||
double | zMax, | ||
const QString & | sourceId = QString() |
||
) |
Renders a portion of the profile to an image with the given width and height.
If sourceId is empty then all sources will be rendered, otherwise only the matching source will be rendered.
Definition at line 271 of file qgsprofilerenderer.cpp.
void QgsProfilePlotRenderer::replaceSource | ( | QgsAbstractProfileSource * | source | ) |
Replaces the existing source with matching ID.
The matching stored source will be deleted and replaced with source.
Definition at line 190 of file qgsprofilerenderer.cpp.
void QgsProfilePlotRenderer::setContext | ( | const QgsProfileGenerationContext & | context | ) |
Sets the context in which the profile generation will occur.
Depending on the sources present, this may trigger automatically a regeneration of results.
Definition at line 140 of file qgsprofilerenderer.cpp.
QgsProfileSnapResult QgsProfilePlotRenderer::snapPoint | ( | const QgsProfilePoint & | point, |
const QgsProfileSnapContext & | context | ||
) |
Snap a point to the results.
Definition at line 325 of file qgsprofilerenderer.cpp.
QStringList QgsProfilePlotRenderer::sourceIds | ( | ) | const |
Returns the ordered list of source IDs for the sources used by the renderer.
Definition at line 49 of file qgsprofilerenderer.cpp.
void QgsProfilePlotRenderer::startGeneration | ( | ) |
Start the generation job and immediately return.
Does nothing if the generation is already in progress.
Definition at line 60 of file qgsprofilerenderer.cpp.
void QgsProfilePlotRenderer::waitForFinished | ( | ) |
Block until the current job has finished.
Definition at line 124 of file qgsprofilerenderer.cpp.
QgsDoubleRange QgsProfilePlotRenderer::zRange | ( | ) | const |
Returns the limits of the retrieved elevation values.
Definition at line 255 of file qgsprofilerenderer.cpp.