QGIS API Documentation 3.99.0-Master (26c88405ac0)
Loading...
Searching...
No Matches
QgsCompoundCurve Class Reference

Compound curve geometry type. More...

#include <qgscompoundcurve.h>

Inheritance diagram for QgsCompoundCurve:

Public Member Functions

 QgsCompoundCurve ()
 QgsCompoundCurve (const QgsCompoundCurve &curve)
 ~QgsCompoundCurve () override
void addCurve (QgsCurve *c, bool extendPrevious=false)
 Adds a curve to the geometry (takes ownership).
bool addMValue (double mValue=0) override
 Adds a measure to the geometry, initialized to a preset value.
void addToPainterPath (QPainterPath &path) const override
 Adds a curve to a painter path.
void addVertex (const QgsPoint &pt)
 Adds a vertex to the end of the geometry.
bool addZValue (double zValue=0) override
 Adds a z-dimension to the geometry, initialized to a preset value.
QDomElement asGml2 (QDomDocument &doc, int precision=17, const QString &ns="gml", QgsAbstractGeometry::AxisOrder axisOrder=QgsAbstractGeometry::AxisOrder::XY) const override
 Returns a GML2 representation of the geometry.
QDomElement asGml3 (QDomDocument &doc, int precision=17, const QString &ns="gml", QgsAbstractGeometry::AxisOrder axisOrder=QgsAbstractGeometry::AxisOrder::XY) const override
 Returns a GML3 representation of the geometry.
json asJsonObject (int precision=17) const override
 Returns a json object representation of the geometry.
QByteArray asWkb (QgsAbstractGeometry::WkbFlags flags=QgsAbstractGeometry::WkbFlags()) const override
 Returns a WKB representation of the geometry.
QString asWkt (int precision=17) const override
 Returns a WKT representation of the geometry.
bool boundingBoxIntersects (const QgsBox3D &box3d) const override
 Returns true if the bounding box of this geometry intersects with a box3d.
void clear () override
 Clears the geometry, ie reset it to a null geometry.
QgsCompoundCurveclone () const override
 Clones the geometry by performing a deep copy.
void close ()
 Appends first point if not already closed.
double closestSegment (const QgsPoint &pt, QgsPoint &segmentPt, QgsVertexId &vertexAfter, int *leftOf=nullptr, double epsilon=4 *std::numeric_limits< double >::epsilon()) const override
 Searches for the closest segment of the geometry to a given point.
void condenseCurves ()
 Condenses the curves in this geometry by combining adjacent linestrings a to a single continuous linestring, and combining adjacent circularstrings to a single continuous circularstring.
QgsCompoundCurvecreateEmptyWithSameType () const override
 Creates a new geometry with the same class and same WKB type as the original and transfers ownership.
const QgsCurvecurveAt (int i) const
 Returns the curve at the specified index.
QgsCompoundCurvecurveSubstring (double startDistance, double endDistance) const override
 Returns a new curve representing a substring of this curve.
QgsLineStringcurveToLine (double tolerance=M_PI_2/90, SegmentationToleranceType toleranceType=MaximumAngle) const override
 Returns a new line string geometry corresponding to a segmentized approximation of the curve.
bool deleteVertex (QgsVertexId position) override
 Deletes a vertex within the geometry.
int dimension () const override
 Returns the inherent dimension of the geometry.
double distanceBetweenVertices (QgsVertexId fromVertex, QgsVertexId toVertex) const override
 Returns the distance along the curve between two vertices.
void draw (QPainter &p) const override
 Draws the geometry using the specified QPainter.
void drawAsPolygon (QPainter &p) const override
 Draws the curve as a polygon on the specified QPainter.
bool dropMValue () override
 Drops any measure values which exist in the geometry.
bool dropZValue () override
 Drops any z-dimensions which exist in the geometry.
QgsPoint endPoint () const override
 Returns the end point of the curve.
bool equals (const QgsCurve &other) const override
 Checks whether this curve exactly equals another curve.
void filterVertices (const std::function< bool(const QgsPoint &) > &filter) override
 Filters the vertices from the geometry in place, removing any which do not return true for the filter function check.
bool fromWkb (QgsConstWkbPtr &wkb) override
 Sets the geometry from a WKB string.
bool fromWkt (const QString &wkt) override
 Sets the geometry from a WKT string.
bool fuzzyDistanceEqual (const QgsAbstractGeometry &other, double epsilon=1e-8) const override
 Performs fuzzy distance comparison between this geometry and other using an epsilon.
bool fuzzyEqual (const QgsAbstractGeometry &other, double epsilon=1e-8) const override
 Performs fuzzy comparison between this geometry and other using an epsilon.
QString geometryType () const override
 Returns a unique string representing the geometry type.
bool hasCurvedSegments () const override
 Returns true if the geometry contains curved segments.
int indexOf (const QgsPoint &point) const final
 Returns the index of the first vertex matching the given point, or -1 if a matching vertex is not found.
bool insertVertex (QgsVertexId position, const QgsPoint &vertex) override
 Inserts a vertex into the geometry.
QgsPointinterpolatePoint (double distance) const override
 Returns an interpolated point on the curve at the specified distance.
bool isEmpty () const override
 Returns true if the geometry is empty.
bool isValid (QString &error, Qgis::GeometryValidityFlags flags=Qgis::GeometryValidityFlags()) const override
 Checks validity of the geometry, and returns true if the geometry is valid.
double length () const override
 Returns the planar, 2-dimensional length of the geometry.
double mAt (int index) const override
 Returns the m-coordinate of the specified node in the line string.
bool moveVertex (QgsVertexId position, const QgsPoint &newPos) override
 Moves a vertex within the geometry.
int nCurves () const
 Returns the number of curves in the geometry.
int numPoints () const override
 Returns the number of points in the curve.
QgsCompoundCurveoperator= (const QgsCompoundCurve &curve)
bool pointAt (int node, QgsPoint &point, Qgis::VertexType &type) const override
 Returns the point and vertex id of a point within the curve.
void points (QgsPointSequence &pts) const override
 Returns a list of points within the curve.
void removeCurve (int i)
 Removes a curve from the geometry.
bool removeDuplicateNodes (double epsilon=4 *std::numeric_limits< double >::epsilon(), bool useZValues=false) override
 Removes duplicate nodes from the geometry, wherever removing the nodes does not result in a degenerate geometry.
QgsCompoundCurvereversed () const override
 Returns a reversed copy of the curve, where the direction of the curve has been flipped.
void scroll (int firstVertexIndex) final
 Scrolls the curve vertices so that they start with the vertex at the given index.
double segmentLength (QgsVertexId startVertex) const override
 Returns the length of the segment of the geometry which begins at startVertex.
const QgsAbstractGeometrysimplifiedTypeRef () const override
 Returns a reference to the simplest lossless representation of this geometry, e.g.
QgsAbstractGeometrysimplifyByDistance (double tolerance) const override
 Simplifies the geometry by applying the Douglas Peucker simplification by distance algorithm.
QgsCompoundCurvesnappedToGrid (double hSpacing, double vSpacing, double dSpacing=0, double mSpacing=0, bool removeRedundantPoints=false) const override
 Makes a new geometry with all the points or vertices snapped to the closest point of the grid.
std::tuple< std::unique_ptr< QgsCurve >, std::unique_ptr< QgsCurve > > splitCurveAtVertex (int index) const final
 Splits the curve at the specified vertex index, returning two curves which represent the portion of the curve up to an including the vertex at index, and the portion of the curve from the vertex at index (inclusive) to the end of the curve.
QgsPoint startPoint () const override
 Returns the starting point of the curve.
void sumUpArea (double &sum) const override
 Sums up the area of the curve by iterating over the vertices (shoelace formula).
void swapXy () override
 Swaps the x and y coordinates from the geometry.
bool toggleCircularAtVertex (QgsVertexId position)
 Converts the vertex at the given position from/to circular.
void transform (const QgsCoordinateTransform &ct, Qgis::TransformDirection d=Qgis::TransformDirection::Forward, bool transformZ=false) override
 Transforms the geometry using a coordinate transform.
void transform (const QTransform &t, double zTranslate=0.0, double zScale=1.0, double mTranslate=0.0, double mScale=1.0) override
 Transforms the x and y components of the geometry using a QTransform object t.
bool transform (QgsAbstractGeometryTransformer *transformer, QgsFeedback *feedback=nullptr) override
 Transforms the vertices from the geometry in place, using the specified geometry transformer object.
void transformVertices (const std::function< QgsPoint(const QgsPoint &) > &transform) override
 Transforms the vertices from the geometry in place, applying the transform function to every vertex.
double vertexAngle (QgsVertexId vertex) const override
 Returns approximate angle at a vertex.
int wkbSize (QgsAbstractGeometry::WkbFlags flags=QgsAbstractGeometry::WkbFlags()) const override
 Returns the length of the QByteArray returned by asWkb().
double xAt (int index) const override
 Returns the x-coordinate of the specified node in the line string.
double yAt (int index) const override
 Returns the y-coordinate of the specified node in the line string.
double zAt (int index) const override
 Returns the z-coordinate of the specified node in the line string.
Public Member Functions inherited from QgsCurve
 QgsCurve ()=default
void adjacentVertices (QgsVertexId vertex, QgsVertexId &previousVertex, QgsVertexId &nextVertex) const override
 Returns the vertices adjacent to a specified vertex within a geometry.
QString asKml (int precision=17) const override
 Returns a KML representation of the geometry.
QPainterPath asQPainterPath () const override
 Returns the geometry represented as a QPainterPath.
virtual QPolygonF asQPolygonF () const
 Returns a QPolygonF representing the points.
QgsAbstractGeometryboundary () const override
 Returns the closure of the combinatorial boundary of the geometry (ie the topological boundary of the geometry).
QgsBox3D boundingBox3D () const override
 Returns the 3D bounding box for the geometry.
QgsCoordinateSequence coordinateSequence () const override
 Retrieves the sequence of geometries, rings and nodes.
virtual bool isClosed () const
 Returns true if the curve is closed.
virtual bool isClosed2D () const
 Returns true if the curve is closed.
virtual bool isRing () const
 Returns true if the curve is a ring.
bool isValid (QString &error, Qgis::GeometryValidityFlags flags=Qgis::GeometryValidityFlags()) const override
 Checks validity of the geometry, and returns true if the geometry is valid.
bool nextVertex (QgsVertexId &id, QgsPoint &vertex) const override
 Returns next vertex id and coordinates.
void normalize () final
 Reorganizes the geometry into a normalized form (or "canonical" form).
bool operator!= (const QgsAbstractGeometry &other) const override
bool operator== (const QgsAbstractGeometry &other) const override
Qgis::AngularDirection orientation () const
 Returns the curve's orientation, e.g.
int partCount () const override
 Returns count of parts contained in the geometry.
int ringCount (int part=0) const override
 Returns the number of rings of which this geometry is built.
QgsCurvesegmentize (double tolerance=M_PI_2/90, SegmentationToleranceType toleranceType=MaximumAngle) const override
 Returns a geometry without curves.
double sinuosity () const
 Returns the curve sinuosity, which is the ratio of the curve length() to curve straightDistance2d().
double straightDistance2d () const
 Returns the straight distance of the curve, i.e.
QgsCurvetoCurveType () const override
 Returns the geometry converted to the more generic curve type.
QgsPoint vertexAt (QgsVertexId id) const override
 Returns the point corresponding to a specified vertex id.
int vertexCount (int part=0, int ring=0) const override
 Returns the number of vertices of which this geometry is built.
int vertexNumberFromVertexId (QgsVertexId id) const override
 Returns the vertex number corresponding to a vertex id.
Public Member Functions inherited from QgsAbstractGeometry
 QgsAbstractGeometry ()=default
 QgsAbstractGeometry (const QgsAbstractGeometry &geom)
virtual ~QgsAbstractGeometry ()=default
virtual double area () const
 Returns the planar, 2-dimensional area of the geometry.
QString asJson (int precision=17)
 Returns a GeoJSON representation of the geometry as a QString.
virtual QgsRectangle boundingBox () const
 Returns the minimal bounding box for the geometry.
virtual bool boundingBoxIntersects (const QgsRectangle &rectangle) const
 Returns true if the bounding box of this geometry intersects with a rectangle.
virtual QgsPoint centroid () const
 Returns the centroid of the geometry.
virtual int compareTo (const QgsAbstractGeometry *other) const
 Comparator for sorting of geometry.
const_part_iterator const_parts_begin () const
 Returns STL-style iterator pointing to the const first part of the geometry.
const_part_iterator const_parts_end () const
 Returns STL-style iterator pointing to the imaginary const part after the last part of the geometry.
virtual bool convertTo (Qgis::WkbType type)
 Converts the geometry to a specified type.
bool is3D () const
 Returns true if the geometry is 3D and contains a z-value.
bool isMeasure () const
 Returns true if the geometry contains m values.
virtual int nCoordinates () const
 Returns the number of nodes contained in the geometry.
QgsAbstractGeometryoperator= (const QgsAbstractGeometry &geom)
QgsGeometryPartIterator parts ()
 Returns Java-style iterator for traversal of parts of the geometry.
QgsGeometryConstPartIterator parts () const
 Returns Java-style iterator for traversal of parts of the geometry.
part_iterator parts_begin ()
 Returns STL-style iterator pointing to the first part of the geometry.
part_iterator parts_end ()
 Returns STL-style iterator pointing to the imaginary part after the last part of the geometry.
virtual double perimeter () const
 Returns the planar, 2-dimensional perimeter of the geometry.
QgsVertexIterator vertices () const
 Returns a read-only, Java-style iterator for traversal of vertices of all the geometry, including all geometry parts and rings.
vertex_iterator vertices_begin () const
 Returns STL-style iterator pointing to the first vertex of the geometry.
vertex_iterator vertices_end () const
 Returns STL-style iterator pointing to the imaginary vertex after the last vertex of the geometry.
Qgis::WkbType wkbType () const
 Returns the WKB type of the geometry.
QString wktTypeStr () const
 Returns the WKT type string of the geometry.

Static Public Member Functions

static const QgsCompoundCurvecast (const QgsAbstractGeometry *geom)
 Cast the geom to a QgsCompoundCurve.
static QgsCompoundCurvecast (QgsAbstractGeometry *geom)
 Cast the geom to a QgsCompoundCurve.
Static Public Member Functions inherited from QgsCurve
static const QgsCurvecast (const QgsAbstractGeometry *geom)
 Cast the geom to a QgsCurve.
static QgsCurvecast (QgsAbstractGeometry *geom)
 Cast the geom to a QgsCurve.

Protected Member Functions

QgsBox3D calculateBoundingBox3D () const override
 Calculates the minimal 3D bounding box for the geometry.
int compareToSameClass (const QgsAbstractGeometry *other) const final
 Compares to an other geometry of the same class, and returns a integer for sorting of the two geometries.
Protected Member Functions inherited from QgsCurve
int childCount () const override
 Returns number of child geometries (for geometries with child geometries) or child points (for geometries without child geometries - i.e.
QgsPoint childPoint (int index) const override
 Returns point at index (for geometries without child geometries - i.e.
void clearCache () const override
 Clears any cached parameters associated with the geometry, e.g., bounding boxes.
bool snapToGridPrivate (double hSpacing, double vSpacing, double dSpacing, double mSpacing, const QVector< double > &srcX, const QVector< double > &srcY, const QVector< double > &srcZ, const QVector< double > &srcM, QVector< double > &outX, QVector< double > &outY, QVector< double > &outZ, QVector< double > &outM, bool removeRedundantPoints) const
 Helper function for QgsCurve subclasses to snap to grids.
Protected Member Functions inherited from QgsAbstractGeometry
virtual QgsRectangle calculateBoundingBox () const
 Default calculator for the minimal bounding box for the geometry.
virtual QgsAbstractGeometrychildGeometry (int index) const
 Returns pointer to child geometry (for geometries with child geometries - i.e.
virtual bool hasChildGeometries () const
 Returns whether the geometry has any child geometries (false for point / curve, true otherwise).
void setZMTypeFromSubGeometry (const QgsAbstractGeometry *subggeom, Qgis::WkbType baseGeomType)
 Updates the geometry type based on whether sub geometries contain z or m values.
int sortIndex () const
 Returns the sort index for the geometry, used in the compareTo() method to compare geometries of different types.

Additional Inherited Members

Public Types inherited from QgsAbstractGeometry
enum  AxisOrder { XY = 0 , YX }
 Axis order for GML generation. More...
enum  SegmentationToleranceType { MaximumAngle = 0 , MaximumDifference }
 Segmentation tolerance as maximum angle or maximum difference between approximation and circle. More...
enum  WkbFlag { FlagExportTrianglesAsPolygons = 1 << 0 , FlagExportNanAsDoubleMin = 1 << 1 }
 WKB export flags. More...
typedef QFlags< WkbFlagWkbFlags
Protected Attributes inherited from QgsCurve
QgsBox3D mBoundingBox
 Cached bounding box.
bool mHasCachedSummedUpArea = false
double mSummedUpArea = 0
Protected Attributes inherited from QgsAbstractGeometry
Qgis::WkbType mWkbType = Qgis::WkbType::Unknown

Detailed Description

Compound curve geometry type.

Definition at line 30 of file qgscompoundcurve.h.

Constructor & Destructor Documentation

◆ QgsCompoundCurve() [1/2]

QgsCompoundCurve::QgsCompoundCurve ( )

Definition at line 35 of file qgscompoundcurve.cpp.

◆ QgsCompoundCurve() [2/2]

QgsCompoundCurve::QgsCompoundCurve ( const QgsCompoundCurve & curve)

Definition at line 93 of file qgscompoundcurve.cpp.

◆ ~QgsCompoundCurve()

QgsCompoundCurve::~QgsCompoundCurve ( )
override

Definition at line 40 of file qgscompoundcurve.cpp.

Member Function Documentation

◆ addCurve()

void QgsCompoundCurve::addCurve ( QgsCurve * c,
bool extendPrevious = false )

Adds a curve to the geometry (takes ownership).

Since QGIS 3.20, if extendPrevious is true, then adding a LineString when the last existing curve in the compound curve is also a LineString will cause the existing linestring to be extended with the newly added LineString vertices instead of appending a whole new LineString curve to the compound curve. This can result in simplified compound curves with lesser number of component curves while still being topologically identical to the desired result.

Definition at line 570 of file qgscompoundcurve.cpp.

◆ addMValue()

bool QgsCompoundCurve::addMValue ( double mValue = 0)
overridevirtual

Adds a measure to the geometry, initialized to a preset value.

Parameters
mValueinitial m-value for all nodes
Returns
true on success
See also
dropMValue()
addZValue()

Implements QgsAbstractGeometry.

Definition at line 1368 of file qgscompoundcurve.cpp.

◆ addToPainterPath()

void QgsCompoundCurve::addToPainterPath ( QPainterPath & path) const
overridevirtual

Adds a curve to a painter path.

Implements QgsCurve.

Definition at line 714 of file qgscompoundcurve.cpp.

◆ addVertex()

void QgsCompoundCurve::addVertex ( const QgsPoint & pt)

Adds a vertex to the end of the geometry.

Definition at line 626 of file qgscompoundcurve.cpp.

◆ addZValue()

bool QgsCompoundCurve::addZValue ( double zValue = 0)
overridevirtual

Adds a z-dimension to the geometry, initialized to a preset value.

Parameters
zValueinitial z-value for all nodes
Returns
true on success
See also
dropZValue()
addMValue()

Implements QgsAbstractGeometry.

Definition at line 1353 of file qgscompoundcurve.cpp.

◆ asGml2()

QDomElement QgsCompoundCurve::asGml2 ( QDomDocument & doc,
int precision = 17,
const QString & ns = "gml",
QgsAbstractGeometry::AxisOrder axisOrder = QgsAbstractGeometry::AxisOrder::XY ) const
overridevirtual

Returns a GML2 representation of the geometry.

Parameters
docDOM document
precisionnumber of decimal places for coordinates
nsXML namespace
axisOrderAxis order for generated GML
See also
asWkb()
asWkt()
asGml3()
asJson()

Implements QgsAbstractGeometry.

Definition at line 318 of file qgscompoundcurve.cpp.

◆ asGml3()

QDomElement QgsCompoundCurve::asGml3 ( QDomDocument & doc,
int precision = 17,
const QString & ns = "gml",
QgsAbstractGeometry::AxisOrder axisOrder = QgsAbstractGeometry::AxisOrder::XY ) const
overridevirtual

Returns a GML3 representation of the geometry.

Parameters
docDOM document
precisionnumber of decimal places for coordinates
nsXML namespace
axisOrderAxis order for generated GML
See also
asWkb()
asWkt()
asGml2()
asJson()

Implements QgsAbstractGeometry.

Definition at line 326 of file qgscompoundcurve.cpp.

◆ asJsonObject()

json QgsCompoundCurve::asJsonObject ( int precision = 17) const
overridevirtual

Returns a json object representation of the geometry.

See also
asWkb()
asWkt()
asGml2()
asGml3()
asJson()
Note
not available in Python bindings
Since
QGIS 3.10

Reimplemented from QgsAbstractGeometry.

Definition at line 344 of file qgscompoundcurve.cpp.

◆ asWkb()

QByteArray QgsCompoundCurve::asWkb ( QgsAbstractGeometry::WkbFlags flags = QgsAbstractGeometry::WkbFlags()) const
overridevirtual

Returns a WKB representation of the geometry.

The optional flags argument specifies flags controlling WKB export behavior (since QGIS 3.14).

See also
asWkt
asGml2
asGml3
asJson()

Implements QgsAbstractGeometry.

Definition at line 276 of file qgscompoundcurve.cpp.

◆ asWkt()

QString QgsCompoundCurve::asWkt ( int precision = 17) const
overridevirtual

Returns a WKT representation of the geometry.

Parameters
precisionnumber of decimal places for coordinates
See also
asWkb()
asGml2()
asGml3()
asJson()

Implements QgsAbstractGeometry.

Definition at line 291 of file qgscompoundcurve.cpp.

◆ boundingBoxIntersects()

bool QgsCompoundCurve::boundingBoxIntersects ( const QgsBox3D & box3d) const
overridevirtual

Returns true if the bounding box of this geometry intersects with a box3d.

Since this test only considers the bounding box of the geometry, is is very fast to calculate and handles invalid geometries.

Since
QGIS 3.34

Reimplemented from QgsAbstractGeometry.

Definition at line 524 of file qgscompoundcurve.cpp.

◆ calculateBoundingBox3D()

QgsBox3D QgsCompoundCurve::calculateBoundingBox3D ( ) const
overrideprotectedvirtual

Calculates the minimal 3D bounding box for the geometry.

See also
calculateBoundingBox()
Since
QGIS 3.34

Reimplemented from QgsAbstractGeometry.

Definition at line 130 of file qgscompoundcurve.cpp.

◆ cast() [1/2]

const QgsCompoundCurve * QgsCompoundCurve::cast ( const QgsAbstractGeometry * geom)
inlinestatic

Cast the geom to a QgsCompoundCurve.

Should be used by qgsgeometry_cast<QgsCompoundCurve *>( geometry ).

Objects will be automatically converted to the appropriate target type.

Note
Not available in Python.

Definition at line 231 of file qgscompoundcurve.h.

◆ cast() [2/2]

QgsCompoundCurve * QgsCompoundCurve::cast ( QgsAbstractGeometry * geom)
inlinestatic

Cast the geom to a QgsCompoundCurve.

Should be used by qgsgeometry_cast<QgsCompoundCurve *>( geometry ).

Objects will be automatically converted to the appropriate target type.

Note
Not available in Python.

Definition at line 246 of file qgscompoundcurve.h.

◆ clear()

void QgsCompoundCurve::clear ( )
overridevirtual

Clears the geometry, ie reset it to a null geometry.

Implements QgsAbstractGeometry.

Definition at line 122 of file qgscompoundcurve.cpp.

◆ clone()

QgsCompoundCurve * QgsCompoundCurve::clone ( ) const
overridevirtual

Clones the geometry by performing a deep copy.

Implements QgsCurve.

Definition at line 117 of file qgscompoundcurve.cpp.

◆ close()

void QgsCompoundCurve::close ( )

Appends first point if not already closed.

Definition at line 1233 of file qgscompoundcurve.cpp.

◆ closestSegment()

double QgsCompoundCurve::closestSegment ( const QgsPoint & pt,
QgsPoint & segmentPt,
QgsVertexId & vertexAfter,
int * leftOf = nullptr,
double epsilon = 4 *std::numeric_limits< double >::epsilon() ) const
overridevirtual

Searches for the closest segment of the geometry to a given point.

Parameters
ptspecifies the point to find closest segment to
segmentPtstorage for the closest point within the geometry
vertexAfterstorage for the ID of the vertex at the end of the closest segment
leftOfindicates whether the point lies on the left side of the geometry (-1 if point is to the left of the geometry, +1 if the point is to the right of the geometry, or 0 for cases where left/right could not be determined, e.g. point exactly on a line) false if point is to right of segment)
epsilonepsilon for segment snapping
Returns
squared distance to closest segment or negative value on error

Implements QgsAbstractGeometry.

Definition at line 1057 of file qgscompoundcurve.cpp.

◆ compareToSameClass()

int QgsCompoundCurve::compareToSameClass ( const QgsAbstractGeometry * other) const
finalprotectedvirtual

Compares to an other geometry of the same class, and returns a integer for sorting of the two geometries.

Note
The actual logic for the sorting is an internal detail only and is subject to change between QGIS versions. The result should only be used for direct comparison of geometries and not stored for later use.
Since
QGIS 3.20

Implements QgsAbstractGeometry.

Definition at line 52 of file qgscompoundcurve.cpp.

◆ condenseCurves()

void QgsCompoundCurve::condenseCurves ( )

Condenses the curves in this geometry by combining adjacent linestrings a to a single continuous linestring, and combining adjacent circularstrings to a single continuous circularstring.

Since
QGIS 3.20

Definition at line 659 of file qgscompoundcurve.cpp.

◆ createEmptyWithSameType()

QgsCompoundCurve * QgsCompoundCurve::createEmptyWithSameType ( ) const
overridevirtual

Creates a new geometry with the same class and same WKB type as the original and transfers ownership.

To create it, the geometry is default constructed and then the WKB is changed.

See also
clone()

Implements QgsAbstractGeometry.

Definition at line 45 of file qgscompoundcurve.cpp.

◆ curveAt()

const QgsCurve * QgsCompoundCurve::curveAt ( int i) const

Returns the curve at the specified index.

Definition at line 561 of file qgscompoundcurve.cpp.

◆ curveSubstring()

QgsCompoundCurve * QgsCompoundCurve::curveSubstring ( double startDistance,
double endDistance ) const
overridevirtual

Returns a new curve representing a substring of this curve.

The startDistance and endDistance arguments specify the length along the curve which the substring should start and end at. If the endDistance is greater than the total length of the curve then any "extra" length will be ignored.

If z or m values are present, the output z and m will be interpolated using the existing vertices' z or m values.

Since
QGIS 3.4

Implements QgsCurve.

Definition at line 1322 of file qgscompoundcurve.cpp.

◆ curveToLine()

QgsLineString * QgsCompoundCurve::curveToLine ( double tolerance = M_PI_2 / 90,
SegmentationToleranceType toleranceType = MaximumAngle ) const
overridevirtual

Returns a new line string geometry corresponding to a segmentized approximation of the curve.

Parameters
tolerancesegmentation tolerance
toleranceTypemaximum segmentation angle or maximum difference between approximation and curve

Implements QgsCurve.

Definition at line 458 of file qgscompoundcurve.cpp.

◆ deleteVertex()

bool QgsCompoundCurve::deleteVertex ( QgsVertexId position)
overridevirtual

Deletes a vertex within the geometry.

Parameters
positionvertex id for vertex to delete
Returns
true if delete was successful
See also
insertVertex
moveVertex

Implements QgsAbstractGeometry.

Definition at line 781 of file qgscompoundcurve.cpp.

◆ dimension()

int QgsCompoundCurve::dimension ( ) const
overridevirtual

Returns the inherent dimension of the geometry.

For example, this is 0 for a point geometry, 1 for a linestring and 2 for a polygon.

Implements QgsAbstractGeometry.

Definition at line 88 of file qgscompoundcurve.cpp.

◆ distanceBetweenVertices()

double QgsCompoundCurve::distanceBetweenVertices ( QgsVertexId fromVertex,
QgsVertexId toVertex ) const
overridevirtual

Returns the distance along the curve between two vertices.

This method calculates the accumulated distance along the curve from one vertex to another. For circular strings, this includes following the arc path precisely.

Note
For 3D geometries, the distance calculation includes the Z coordinate component.
Parameters
fromVertexthe starting vertex ID
toVertexthe ending vertex ID
Returns
distance along the curve between the vertices, or -1 if either vertex is invalid
Since
QGIS 4.00

Implements QgsCurve.

Definition at line 1420 of file qgscompoundcurve.cpp.

◆ draw()

void QgsCompoundCurve::draw ( QPainter & p) const
overridevirtual

Draws the geometry using the specified QPainter.

Parameters
pdestination QPainter

Implements QgsAbstractGeometry.

Definition at line 688 of file qgscompoundcurve.cpp.

◆ drawAsPolygon()

void QgsCompoundCurve::drawAsPolygon ( QPainter & p) const
overridevirtual

Draws the curve as a polygon on the specified QPainter.

Parameters
pdestination QPainter

Implements QgsCurve.

Definition at line 729 of file qgscompoundcurve.cpp.

◆ dropMValue()

bool QgsCompoundCurve::dropMValue ( )
overridevirtual

Drops any measure values which exist in the geometry.

Returns
true if m-values were present and have been removed
See also
addMValue()
dropZValue()

Implements QgsAbstractGeometry.

Definition at line 1397 of file qgscompoundcurve.cpp.

◆ dropZValue()

bool QgsCompoundCurve::dropZValue ( )
overridevirtual

Drops any z-dimensions which exist in the geometry.

Returns
true if Z values were present and have been removed
See also
addZValue()
dropMValue()

Implements QgsAbstractGeometry.

Definition at line 1383 of file qgscompoundcurve.cpp.

◆ endPoint()

QgsPoint QgsCompoundCurve::endPoint ( ) const
overridevirtual

Returns the end point of the curve.

See also
startPoint

Implements QgsCurve.

Definition at line 370 of file qgscompoundcurve.cpp.

◆ equals()

bool QgsCompoundCurve::equals ( const QgsCurve & other) const
inlineoverridevirtual

Checks whether this curve exactly equals another curve.

Implements QgsCurve.

Definition at line 85 of file qgscompoundcurve.h.

◆ filterVertices()

void QgsCompoundCurve::filterVertices ( const std::function< bool(const QgsPoint &) > & filter)
overridevirtual

Filters the vertices from the geometry in place, removing any which do not return true for the filter function check.

Has no meaning when called on a single point geometry.

Depending on the filter used, this may result in an invalid geometry.

Note
Not available in Python bindings
Since
QGIS 3.2

Reimplemented from QgsAbstractGeometry.

Definition at line 1158 of file qgscompoundcurve.cpp.

◆ fromWkb()

bool QgsCompoundCurve::fromWkb ( QgsConstWkbPtr & wkb)
overridevirtual

Sets the geometry from a WKB string.

After successful read the wkb argument will be at the position where the reading has stopped.

See also
fromWkt

Implements QgsAbstractGeometry.

Definition at line 168 of file qgscompoundcurve.cpp.

◆ fromWkt()

bool QgsCompoundCurve::fromWkt ( const QString & wkt)
overridevirtual

Sets the geometry from a WKT string.

See also
fromWkb

Implements QgsAbstractGeometry.

Definition at line 208 of file qgscompoundcurve.cpp.

◆ fuzzyDistanceEqual()

bool QgsCompoundCurve::fuzzyDistanceEqual ( const QgsAbstractGeometry & other,
double epsilon = 1e-8 ) const
inlineoverridevirtual

Performs fuzzy distance comparison between this geometry and other using an epsilon.

Traditionally, the comparison is done by examining the specific values (such as x and y) that define the location of vertices in the geometry. It focuses on the numerical differences or relationships between these values. On the other hand, comparing distances between points considers the actual spatial separation or length between the points, regardless of their coordinate values. This comparison involves measuring the distance between two points using formulas like the distance formula. Here, it's the "distance comparison" (fuzzyDistanceEqual).

See also
fuzzyEqual
QgsGeometryUtilsBase::fuzzyEqual
Since
QGIS 3.36

Implements QgsAbstractGeometry.

Definition at line 80 of file qgscompoundcurve.h.

◆ fuzzyEqual()

bool QgsCompoundCurve::fuzzyEqual ( const QgsAbstractGeometry & other,
double epsilon = 1e-8 ) const
inlineoverridevirtual

Performs fuzzy comparison between this geometry and other using an epsilon.

The comparison is done by examining the specific values (such as x and y) that define the location of vertices in the geometry.

See also
fuzzyDistanceEqual
QgsGeometryUtilsBase::fuzzyDistanceEqual
Since
QGIS 3.36

Implements QgsAbstractGeometry.

Definition at line 76 of file qgscompoundcurve.h.

◆ geometryType()

QString QgsCompoundCurve::geometryType ( ) const
overridevirtual

Returns a unique string representing the geometry type.

See also
wkbType
wktTypeStr

Implements QgsAbstractGeometry.

Definition at line 83 of file qgscompoundcurve.cpp.

◆ hasCurvedSegments()

bool QgsCompoundCurve::hasCurvedSegments ( ) const
overridevirtual

Returns true if the geometry contains curved segments.

Reimplemented from QgsAbstractGeometry.

Definition at line 1242 of file qgscompoundcurve.cpp.

◆ indexOf()

int QgsCompoundCurve::indexOf ( const QgsPoint & point) const
finalvirtual

Returns the index of the first vertex matching the given point, or -1 if a matching vertex is not found.

Note
If the curve has m or z values then the search point must have exactly matching m and z values in order to be matched against the curve's vertices.
This method only matches against segment vertices, not curve vertices.
Since
QGIS 3.20

Implements QgsCurve.

Definition at line 443 of file qgscompoundcurve.cpp.

◆ insertVertex()

bool QgsCompoundCurve::insertVertex ( QgsVertexId position,
const QgsPoint & vertex )
overridevirtual

Inserts a vertex into the geometry.

Parameters
positionvertex id for position of inserted vertex
vertexvertex to insert
Returns
true if insert was successful
See also
moveVertex
deleteVertex

Implements QgsAbstractGeometry.

Definition at line 743 of file qgscompoundcurve.cpp.

◆ interpolatePoint()

QgsPoint * QgsCompoundCurve::interpolatePoint ( double distance) const
overridevirtual

Returns an interpolated point on the curve at the specified distance.

If z or m values are present, the output z and m will be interpolated using the existing vertices' z or m values.

If distance is negative, or is greater than the length of the curve, nullptr will be returned.

Since
QGIS 3.4

Implements QgsCurve.

Definition at line 1298 of file qgscompoundcurve.cpp.

◆ isEmpty()

bool QgsCompoundCurve::isEmpty ( ) const
overridevirtual

Returns true if the geometry is empty.

Reimplemented from QgsAbstractGeometry.

Definition at line 414 of file qgscompoundcurve.cpp.

◆ isValid()

bool QgsCompoundCurve::isValid ( QString & error,
Qgis::GeometryValidityFlags flags = Qgis::GeometryValidityFlags() ) const
overridevirtual

Checks validity of the geometry, and returns true if the geometry is valid.

Parameters
errorwill be set to the validity error message
flagsindicates optional flags which control the type of validity checking performed (corresponding to Qgis::GeometryValidityFlags).
Returns
true if geometry is valid
Since
QGIS 3.8

Implements QgsAbstractGeometry.

Definition at line 427 of file qgscompoundcurve.cpp.

◆ length()

double QgsCompoundCurve::length ( ) const
overridevirtual

Returns the planar, 2-dimensional length of the geometry.

Warning
QgsAbstractGeometry objects are inherently Cartesian/planar geometries, and the length returned by this method is calculated using strictly Cartesian mathematics. In contrast, the QgsDistanceArea class exposes methods for calculating the lengths of geometries using geodesic calculations which account for the curvature of the Earth (or any other celestial body).
See also
area()
perimeter()

Reimplemented from QgsAbstractGeometry.

Definition at line 351 of file qgscompoundcurve.cpp.

◆ mAt()

double QgsCompoundCurve::mAt ( int index) const
overridevirtual

Returns the m-coordinate of the specified node in the line string.

Parameters
indexindex of node, where the first node in the line is 0
Returns
m-coordinate of node, or 0.0 if index is out of bounds
Since
QGIS 3.28

Implements QgsCurve.

Definition at line 1122 of file qgscompoundcurve.cpp.

◆ moveVertex()

bool QgsCompoundCurve::moveVertex ( QgsVertexId position,
const QgsPoint & newPos )
overridevirtual

Moves a vertex within the geometry.

Parameters
positionvertex id for vertex to move
newPosnew position of vertex
Returns
true if move was successful
See also
insertVertex
deleteVertex

Implements QgsAbstractGeometry.

Definition at line 764 of file qgscompoundcurve.cpp.

◆ nCurves()

int QgsCompoundCurve::nCurves ( ) const
inline

Returns the number of curves in the geometry.

Definition at line 133 of file qgscompoundcurve.h.

◆ numPoints()

int QgsCompoundCurve::numPoints ( ) const
overridevirtual

Returns the number of points in the curve.

Implements QgsCurve.

Definition at line 397 of file qgscompoundcurve.cpp.

◆ operator=()

QgsCompoundCurve & QgsCompoundCurve::operator= ( const QgsCompoundCurve & curve)

Definition at line 104 of file qgscompoundcurve.cpp.

◆ pointAt()

bool QgsCompoundCurve::pointAt ( int node,
QgsPoint & point,
Qgis::VertexType & type ) const
overridevirtual

Returns the point and vertex id of a point within the curve.

Parameters
nodenode number, where the first node is 0
pointwill be set to point at corresponding node in the curve
typewill be set to the vertex type of the node
Returns
true if node exists within the curve

Implements QgsCurve.

Definition at line 1062 of file qgscompoundcurve.cpp.

◆ points()

void QgsCompoundCurve::points ( QgsPointSequence & pt) const
overridevirtual

Returns a list of points within the curve.

Implements QgsCurve.

Definition at line 379 of file qgscompoundcurve.cpp.

◆ removeCurve()

void QgsCompoundCurve::removeCurve ( int i)

Removes a curve from the geometry.

Parameters
iindex of curve to remove

Definition at line 615 of file qgscompoundcurve.cpp.

◆ removeDuplicateNodes()

bool QgsCompoundCurve::removeDuplicateNodes ( double epsilon = 4 *std::numeric_limits< double >::epsilon(),
bool useZValues = false )
overridevirtual

Removes duplicate nodes from the geometry, wherever removing the nodes does not result in a degenerate geometry.

The epsilon parameter specifies the tolerance for coordinates when determining that vertices are identical.

By default, z values are not considered when detecting duplicate nodes. E.g. two nodes with the same x and y coordinate but different z values will still be considered duplicate and one will be removed. If useZValues is true, then the z values are also tested and nodes with the same x and y but different z will be maintained.

Note that duplicate nodes are not tested between different parts of a multipart geometry. E.g. a multipoint geometry with overlapping points will not be changed by this method.

The function will return true if nodes were removed, or false if no duplicate nodes were found.

Implements QgsAbstractGeometry.

Definition at line 495 of file qgscompoundcurve.cpp.

◆ reversed()

QgsCompoundCurve * QgsCompoundCurve::reversed ( ) const
overridevirtual

Returns a reversed copy of the curve, where the direction of the curve has been flipped.

Implements QgsCurve.

Definition at line 1287 of file qgscompoundcurve.cpp.

◆ scroll()

void QgsCompoundCurve::scroll ( int firstVertexIndex)
finalvirtual

Scrolls the curve vertices so that they start with the vertex at the given index.

Warning
This should only be called on closed curves, or the shape of the curve will be altered and the result is undefined.
The firstVertexIndex must correspond to a segment vertex and not a curve point or the result is undefined.
Since
QGIS 3.20

Implements QgsCurve.

Definition at line 146 of file qgscompoundcurve.cpp.

◆ segmentLength()

double QgsCompoundCurve::segmentLength ( QgsVertexId startVertex) const
overridevirtual

Returns the length of the segment of the geometry which begins at startVertex.

Warning
QgsAbstractGeometry objects are inherently Cartesian/planar geometries, and the lengths returned by this method are calculated using strictly Cartesian mathematics.

Implements QgsAbstractGeometry.

Definition at line 1276 of file qgscompoundcurve.cpp.

◆ simplifiedTypeRef()

const QgsAbstractGeometry * QgsCompoundCurve::simplifiedTypeRef ( ) const
overridevirtual

Returns a reference to the simplest lossless representation of this geometry, e.g.

if the geometry is a multipart geometry type with a single member geometry, a reference to that part will be returned.

This method employs the following logic:

  • For multipart geometries containing a single part only a direct reference to that part will be returned.
  • For compound curve geometries containing a single curve only a direct reference to that curve will be returned.

This method returns a reference only, and does not involve any geometry cloning.

Note
Ownership of the returned geometry is NOT transferred, and remains with the original geometry object. Callers must take care to ensure that the original geometry object exists for the lifespan of the returned object.
Since
QGIS 3.20

Reimplemented from QgsAbstractGeometry.

Definition at line 553 of file qgscompoundcurve.cpp.

◆ simplifyByDistance()

QgsAbstractGeometry * QgsCompoundCurve::simplifyByDistance ( double tolerance) const
overridevirtual

Simplifies the geometry by applying the Douglas Peucker simplification by distance algorithm.

The caller takes ownership of the returned geometry. Curved geometries will be segmentized prior to simplification.

If a simplified geometry cannot be calculated nullptr will be returned.

The returned geometry may be invalid and contain self-intersecting rings.

Since
QGIS 3.38

Implements QgsAbstractGeometry.

Definition at line 489 of file qgscompoundcurve.cpp.

◆ snappedToGrid()

QgsCompoundCurve * QgsCompoundCurve::snappedToGrid ( double hSpacing,
double vSpacing,
double dSpacing = 0,
double mSpacing = 0,
bool removeRedundantPoints = false ) const
overridevirtual

Makes a new geometry with all the points or vertices snapped to the closest point of the grid.

Ownership is transferred to the caller.

If the gridified geometry could not be calculated nullptr will be returned. It may generate an invalid geometry (in some corner cases). It can also be thought as rounding the edges and it may be useful for removing errors.

Example:

geometry.snappedToGrid(1, 1)

In this case we use a 2D grid of 1x1 to gridify. In this case, it can be thought like rounding the x and y of all the points/vertices to full units (remove all decimals).

Parameters
hSpacingHorizontal spacing of the grid (x axis). 0 to disable.
vSpacingVertical spacing of the grid (y axis). 0 to disable.
dSpacingDepth spacing of the grid (z axis). 0 (default) to disable.
mSpacingCustom dimension spacing of the grid (m axis). 0 (default) to disable.
removeRedundantPointsif true, then points which are redundant (e.g. they represent mid points on a straight line segment) will be skipped (since QGIS 3.38)

Implements QgsAbstractGeometry.

Definition at line 470 of file qgscompoundcurve.cpp.

◆ splitCurveAtVertex()

std::tuple< std::unique_ptr< QgsCurve >, std::unique_ptr< QgsCurve > > QgsCompoundCurve::splitCurveAtVertex ( int index) const
finalvirtual

Splits the curve at the specified vertex index, returning two curves which represent the portion of the curve up to an including the vertex at index, and the portion of the curve from the vertex at index (inclusive) to the end of the curve.

Note
The vertex index must correspond to a segment vertex, not a curve vertex.
Not available in Python bindings.
Since
QGIS 3.20

Implements QgsCurve.

Definition at line 1176 of file qgscompoundcurve.cpp.

◆ startPoint()

QgsPoint QgsCompoundCurve::startPoint ( ) const
overridevirtual

Returns the starting point of the curve.

See also
endPoint

Implements QgsCurve.

Definition at line 361 of file qgscompoundcurve.cpp.

◆ sumUpArea()

void QgsCompoundCurve::sumUpArea ( double & sum) const
overridevirtual

Sums up the area of the curve by iterating over the vertices (shoelace formula).

Implements QgsCurve.

Definition at line 1216 of file qgscompoundcurve.cpp.

◆ swapXy()

void QgsCompoundCurve::swapXy ( )
overridevirtual

Swaps the x and y coordinates from the geometry.

This can be used to repair geometries which have accidentally had their latitude and longitude coordinates reversed.

Since
QGIS 3.2

Implements QgsAbstractGeometry.

Definition at line 1411 of file qgscompoundcurve.cpp.

◆ toggleCircularAtVertex()

bool QgsCompoundCurve::toggleCircularAtVertex ( QgsVertexId position)

Converts the vertex at the given position from/to circular.

Returns
false if atVertex does not correspond to a valid vertex on this geometry (including if this geometry is a Point), or if the specified vertex can't be converted (e.g. start/end points).
Since
QGIS 3.20

Definition at line 964 of file qgscompoundcurve.cpp.

◆ transform() [1/3]

void QgsCompoundCurve::transform ( const QgsCoordinateTransform & ct,
Qgis::TransformDirection d = Qgis::TransformDirection::Forward,
bool transformZ = false )
overridevirtual

Transforms the geometry using a coordinate transform.

Parameters
ctcoordinate transform
dtransformation direction
transformZset to true to also transform z coordinates. This requires that the z coordinates in the geometry represent height relative to the vertical datum of the source CRS (generally ellipsoidal heights) and are expressed in its vertical units (generally meters). If false, then z coordinates will not be changed by the transform.

Implements QgsAbstractGeometry.

Definition at line 696 of file qgscompoundcurve.cpp.

◆ transform() [2/3]

void QgsCompoundCurve::transform ( const QTransform & t,
double zTranslate = 0.0,
double zScale = 1.0,
double mTranslate = 0.0,
double mScale = 1.0 )
overridevirtual

Transforms the x and y components of the geometry using a QTransform object t.

Optionally, the geometry's z values can be scaled via zScale and translated via zTranslate. Similarly, m-values can be scaled via mScale and translated via mTranslate.

Implements QgsAbstractGeometry.

Definition at line 705 of file qgscompoundcurve.cpp.

◆ transform() [3/3]

bool QgsCompoundCurve::transform ( QgsAbstractGeometryTransformer * transformer,
QgsFeedback * feedback = nullptr )
overridevirtual

Transforms the vertices from the geometry in place, using the specified geometry transformer object.

Depending on the transformer used, this may result in an invalid geometry.

The optional feedback argument can be used to cancel the transformation before it completes. If this is done, the geometry will be left in a semi-transformed state.

Returns
true if the geometry was successfully transformed.
Since
QGIS 3.18

Implements QgsAbstractGeometry.

Definition at line 1137 of file qgscompoundcurve.cpp.

◆ transformVertices()

void QgsCompoundCurve::transformVertices ( const std::function< QgsPoint(const QgsPoint &) > & transform)
overridevirtual

Transforms the vertices from the geometry in place, applying the transform function to every vertex.

Depending on the transform used, this may result in an invalid geometry.

Transform functions are not permitted to alter the dimensionality of vertices. If a transform which adds (or removes) z/m values is desired, first call the corresponding addZValue() or addMValue() function to change the geometry's dimensionality and then transform.

Note
Not available in Python bindings
Since
QGIS 3.4

Reimplemented from QgsAbstractGeometry.

Definition at line 1167 of file qgscompoundcurve.cpp.

◆ vertexAngle()

double QgsCompoundCurve::vertexAngle ( QgsVertexId vertex) const
overridevirtual

Returns approximate angle at a vertex.

This is usually the average angle between adjacent segments, and can be pictured as the orientation of a line following the curvature of the geometry at the specified vertex.

Parameters
vertexthe vertex id
Returns
rotation in radians, clockwise from north

Implements QgsAbstractGeometry.

Definition at line 1254 of file qgscompoundcurve.cpp.

◆ wkbSize()

int QgsCompoundCurve::wkbSize ( QgsAbstractGeometry::WkbFlags flags = QgsAbstractGeometry::WkbFlags()) const
overridevirtual

Returns the length of the QByteArray returned by asWkb().

The optional flags argument specifies flags controlling WKB export behavior

Since
QGIS 3.16

Implements QgsAbstractGeometry.

Definition at line 266 of file qgscompoundcurve.cpp.

◆ xAt()

double QgsCompoundCurve::xAt ( int index) const
overridevirtual

Returns the x-coordinate of the specified node in the line string.

Parameters
indexindex of node, where the first node in the line is 0
Returns
x-coordinate of node, or 0.0 if index is out of bounds

Implements QgsCurve.

Definition at line 1077 of file qgscompoundcurve.cpp.

◆ yAt()

double QgsCompoundCurve::yAt ( int index) const
overridevirtual

Returns the y-coordinate of the specified node in the line string.

Parameters
indexindex of node, where the first node in the line is 0
Returns
y-coordinate of node, or 0.0 if index is out of bounds

Implements QgsCurve.

Definition at line 1092 of file qgscompoundcurve.cpp.

◆ zAt()

double QgsCompoundCurve::zAt ( int index) const
overridevirtual

Returns the z-coordinate of the specified node in the line string.

Parameters
indexindex of node, where the first node in the line is 0
Returns
z-coordinate of node, or 0.0 if index is out of bounds
Since
QGIS 3.28

Implements QgsCurve.

Definition at line 1107 of file qgscompoundcurve.cpp.


The documentation for this class was generated from the following files: