QGIS API Documentation
3.8.0-Zanzibar (11aff65)
|
Utility class that construct a planar graph from the input vector layers and provides shortest path search for tracing of existing features. More...
#include <qgstracer.h>
Public Types | |
enum | PathError { ErrNone, ErrTooManyFeatures, ErrPoint1, ErrPoint2, ErrNoPath } |
Possible errors that may happen when calling findShortestPath() More... | |
Public Member Functions | |
QgsTracer () | |
Constructor for QgsTracer. More... | |
~QgsTracer () override | |
QgsCoordinateReferenceSystem | destinationCrs () const |
Returns the CRS used for tracing. More... | |
QgsRectangle | extent () const |
Gets extent to which graph's features will be limited (empty extent means no limit) More... | |
QVector< QgsPointXY > | findShortestPath (const QgsPointXY &p1, const QgsPointXY &p2, PathError *error=nullptr) |
Given two points, find the shortest path and return points on the way. More... | |
bool | hasTopologyProblem () const |
Whether there was an error during graph creation due to noding exception, indicating some input data topology problems. More... | |
bool | init () |
Build the internal data structures. More... | |
bool | isInitialized () const |
Whether the internal data structures have been initialized. More... | |
bool | isPointSnapped (const QgsPointXY &pt) |
Find out whether the point is snapped to a vertex or edge (i.e. it can be used for tracing start/stop) More... | |
QList< QgsVectorLayer * > | layers () const |
Gets layers used for tracing. More... | |
int | maxFeatureCount () const |
Gets maximum possible number of features in graph. If the number is exceeded, graph is not created. More... | |
double | offset () const |
Gets offset in map units that should be applied to the traced paths returned from findShortestPath(). More... | |
void | offsetParameters (int &quadSegments, int &joinStyle, double &miterLimit) |
Gets extra parameters for offset curve algorithm (used when offset is non-zero) More... | |
void | setDestinationCrs (const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context) |
Sets the crs and transform context used for tracing. More... | |
void | setExtent (const QgsRectangle &extent) |
Sets extent to which graph's features will be limited (empty extent means no limit) More... | |
void | setLayers (const QList< QgsVectorLayer *> &layers) |
Sets layers used for tracing. More... | |
void | setMaxFeatureCount (int count) |
Gets maximum possible number of features in graph. If the number is exceeded, graph is not created. More... | |
void | setOffset (double offset) |
Set offset in map units that should be applied to the traced paths returned from findShortestPath(). More... | |
void | setOffsetParameters (int quadSegments, int joinStyle, double miterLimit) |
Set extra parameters for offset curve algorithm (used when offset is non-zero) More... | |
void | setRenderContext (const QgsRenderContext *renderContext) |
Sets the renderContext used for tracing only on visible features. More... | |
Protected Slots | |
void | invalidateGraph () |
Destroy the existing graph structure if any (de-initialize) More... | |
Protected Member Functions | |
virtual void | configure () |
Allows derived classes to setup the settings just before the tracer is initialized. More... | |
Utility class that construct a planar graph from the input vector layers and provides shortest path search for tracing of existing features.
Definition at line 43 of file qgstracer.h.
enum QgsTracer::PathError |
Possible errors that may happen when calling findShortestPath()
Definition at line 132 of file qgstracer.h.
|
default |
Constructor for QgsTracer.
|
override |
Definition at line 600 of file qgstracer.cpp.
|
inlineprotectedvirtual |
Allows derived classes to setup the settings just before the tracer is initialized.
This allows the configuration to be set in a lazy way only when it is really necessary. Default implementation does nothing.
Reimplemented in QgsMapCanvasTracer.
Definition at line 158 of file qgstracer.h.
|
inline |
Returns the CRS used for tracing.
Definition at line 63 of file qgstracer.h.
|
inline |
Gets extent to which graph's features will be limited (empty extent means no limit)
Definition at line 78 of file qgstracer.h.
QVector< QgsPointXY > QgsTracer::findShortestPath | ( | const QgsPointXY & | p1, |
const QgsPointXY & | p2, | ||
PathError * | error = nullptr |
||
) |
Given two points, find the shortest path and return points on the way.
The optional "error" argument may receive error code (PathError enum) if it is not nullptr
Definition at line 739 of file qgstracer.cpp.
|
inline |
Whether there was an error during graph creation due to noding exception, indicating some input data topology problems.
Definition at line 129 of file qgstracer.h.
bool QgsTracer::init | ( | ) |
Build the internal data structures.
This may take some time depending on how big the input layers are. It is not necessary to call this method explicitly - it will be called by findShortestPath() if necessary.
Definition at line 678 of file qgstracer.cpp.
|
protectedslot |
Destroy the existing graph structure if any (de-initialize)
Definition at line 690 of file qgstracer.cpp.
|
inline |
Whether the internal data structures have been initialized.
Definition at line 122 of file qgstracer.h.
bool QgsTracer::isPointSnapped | ( | const QgsPointXY & | pt | ) |
Find out whether the point is snapped to a vertex or edge (i.e. it can be used for tracing start/stop)
Definition at line 806 of file qgstracer.cpp.
|
inline |
Gets layers used for tracing.
Definition at line 55 of file qgstracer.h.
|
inline |
Gets maximum possible number of features in graph. If the number is exceeded, graph is not created.
Definition at line 109 of file qgstracer.h.
|
inline |
Gets offset in map units that should be applied to the traced paths returned from findShortestPath().
Positive offset for right side, negative offset for left side.
Definition at line 87 of file qgstracer.h.
void QgsTracer::offsetParameters | ( | int & | quadSegments, |
int & | joinStyle, | ||
double & | miterLimit | ||
) |
Gets extra parameters for offset curve algorithm (used when offset is non-zero)
Definition at line 664 of file qgstracer.cpp.
void QgsTracer::setDestinationCrs | ( | const QgsCoordinateReferenceSystem & | crs, |
const QgsCoordinateTransformContext & | context | ||
) |
Sets the crs and transform context used for tracing.
Definition at line 637 of file qgstracer.cpp.
void QgsTracer::setExtent | ( | const QgsRectangle & | extent | ) |
Sets extent to which graph's features will be limited (empty extent means no limit)
Definition at line 650 of file qgstracer.cpp.
void QgsTracer::setLayers | ( | const QList< QgsVectorLayer *> & | layers | ) |
Sets layers used for tracing.
Definition at line 605 of file qgstracer.cpp.
|
inline |
Gets maximum possible number of features in graph. If the number is exceeded, graph is not created.
Definition at line 111 of file qgstracer.h.
void QgsTracer::setOffset | ( | double | offset | ) |
Set offset in map units that should be applied to the traced paths returned from findShortestPath().
Positive offset for right side, negative offset for left side.
Definition at line 659 of file qgstracer.cpp.
void QgsTracer::setOffsetParameters | ( | int | quadSegments, |
int | joinStyle, | ||
double | miterLimit | ||
) |
Set extra parameters for offset curve algorithm (used when offset is non-zero)
Definition at line 671 of file qgstracer.cpp.
void QgsTracer::setRenderContext | ( | const QgsRenderContext * | renderContext | ) |
Sets the renderContext used for tracing only on visible features.
Definition at line 644 of file qgstracer.cpp.