23#include <nlohmann/json.hpp>
59#include "moc_qgsgeometry.cpp"
61using namespace Qt::StringLiterals;
73 std::unique_ptr< QgsAbstractGeometry >
geometry;
82 if ( !d->ref.deref() )
89 d->geometry.reset( geom );
99 mLastError = other.mLastError;
105 if (
this != &other )
107 if ( !d->ref.deref() )
112 mLastError = other.mLastError;
119void QgsGeometry::detach()
124 std::unique_ptr< QgsAbstractGeometry > cGeom;
126 cGeom.reset( d->
geometry->clone() );
128 reset( std::move( cGeom ) );
131void QgsGeometry::reset( std::unique_ptr<QgsAbstractGeometry> newGeometry )
135 ( void ) d->ref.deref();
136 d =
new QgsGeometryPrivate();
138 d->geometry = std::move( newGeometry );
143 return d->geometry.get();
149 return d->geometry.get();
154 if ( d->geometry.get() == geometry )
159 reset( std::unique_ptr< QgsAbstractGeometry >( geometry ) );
173 QMutexLocker lock( sWktMutex() );
174 if (
const QgsGeometry *cached = sWktCache()->
object( wkt ) )
177 sWktCache()->insert( wkt,
new QgsGeometry( result ), 1 );
208 return QgsGeometry( std::make_unique< QgsLineString >( polyline ) );
256 auto ext = std::make_unique< QgsLineString >(
260 auto polygon = std::make_unique< QgsPolygon >();
261 polygon->setExteriorRing( ext.release() );
272 auto polyhedralSurface = std::make_unique< QgsPolyhedralSurface >();
274 auto ext1 = std::make_unique< QgsLineString >(
279 auto polygon1 = std::make_unique< QgsPolygon >( ext1.release() );
280 polyhedralSurface->addPatch( polygon1.release() );
282 auto ext2 = std::make_unique< QgsLineString >(
287 auto polygon2 = std::make_unique< QgsPolygon >( ext2.release() );
288 polyhedralSurface->addPatch( polygon2.release() );
290 auto ext3 = std::make_unique< QgsLineString >(
295 auto polygon3 = std::make_unique< QgsPolygon >( ext3.release() );
296 polyhedralSurface->addPatch( polygon3.release() );
298 auto ext4 = std::make_unique< QgsLineString >(
303 auto polygon4 = std::make_unique< QgsPolygon >( ext4.release() );
304 polyhedralSurface->addPatch( polygon4.release() );
306 auto ext5 = std::make_unique< QgsLineString >(
311 auto polygon5 = std::make_unique< QgsPolygon >( ext5.release() );
312 polyhedralSurface->addPatch( polygon5.release() );
314 auto ext6 = std::make_unique< QgsLineString >(
319 auto polygon6 = std::make_unique< QgsPolygon >( ext6.release() );
320 polyhedralSurface->addPatch( polygon6.release() );
322 return QgsGeometry( std::move( polyhedralSurface ) );
338 if ( g.isMultipart() )
340 for (
auto p = g.const_parts_begin(); p != g.const_parts_end(); ++p )
356 auto resultTin = std::make_unique<QgsTriangulatedSurface>();
372 resultTin->addZValue( 0 );
373 if ( tin->isMeasure() )
374 resultTin->addMValue( 0 );
379 for (
int j = 0; j < tin->numPatches(); ++j )
381 if (
const QgsPolygon *patch = tin->patchN( j ) )
383 resultTin->addPatch( patch->clone() );
392 if ( triangle->is3D() )
393 resultTin->addZValue( 0 );
394 if ( triangle->isMeasure() )
395 resultTin->addMValue( 0 );
399 resultTin->addPatch( triangle->clone() );
403 if ( resultTin->numPatches() == 0 )
411 const double startAngle = azimuth - angularWidth * 0.5;
412 const double endAngle = azimuth + angularWidth * 0.5;
419 auto wedge = std::make_unique< QgsCompoundCurve >();
421 const double DEG_TO_RAD = M_PI / 180.0;
422 const double RAD_TO_DEG = 180.0 / M_PI;
424 const double angularWidth = endAngle - startAngle;
427 if ( std::abs( angularWidth ) >= 360.0 )
429 auto outerCc = std::make_unique< QgsCompoundCurve >();
434 auto cp = std::make_unique< QgsCurvePolygon >();
435 cp->setExteriorRing( outerCc.release() );
439 auto innerCc = std::make_unique< QgsCompoundCurve >();
444 cp->setInteriorRings( { innerCc.release() } );
469 auto cp = std::make_unique< QgsCurvePolygon >();
470 cp->setExteriorRing( wedge.release() );
495 return d->geometry->wkbType();
515 return d->geometry->isEmpty();
547 d->geometry->adjacentVertices(
id, prevVertex, nextVertex );
583 return d->geometry->vertexAngle( v2 );
602 d->geometry->adjacentVertices(
id, beforeVertexId, afterVertexId );
622 return d->geometry->moveVertex(
id,
QgsPoint( x, y ) );
640 return d->geometry->moveVertex(
id, p );
673 return d->geometry->deleteVertex(
id );
686 if ( atVertices.size() != 1 && !atVertices.contains( 0 ) )
693 QSet<QgsVertexId> vertexIds;
694 for (
int vertex : atVertices )
700 vertexIds.insert(
id );
704 std::unique_ptr< QgsAbstractGeometry > originalGeometry( d->geometry->clone() );
708 if ( !d->geometry->deleteVertices( vertexIds ) )
710 reset( std::move( originalGeometry ) );
733 if ( owningCollection )
734 part = owningCollection->
geometryN(
id.part );
751 bool success =
false;
762 auto cpdCurve = std::make_unique<QgsCompoundCurve>();
769 if ( !owningPolygon && !owningCollection )
772 reset( std::make_unique<QgsCompoundCurve>( *cpdCurve ) );
774 else if ( owningPolygon )
787 else if ( owningCollection )
822 return d->geometry->insertVertex(
id,
QgsPoint( x, y ) );
848 return d->geometry->insertVertex(
id, point );
858 const double sqrSnappingTolerance = snappingTolerance * snappingTolerance;
859 int segmentAfterVertex;
861 const double sqrDistSegmentSnap =
closestSegmentWithContext( point, snappedPoint, segmentAfterVertex,
nullptr, segmentSearchEpsilon );
863 if ( sqrDistSegmentSnap > sqrSnappingTolerance )
866 int atVertex, beforeVertex, afterVertex;
867 double sqrDistVertexSnap;
868 closestVertex( point, atVertex, beforeVertex, afterVertex, sqrDistVertexSnap );
870 if ( sqrDistVertexSnap < sqrSnappingTolerance )
877 QgsPoint interpolatedPoint( point );
878 if ( d->geometry.get()->is3D() || d->geometry.get()->isMeasure() )
885 if ( !
insertVertex( interpolatedPoint, segmentAfterVertex ) )
907 return d->geometry->vertexAt( vId );
927 result.mLastError = mLastError;
942 result.mLastError = mLastError;
972 double sqrDist = d->geometry->closestSegment(
QgsPoint( point ), segmentPt, vertexAfter, leftOrRightOfSegment, epsilon );
976 minDistPoint.
setX( segmentPt.
x() );
977 minDistPoint.
setY( segmentPt.
y() );
984 auto ringLine = std::make_unique< QgsLineString >( ring );
985 return addRing( ringLine.release() );
990 std::unique_ptr< QgsCurve > r( ring );
1006 return addPart( l, geomType );
1019 std::unique_ptr< QgsAbstractGeometry > partGeom;
1020 if ( points.size() == 1 )
1022 partGeom = std::make_unique< QgsPoint >( points[0] );
1024 else if ( points.size() > 1 )
1026 auto ringLine = std::make_unique< QgsLineString >();
1027 ringLine->setPoints( points );
1028 partGeom = std::move( ringLine );
1031 return addPart( partGeom.release(), geomType );
1037 std::unique_ptr< QgsAbstractGeometry > partGeom;
1038 if ( points.size() == 1 )
1040 partGeom = std::make_unique< QgsPoint >( points[0] );
1042 else if ( points.size() > 1 )
1044 auto ringLine = std::make_unique< QgsLineString >();
1045 ringLine->setPoints( points );
1046 partGeom = std::move( ringLine );
1053 std::unique_ptr< QgsAbstractGeometry > p( part );
1059 reset( std::make_unique< QgsMultiPoint >() );
1062 reset( std::make_unique< QgsMultiLineString >() );
1065 reset( std::make_unique< QgsMultiPolygon >() );
1083 std::unique_ptr< QgsAbstractGeometry > p( part );
1089 reset( std::make_unique< QgsMultiPoint >() );
1092 reset( std::make_unique< QgsMultiLineString >() );
1096 reset( std::make_unique< QgsMultiPolygon >() );
1099 reset( std::make_unique< QgsMultiSurface >() );
1103 reset( std::make_unique< QgsMultiCurve >() );
1106 reset( std::make_unique< QgsPolyhedralSurface >() );
1109 reset( std::make_unique< QgsTriangulatedSurface >() );
1154 QVector<QgsGeometry> results;
1155 results.reserve(
parts.count() );
1158 QgsGeometry result = part.removeInteriorRings( minimumRingArea );
1162 if ( results.isEmpty() )
1166 for (
const QgsGeometry &result : std::as_const( results ) )
1174 std::unique_ptr< QgsCurvePolygon > newPoly(
static_cast< QgsCurvePolygon *
>( d->geometry->clone() ) );
1175 newPoly->removeInteriorRings( minimumRingArea );
1189 d->geometry->transform( QTransform::fromTranslate( dx, dy ), dz, 1.0, dm );
1202 QTransform t = QTransform::fromTranslate( center.
x(), center.
y() );
1203 t.rotate( -rotation );
1204 t.translate( -center.
x(), -center.
y() );
1205 d->geometry->transform( t );
1213 if ( !geom->
is3D() )
1219 for (
const QgsPoint &pt : points )
1230 if (
const QgsPoint v = geom->
vertexAt( prevVertexId ); v.
x() == pt.x() && v.y() == pt.y() )
1232 else if (
const QgsPoint v = geom->
vertexAt( nextVertexId ); v.
x() == pt.x() && v.y() == pt.y() )
1239 const QVector<QgsPointXY> &splitLine, QVector<QgsGeometry> &newGeometries,
bool topological, QVector<QgsPointXY> &topologyTestPoints,
bool splitFeature
1250 const QgsPointSequence &splitLine, QVector<QgsGeometry> &newGeometries,
bool topological,
QgsPointSequence &topologyTestPoints,
bool splitFeature,
bool skipIntersectionTest
1262 for (
const QgsPoint &v : splitLine )
1280 addedTopologicalPoints.append( topoPoint );
1285 QVector<QgsGeometry > newGeoms;
1296 if ( !addedTopologicalPoints.isEmpty() )
1298 for (
int i = 0; i < newGeoms.size(); ++i )
1301 removeDuplicateAdjacentPointsAt( geom, addedTopologicalPoints );
1305 *
this = newGeoms.takeAt( 0 );
1306 newGeometries = newGeoms;
1334 const QgsCurve *curve, QVector<QgsGeometry> &newGeometries,
bool preserveCircular,
bool topological,
QgsPointSequence &topologyTestPoints,
bool splitFeature
1337 std::unique_ptr<QgsLineString> segmentizedLine( curve->
curveToLine() );
1339 segmentizedLine->points( points );
1344 if ( preserveCircular )
1346 for (
int i = 0; i < newGeometries.count(); ++i )
1365 reshapeLineString.
points( reshapePoints );
1368 for (
const QgsPoint &v : std::as_const( reshapePoints ) )
1380 addedTopologicalPoints.append( topoPoint );
1388 std::unique_ptr< QgsAbstractGeometry > geom(
geos.reshapeGeometry( reshapeLineString, &errorCode, &mLastError ) );
1391 if ( !addedTopologicalPoints.isEmpty() )
1393 removeDuplicateAdjacentPointsAt( geom.get(), addedTopologicalPoints );
1395 reset( std::move( geom ) );
1399 switch ( errorCode )
1423 if ( !d->geometry || !other.d->
geometry )
1437 reset( std::move( diffGeom ) );
1450 return d->geometry->boundingBox();
1459 return d->geometry->boundingBox3D();
1490 double area, angle, width, height;
1496 auto l_boundary = boundary.length();
1498 if ( ( points.length() == 0 ) || ( l_boundary == 3 ) )
1500 switch ( l_boundary )
1507 boundary.pop_back();
1512 boundary.pop_back();
1514 boundary.pop_back();
1531 circ_mec = __recMinimalEnclosingCircle( points, boundary );
1535 boundary.append( pxy );
1536 circ_mec = __recMinimalEnclosingCircle( points, boundary );
1560 QgsCircle circ = __recMinimalEnclosingCircle( P, R );
1579 return engine.
orthogonalize( tolerance, maxIterations, angleThreshold );
1585 return engine.
triangularWaves( wavelength, amplitude, strictWavelength );
1591 return engine.
triangularWavesRandomized( minimumWavelength, maximumWavelength, minimumAmplitude, maximumAmplitude, seed );
1597 return engine.
squareWaves( wavelength, amplitude, strictWavelength );
1603 return engine.
squareWavesRandomized( minimumWavelength, maximumWavelength, minimumAmplitude, maximumAmplitude, seed );
1609 return engine.
roundWaves( wavelength, amplitude, strictWavelength );
1615 return engine.
roundWavesRandomized( minimumWavelength, maximumWavelength, minimumAmplitude, maximumAmplitude, seed );
1623 return engine.
applyDashPattern( pattern, startRule, endRule, adjustment, patternOffset );
1632 return QgsGeometry( d->geometry->snappedToGrid( hSpacing, vSpacing, dSpacing, mSpacing ) );
1641 return d->geometry->removeDuplicateNodes( epsilon, useZValues );
1657#if ( GEOS_VERSION_MAJOR == 3 && GEOS_VERSION_MINOR < 12 )
1673 if ( !d->geometry || geometry.
isNull() )
1680 return geos.intersects( geometry.d->
geometry.get(), &mLastError );
1690 return d->geometry->boundingBoxIntersects( rectangle );
1695 if ( !d->geometry || geometry.
isNull() )
1705 if ( !d->geometry || !p )
1712 return geos.contains( p->
x(), p->
y(), &mLastError );
1724 return geos.contains( x, y, &mLastError );
1729 if ( !d->geometry || geometry.
isNull() )
1736 return geos.contains( geometry.d->
geometry.get(), &mLastError );
1741 if ( !d->geometry || geometry.
isNull() )
1748 return geos.disjoint( geometry.d->
geometry.get(), &mLastError );
1758 if ( !d->geometry || geometry.
isNull() )
1765 return geos.touches( geometry.d->
geometry.get(), &mLastError );
1770 if ( !d->geometry || geometry.
isNull() )
1777 return geos.overlaps( geometry.d->
geometry.get(), &mLastError );
1782 if ( !d->geometry || geometry.
isNull() )
1789 return geos.within( geometry.d->
geometry.get(), &mLastError );
1794 if ( !d->geometry || geometry.
isNull() )
1801 return geos.crosses( geometry.d->
geometry.get(), &mLastError );
1810 return d->geometry->asWkt( precision );
1820 return QString::fromStdString(
asJsonObject( precision, profile ).dump() );
1829 return d->geometry->asJsonObject( precision, profile );
1835 QVector< QgsGeometry > res;
1855 newGeom =
QgsGeometry( d->geometry.get()->segmentize() );
1863 bool hasNurbs =
false;
1870 for (
int i = 0; i < collection->numGeometries(); ++i )
1883 for (
int i = 0; !hasNurbs && i < cp->numInteriorRings(); ++i )
1891 for (
int i = 0; i < cc->nCurves(); ++i )
1921 std::unique_ptr< QgsAbstractGeometry > exterior( ( *part )->clone() );
1926 auto cp = std::make_unique< QgsCurvePolygon >();
1927 cp->setExteriorRing( curve );
1928 ( void ) exterior.release();
1929 gc->addGeometry( cp.release() );
1933 auto p = std::make_unique< QgsPolygon >();
1935 ( void ) exterior.release();
1936 gc->addGeometry( p.release() );
1947 auto mp = std::make_unique< QgsMultiPoint >();
1949 QSet< QgsPoint > added;
1952 if ( avoidDuplicates && added.contains( *vertex ) )
1954 mp->addGeometry( ( *vertex ).clone() );
1955 added.insert( *vertex );
1963 auto polySurface = std::make_unique< QgsPolyhedralSurface >();
1969 polySurface->addPatch( polygon->clone() );
1972 newGeom =
QgsGeometry( std::move( polySurface ) );
1979 auto tin = std::make_unique< QgsTriangulatedSurface >();
1985 tin->addPatch( triangle->clone() );
1990 if ( polygon->exteriorRing() )
1992 const int numPoints = polygon->exteriorRing()->numPoints();
1993 if ( numPoints != 4 )
1995 mLastError = QObject::tr(
"Cannot convert polygon with %1 vertices to a triangle. A triangle requires exactly 3 vertices." ).arg( numPoints > 0 ? numPoints - 1 : 0 );
1998 auto triangle = std::make_unique< QgsTriangle >();
1999 triangle->setExteriorRing( polygon->exteriorRing()->clone() );
2000 tin->addPatch( triangle.release() );
2011 auto multiPolygon = std::make_unique< QgsMultiPolygon >();
2014 for (
int i = 0; i < polySurface->numPatches(); ++i )
2016 const QgsPolygon *patch = polySurface->patchN( i );
2017 auto polygon = std::make_unique< QgsPolygon >();
2023 multiPolygon->addGeometry( polygon.release() );
2026 newGeom =
QgsGeometry( std::move( multiPolygon ) );
2035 if ( polygon->exteriorRing() )
2037 const int numPoints = polygon->exteriorRing()->numPoints();
2038 if ( numPoints != 4 )
2040 mLastError = QObject::tr(
"Cannot convert polygon with %1 vertices to a triangle. A triangle requires exactly 3 vertices." ).arg( numPoints > 0 ? numPoints - 1 : 0 );
2043 auto triangle = std::make_unique< QgsTriangle >();
2044 triangle->setExteriorRing( polygon->exteriorRing()->clone() );
2085 res.reserve(
parts->partCount() );
2086 for (
int i = 0; i <
parts->partCount(); i++ )
2097 bool allExpectedType =
true;
2102 allExpectedType =
false;
2106 if ( allExpectedType )
2108 std::unique_ptr< QgsGeometryCollection > newGeomCol;
2111 newGeomCol = std::make_unique< QgsMultiPoint >();
2115 newGeomCol = std::make_unique< QgsMultiLineString >();
2119 newGeomCol = std::make_unique< QgsMultiPolygon >();
2145 return convertToPoint( destMultipart );
2148 return convertToLine( destMultipart );
2151 return convertToPolygon( destMultipart );
2186 d->geometry = std::move( geom );
2218 if ( sourceMultiGeom )
2220 for (
int i = 0; i < sourceMultiGeom->
numGeometries(); ++i )
2228 if ( !multiGeom->
addGeometry( d->geometry->clone() ) )
2232 reset( std::move( geom ) );
2249 if ( !multiGeom || multiGeom->
partCount() < 1 )
2252 std::unique_ptr< QgsAbstractGeometry > firstPart( multiGeom->
geometryN( 0 )->
clone() );
2253 reset( std::move( firstPart ) );
2264 std::unique_ptr<QgsGeometryCollection> resGeom;
2268 resGeom = std::make_unique<QgsMultiPoint>();
2271 resGeom = std::make_unique<QgsMultiLineString>();
2274 resGeom = std::make_unique<QgsMultiPolygon>();
2287 resGeom->addGeometry( g->
clone() );
2290 set( resGeom.release() );
2320 std::unique_ptr< QgsLineString > segmentizedLine;
2322 if ( doSegmentation )
2330 line = segmentizedLine.get();
2342 polyLine.resize( nVertices );
2344 const double *xData = line->
xData();
2345 const double *yData = line->
yData();
2346 for (
int i = 0; i < nVertices; ++i )
2348 data->
setX( *xData++ );
2349 data->
setY( *yData++ );
2364 std::unique_ptr< QgsPolygon > segmentized;
2365 if ( doSegmentation )
2372 segmentized.reset( curvePoly->
toPolygon() );
2373 p = segmentized.get();
2386 convertPolygon( *p, polygon );
2406 for (
int i = 0; i < nPoints; ++i )
2409 multiPoint[i].setX( pt->
x() );
2410 multiPoint[i].setY( pt->
y() );
2423 if ( !geomCollection )
2435 mpl.reserve( nLines );
2436 for (
int i = 0; i < nLines; ++i )
2439 std::unique_ptr< QgsLineString > segmentized;
2448 line = segmentized.get();
2453 polyLine.resize( nVertices );
2455 const double *xData = line->
xData();
2456 const double *yData = line->
yData();
2457 for (
int i = 0; i < nVertices; ++i )
2459 data->
setX( *xData++ );
2460 data->
setY( *yData++ );
2463 mpl.append( polyLine );
2476 if ( !geomCollection )
2482 if ( nPolygons < 1 )
2488 mp.reserve( nPolygons );
2489 for (
int i = 0; i < nPolygons; ++i )
2506 convertPolygon( *polygon, poly );
2507 mp.push_back( poly );
2519 return d->geometry->area();
2529 return d->geometry->area3D();
2545 return d->geometry->length();
2548 return d->geometry->perimeter();
2552 return d->geometry->length();
2559 if ( !d->geometry || !geom.d->
geometry )
2570 QgsGeos g( d->geometry.get() );
2577 if ( !d->geometry || !geom.d->
geometry )
2582 QgsGeos g( d->geometry.get() );
2589 if ( !d->geometry || !geom.d->
geometry )
2594 QgsGeos g( d->geometry.get() );
2602 if ( !d->geometry || !geom.d->
geometry )
2607 QgsGeos g( d->geometry.get() );
2614 if ( !d->geometry || !geom.d->
geometry )
2619 QgsGeos g( d->geometry.get() );
2626 if ( !d->geometry || d->geometry.get()->isEmpty() )
2628 return d->geometry->vertices_begin();
2633 if ( !d->geometry || d->geometry.get()->isEmpty() )
2635 return d->geometry->vertices_end();
2640 if ( !d->geometry || d->geometry.get()->isEmpty() )
2651 return d->geometry->parts_begin();
2658 return d->geometry->parts_end();
2665 return d->geometry->const_parts_begin();
2672 return d->geometry->const_parts_end();
2699 QgsGeos g( d->geometry.get() );
2701 std::unique_ptr<QgsAbstractGeometry> geom( g.
buffer(
distance, segments, &mLastError, feedback ) );
2705 result.mLastError = mLastError;
2718 QgsGeos g( d->geometry.get() );
2724 result.mLastError = mLastError;
2740 QVector<QgsGeometry> results;
2741 results.reserve(
parts.count() );
2748 if ( results.isEmpty() )
2752 for (
const QgsGeometry &result : std::as_const( results ) )
2766 std::unique_ptr< QgsAbstractGeometry > offsetGeom(
geos.offsetCurve(
distance, segments, joinStyle, miterLimit, &mLastError ) );
2770 result.mLastError = mLastError;
2777 if ( newOrientation != prevOrientation )
2780 std::unique_ptr< QgsAbstractGeometry > flipped(
offsetCurve->reversed() );
2781 offsetGeom = std::move( flipped );
2798 QVector<QgsGeometry> results;
2799 results.reserve(
parts.count() );
2802 QgsGeometry result = part.singleSidedBuffer(
distance, segments, side, joinStyle, miterLimit );
2806 if ( results.isEmpty() )
2810 for (
const QgsGeometry &result : std::as_const( results ) )
2820 std::unique_ptr< QgsAbstractGeometry > bufferGeom =
geos.singleSidedBuffer(
distance, segments, side, joinStyle, miterLimit, &mLastError );
2824 result.mLastError = mLastError;
2835 return engine.
taperedBuffer( startWidth, endWidth, segments );
2855 QVector<QgsGeometry> results;
2856 results.reserve(
parts.count() );
2859 QgsGeometry result = part.extendLine( startDistance, endDistance, startDeflection, endDeflection );
2863 if ( results.isEmpty() )
2867 for (
const QgsGeometry &result : std::as_const( results ) )
2879 std::unique_ptr< QgsLineString > newLine( line->
clone() );
2880 newLine->extend( startDistance, endDistance, startDeflection, endDeflection );
2894 std::unique_ptr< QgsAbstractGeometry > simplifiedGeom(
geos.simplify( tolerance, &mLastError, feedback ) );
2895 if ( !simplifiedGeom )
2898 result.mLastError = mLastError;
2901 return QgsGeometry( std::move( simplifiedGeom ) );
2936 c.get()->dropZValue();
2937 c.get()->dropMValue();
2945 result.mLastError = mLastError;
2960 result.mLastError = mLastError;
2982 result.mLastError = mLastError;
2997 result.mLastError = mLastError;
3005 return std::numeric_limits< double >::quiet_NaN();
3011 return geos.minimumClearance( &mLastError );
3025 result.mLastError = mLastError;
3037 std::unique_ptr< QgsAbstractGeometry > cHull(
geos.convexHull( &mLastError ) );
3041 geom.mLastError = mLastError;
3055 std::unique_ptr< QgsAbstractGeometry >
concaveHull(
geos.concaveHull( targetPercent, allowHoles, &mLastError, feedback ) );
3059 geom.mLastError = mLastError;
3075 geom.mLastError = u
"Only Polygon or MultiPolygon geometries are supported"_s;
3081 std::unique_ptr< QgsAbstractGeometry >
concaveHull(
geos.concaveHullOfPolygons( lengthRatio, allowHoles, isTight, &mLastError, feedback ) );
3085 geom.mLastError = mLastError;
3101 result.mLastError = mLastError;
3115 result.mLastError = mLastError;
3129 result.mLastError = mLastError;
3148 result.mLastError = mLastError;
3161 std::unique_ptr< QgsAbstractGeometry > invalidEdgesGeom;
3165 if ( invalidEdges && invalidEdgesGeom )
3166 *invalidEdges =
QgsGeometry( std::move( invalidEdgesGeom ) );
3180 QgsGeometry result(
geos.simplifyCoverageVW( tolerance, preserveBoundary, &mLastError ) );
3181 result.mLastError = mLastError;
3199 const QgsGeometry result(
geos.cleanCoverage( parameters, &mLastError, feedback ) );
3200 result.mLastError = mLastError;
3214 result.mLastError = mLastError;
3228 result.mLastError = mLastError;
3240 std::unique_ptr< QgsAbstractGeometry > segmentizedCopy;
3243 segmentizedCopy.reset( d->geometry->segmentize() );
3244 geom = segmentizedCopy.get();
3249 std::unique_ptr< QgsAbstractGeometry > result(
geos.subdivide( maxNodes, &mLastError, parameters, feedback ) );
3253 geom.mLastError = mLastError;
3278 for (
int part = 0; part < collection->numGeometries(); ++part )
3283 const double candidateLength = candidate->
length();
3324 return geos.lineLocatePoint( *(
static_cast< QgsPoint *
>( point.d->
geometry.get() ) ), &mLastError );
3329 if ( !d->geometry || d->geometry->isEmpty() )
3348 if ( previous == next )
3387 if ( !d->geometry || geometry.
isNull() )
3395 std::unique_ptr< QgsAbstractGeometry > resultGeom(
geos.intersection( geometry.d->
geometry.get(), &mLastError, parameters, feedback ) );
3400 geom.mLastError = mLastError;
3409 if ( !d->geometry || geometry.
isNull() )
3416 std::unique_ptr< QgsAbstractGeometry > resultGeom(
geos.combine( geometry.d->
geometry.get(), &mLastError, parameters, feedback ) );
3420 geom.mLastError = mLastError;
3442 result.mLastError = mLastError;
3448 if ( !d->geometry || geometry.
isNull() )
3456 std::unique_ptr< QgsAbstractGeometry > resultGeom(
geos.difference( geometry.d->
geometry.get(), &mLastError, parameters, feedback ) );
3460 geom.mLastError = mLastError;
3468 if ( !d->geometry || geometry.
isNull() )
3476 std::unique_ptr< QgsAbstractGeometry > resultGeom(
geos.symDifference( geometry.d->
geometry.get(), &mLastError, parameters, feedback ) );
3480 geom.mLastError = mLastError;
3490 return engine.
extrude( x, y );
3498 return QVector< QgsPointXY >();
3501 const QVector<QgsPointXY> res = engine.randomPointsInPolygon( count, acceptPoint, seed, feedback, maxTriesPerPoint );
3502 mLastError = engine.lastError();
3509 return QVector< QgsPointXY >();
3512 const QVector<QgsPointXY> res = engine.randomPointsInPolygon( count, [](
const QgsPointXY & ) {
return true; }, seed, feedback, 0 );
3513 mLastError = engine.lastError();
3520 return d->geometry ? d->geometry->wkbSize( flags ) : 0;
3525 return d->geometry ? d->geometry->asWkb( flags ) : QByteArray();
3530 QVector<QgsGeometry> geometryList;
3533 return geometryList;
3540 geometryList.reserve( numGeom );
3541 for (
int i = 0; i < numGeom; ++i )
3548 geometryList.append( *
this );
3551 return geometryList;
3567 if ( collection->numGeometries() > 0 )
3568 part = collection->geometryN( 0 );
3574 return curve->asQPolygonF();
3576 return polygon->exteriorRing() ? polygon->exteriorRing()->asQPolygonF() : QPolygonF();
3619 bool haveInvalidGeometry =
false;
3620 bool geomModified =
false;
3625 reset( std::move( diffGeom ) );
3626 geomModified =
true;
3629 if ( geomTypeBeforeModification !=
wkbType() )
3631 if ( haveInvalidGeometry )
3633 if ( !geomModified )
3678 std::unique_ptr< QgsAbstractGeometry > g(
geos.makeValid( method, keepCollapsed, &mLastError, feedback ) );
3681 result.mLastError = mLastError;
3732 std::unique_ptr< QgsCurvePolygon > corrected( cp->clone() );
3733 corrected->forceClockwise();
3734 newCollection->addGeometry( corrected.release() );
3738 newCollection->addGeometry( g->
clone() );
3747 std::unique_ptr< QgsCurvePolygon > corrected( cp->clone() );
3748 corrected->forceClockwise();
3774 std::unique_ptr< QgsCurvePolygon > corrected( cp->clone() );
3775 corrected->forceCounterClockwise();
3776 newCollection->addGeometry( corrected.release() );
3780 newCollection->addGeometry( g->
clone() );
3789 std::unique_ptr< QgsCurvePolygon > corrected( cp->clone() );
3790 corrected->forceCounterClockwise();
3845 const QgsSfcgalGeometry sfcgalGeom( d->geometry.get() );
3846 if ( !QgsSfcgalEngine::isValid( sfcgalGeom.sfcgalGeometry().get(),
nullptr, &errorMsg, &errorLoc ) )
3860 throw QgsNotSupportedException( u
"This operation requires a QGIS installation with SFCGAL support enabled. Please use a version of QGIS that includes SFCGAL."_s );
3874 d->geometry->normalize();
3884 return d->geometry->isValid( mLastError, flags );
3894 return geos.isSimple( &mLastError );
3916 if ( !d->geometry || g.
isNull() )
3936 return *d->geometry == *g.d->
geometry;
3939 if ( d->geometry->boundingBox() != g.d->
geometry->boundingBox() )
3944 return geos.isFuzzyEqual( g.d->
geometry.get(), 1e-8, &mLastError );
3950 if ( ( !d->geometry->is3D() && d->geometry->boundingBox() != g.d->
geometry->boundingBox() ) || ( d->geometry->is3D() && d->geometry->boundingBox3D() != g.d->
geometry->boundingBox3D() ) )
3954 return *d->geometry == *g.d->
geometry;
3962 if ( !d->geometry || !g.d->
geometry )
3981 if ( d->geometry->boundingBox() != g.d->
geometry->boundingBox() )
3985 return geos.isEqual( g.d->
geometry.get(), &mLastError );
3996 if ( !d->geometry || g.
isNull() )
4015 return geos.isFuzzyEqual( g.d->
geometry.get(), epsilon, &mLastError );
4021 return d->geometry->fuzzyEqual( *g.d->
geometry, epsilon );
4032 std::unique_ptr< QgsAbstractGeometry > geom(
geos.combine( geometries, &error, parameters, feedback ) );
4034 result.mLastError = error;
4040 QVector<const QgsAbstractGeometry *> geomV2List;
4043 if ( !( g.isNull() ) )
4045 geomV2List.append( g.constGet() );
4051 result.mLastError = error;
4062 std::unique_ptr< QgsAbstractGeometry > straightGeom( d->geometry->segmentize( tolerance, toleranceType ) );
4063 reset( std::move( straightGeom ) );
4073 return d->geometry->hasCurvedSegments();
4084 d->geometry->transform( ct, direction, transformZ );
4096 d->geometry->transform( ct, zTranslate, zScale, mTranslate, mScale );
4105 d->geometry->transform( mtp.
transform() );
4111 if ( !d->geometry || rectangle.
isNull() || rectangle.
isEmpty() )
4118 std::unique_ptr< QgsAbstractGeometry > resultGeom =
geos.clip( rectangle, &mLastError, feedback );
4122 result.mLastError = mLastError;
4132 d->geometry->draw( p );
4136static bool vertexIndexInfo(
const QgsAbstractGeometry *g,
int vertexIndex,
int &partIndex,
int &ringIndex,
int &vertex )
4138 if ( vertexIndex < 0 )
4144 for (
int i = 0; i < geomCollection->numGeometries(); ++i )
4150 for (
int k = 0; k < part->
ringCount(); ++k )
4153 if ( vertexIndex < numPoints )
4156 return vertexIndexInfo( part, vertexIndex, nothing, ringIndex, vertex );
4158 vertexIndex -= numPoints;
4166 for (
int i = 0; i < polySurface->numPatches(); ++i )
4168 const QgsPolygon *patch = polySurface->patchN( i );
4171 for (
int k = 0; k < patch->
ringCount(); ++k )
4174 if ( vertexIndex < numPoints )
4177 return vertexIndexInfo( patch, vertexIndex, nothing, ringIndex, vertex );
4179 vertexIndex -= numPoints;
4185 const QgsCurve *ring = curvePolygon->exteriorRing();
4186 if ( vertexIndex < ring->numPoints() )
4190 vertex = vertexIndex;
4195 for (
int i = 0; i < curvePolygon->numInteriorRings(); ++i )
4197 const QgsCurve *ring = curvePolygon->interiorRing( i );
4198 if ( vertexIndex < ring->numPoints() )
4201 vertex = vertexIndex;
4210 if ( vertexIndex < curve->numPoints() )
4214 vertex = vertexIndex;
4220 if ( vertexIndex == 0 )
4241 bool res = vertexIndexInfo( d->geometry.get(), nr,
id.part,
id.ring,
id.vertex );
4249 g = geomCollection->geometryN(
id.part );
4253 g = polySurface->patchN(
id.part );
4258 g =
id.ring == 0 ? curvePolygon->exteriorRing() : curvePolygon->interiorRing(
id.ring - 1 );
4264 res = curve->pointAt(
id.vertex, p,
id.
type );
4293 d->geometry->filterVertices( filter );
4303 d->geometry->transformVertices(
transform );
4331 std::unique_ptr< QgsLineString > segmentizedLine;
4333 if ( doSegmentation )
4336 line = segmentizedLine.get();
4348 res.resize( nVertices );
4349 QgsPointXY *data = res.data();
4350 const double *xData = line->
xData();
4351 const double *yData = line->
yData();
4352 for (
int i = 0; i < nVertices; ++i )
4354 data->
setX( *xData++ );
4355 data->
setY( *yData++ );
4363 output.push_back( convertRing( exterior ) );
4367 output.reserve( output.size() + interiorRingCount );
4368 for (
int n = 0; n < interiorRingCount; ++n )
4370 output.push_back( convertRing( input.
interiorRing( n ) ) );
4376 return QgsGeometry( std::make_unique< QgsPoint >( point.x(), point.y() ) );
4383 if ( polygon.isClosed() )
4385 auto poly = std::make_unique< QgsPolygon >();
4386 poly->setExteriorRing( ring.release() );
4407 result.reserve( polygon.count() );
4408 for (
const QPointF &p : polygon )
4417 if ( p1.count() != p2.count() )
4420 for (
int i = 0; i < p1.count(); ++i )
4422 if ( !p1.at( i ).compare( p2.at( i ), epsilon ) )
4430 if ( p1.count() != p2.count() )
4433 for (
int i = 0; i < p1.count(); ++i )
4444 if ( p1.count() != p2.count() )
4447 for (
int i = 0; i < p1.count(); ++i )
4457 if ( !d->geometry || d->geometry->isEmpty() )
4474 return QgsGeometry( smoothLine( *lineString, iterations, offset, minimumDistance, maxAngle ) );
4481 auto resultMultiline = std::make_unique< QgsMultiLineString>();
4482 resultMultiline->reserve( inputMultiLine->
numGeometries() );
4485 resultMultiline->addGeometry( smoothLine( *( inputMultiLine->
lineStringN( i ) ), iterations, offset, minimumDistance, maxAngle ).release() );
4487 return QgsGeometry( std::move( resultMultiline ) );
4493 return QgsGeometry( smoothPolygon( *poly, iterations, offset, minimumDistance, maxAngle ) );
4500 auto resultMultiPoly = std::make_unique< QgsMultiPolygon >();
4501 resultMultiPoly->reserve( inputMultiPoly->
numGeometries() );
4504 resultMultiPoly->addGeometry( smoothPolygon( *( inputMultiPoly->
polygonN( i ) ), iterations, offset, minimumDistance, maxAngle ).release() );
4506 return QgsGeometry( std::move( resultMultiPoly ) );
4515std::unique_ptr< QgsLineString >
smoothCurve(
const QgsLineString &line,
const unsigned int iterations,
const double offset,
double squareDistThreshold,
double maxAngleRads,
bool isRing )
4517 auto result = std::make_unique< QgsLineString >( line );
4519 for (
unsigned int iteration = 0; iteration < iterations; ++iteration )
4521 outputLine.resize( 0 );
4522 outputLine.reserve( 2 * ( result->numPoints() - 1 ) );
4523 bool skipFirst =
false;
4524 bool skipLast =
false;
4527 QgsPoint p1 = result->pointN( result->numPoints() - 2 );
4531 angle = std::fabs( M_PI - angle );
4532 skipFirst = angle > maxAngleRads;
4534 for (
int i = 0; i < result->numPoints() - 1; i++ )
4537 QgsPoint p2 = result->pointN( i + 1 );
4539 double angle = M_PI;
4540 if ( i == 0 && isRing )
4542 QgsPoint p3 = result->pointN( result->numPoints() - 2 );
4545 else if ( i < result->numPoints() - 2 )
4547 QgsPoint p3 = result->pointN( i + 2 );
4550 else if ( i == result->numPoints() - 2 && isRing )
4556 skipLast = angle < M_PI - maxAngleRads || angle > M_PI + maxAngleRads;
4583 skipFirst = skipLast;
4586 if ( isRing && outputLine.at( 0 ) != outputLine.at( outputLine.count() - 1 ) )
4587 outputLine << outputLine.at( 0 );
4589 result->setPoints( outputLine );
4594std::unique_ptr<QgsLineString> QgsGeometry::smoothLine(
const QgsLineString &line,
const unsigned int iterations,
const double offset,
double minimumDistance,
double maxAngle )
const
4596 double maxAngleRads = maxAngle * M_PI / 180.0;
4597 double squareDistThreshold = minimumDistance > 0 ? minimumDistance * minimumDistance : -1;
4598 return smoothCurve( line, iterations, offset, squareDistThreshold, maxAngleRads,
false );
4601std::unique_ptr<QgsPolygon> QgsGeometry::smoothPolygon(
const QgsPolygon &polygon,
const unsigned int iterations,
const double offset,
double minimumDistance,
double maxAngle )
const
4603 double maxAngleRads = maxAngle * M_PI / 180.0;
4604 double squareDistThreshold = minimumDistance > 0 ? minimumDistance * minimumDistance : -1;
4605 auto resultPoly = std::make_unique< QgsPolygon >();
4607 resultPoly->setExteriorRing(
smoothCurve( *(
static_cast< const QgsLineString *
>( polygon.
exteriorRing() ) ), iterations, offset, squareDistThreshold, maxAngleRads,
true ).release() );
4611 resultPoly->addInteriorRing(
smoothCurve( *(
static_cast< const QgsLineString *
>( polygon.
interiorRing( i ) ) ), iterations, offset, squareDistThreshold, maxAngleRads,
true ).release() );
4616QgsGeometry QgsGeometry::convertToPoint(
bool destMultipart )
const
4624 if ( ( destMultipart && srcIsMultipart ) || ( !destMultipart && !srcIsMultipart ) )
4629 if ( destMultipart )
4638 if ( multiPoint.count() == 1 )
4649 if ( !destMultipart )
4658 for (
const QgsPointXY &p : l )
4666 if ( !line.isEmpty() )
4675 if ( !destMultipart )
4685 for (
const QgsPointXY &pt : line )
4695 for (
const QgsPointXY &pt : line )
4706QgsGeometry QgsGeometry::convertToLine(
bool destMultipart )
const
4716 if ( multiPoint.count() < 2 )
4719 if ( destMultipart )
4729 if ( ( destMultipart && srcIsMultipart ) || ( !destMultipart && !srcIsMultipart ) )
4734 if ( destMultipart )
4738 if ( !line.isEmpty() )
4745 if ( inputMultiLine.count() == 1 )
4760 inputMultiLine << line;
4762 if ( destMultipart )
4767 else if ( inputMultiLine.count() == 1 )
4778 if ( polygon.count() > 1 )
4782 if ( destMultipart )
4786 inputMultiLine.reserve( polygon.count() );
4788 inputMultiLine << line;
4793 else if ( polygon.count() == 1 )
4795 if ( destMultipart )
4813QgsGeometry QgsGeometry::convertToPolygon(
bool destMultipart )
const
4823 if ( multiPoint.count() < 3 )
4826 if ( multiPoint.last() != multiPoint.first() )
4827 multiPoint << multiPoint.first();
4830 if ( destMultipart )
4843 for ( QgsMultiPolylineXY::iterator multiLineIt = inputMultiLine.begin(); multiLineIt != inputMultiLine.end(); ++multiLineIt )
4846 if ( ( *multiLineIt ).count() < 3 )
4848 if ( ( *multiLineIt ).count() == 3 && ( *multiLineIt ).first() == ( *multiLineIt ).last() )
4852 if ( ( *multiLineIt ).first() != ( *multiLineIt ).last() )
4853 *multiLineIt << ( *multiLineIt ).first();
4857 if ( !multiPolygon.isEmpty() )
4859 if ( destMultipart )
4863 else if ( multiPolygon.count() == 1 )
4876 if ( line.count() < 3 )
4878 if ( line.count() == 3 && line.first() == line.last() )
4882 if ( line.first() != line.last() )
4883 line << line.first();
4886 if ( destMultipart )
4902 if ( ( destMultipart && srcIsMultipart ) || ( !destMultipart && !srcIsMultipart ) )
4907 if ( destMultipart )
4911 if ( !polygon.isEmpty() )
4917 if ( multiPolygon.count() == 1 )
4933 return new QgsGeos( geometry, precision, flags );
4938 out << geometry.
asWkb();
4944 QByteArray byteArray;
4946 if ( byteArray.isEmpty() )
4948 geometry.
set(
nullptr );
4952 geometry.
fromWkb( byteArray );
4969 return mHasLocation;
4977 mLastError = u
"Operation '%1' needs non-null geometry."_s.arg(
qgsEnumValueToKey( op ) );
4983 int modifiedPart = -1;
4984 int modifiedRing = -1;
4988 mLastError = u
"Invalid vertex index"_s;
4991 int resolvedVertexIndex = vertexId.
vertex;
4992 QgsMultiLineString *inputMultiLine =
nullptr;
4993 QgsMultiPolygon *inputMultiPoly =
nullptr;
5000 modifiedPart = vertexId.
part;
5003 curve =
dynamic_cast<QgsCurve *
>( inputMultiLine->
lineStringN( modifiedPart ) );
5007 curve =
dynamic_cast<QgsCurve *
>( d->geometry.get() );
5012 QgsPolygon *poly =
nullptr;
5015 modifiedPart = vertexId.
part;
5018 poly = inputMultiPoly->
polygonN( modifiedPart );
5026 mLastError = u
"Could not get polygon geometry."_s;
5031 modifiedRing = vertexId.
ring;
5032 if ( modifiedRing == 0 )
5042 mLastError = u
"Operation '%1' needs curve geometry."_s.arg(
qgsEnumValueToKey( op ) );
5046 std::unique_ptr<QgsAbstractGeometry> result;
5054 catch ( QgsInvalidArgumentException &e )
5056 mLastError = u
"%1 Requested vertex: %2 was resolved as: [part: %3, ring: %4, vertex: %5]"_s
5059 .arg( modifiedPart )
5060 .arg( modifiedRing )
5061 .arg( resolvedVertexIndex );
5067 mLastError = u
"Operation '%1' generates a null geometry."_s.arg(
qgsEnumValueToKey( op ) );
5071 if ( result->isEmpty() )
5075 auto updatePolygon = [](
const QgsPolygon *inputPoly, QgsAbstractGeometry *result,
int modifiedRing ) -> std::unique_ptr<QgsPolygon> {
5076 auto newPoly = std::make_unique<QgsPolygon>();
5077 for (
int ringIndex = 0; ringIndex < inputPoly->
numInteriorRings() + 1; ++ringIndex )
5079 if ( ringIndex == modifiedRing )
5081 for ( QgsAbstractGeometry::part_iterator resPartIte = result->parts_begin(); resPartIte != result->parts_end(); ++resPartIte )
5083 if ( ringIndex == 0 && resPartIte == result->parts_begin() )
5091 if ( ringIndex == 0 )
5100 std::unique_ptr<QgsAbstractGeometry> finalGeom;
5103 if ( modifiedPart >= 0 )
5105 auto newMultiLine = std::make_unique<QgsMultiLineString>();
5107 for ( QgsMultiLineString::part_iterator partIte = inputMultiLine->
parts_begin(); partIte != inputMultiLine->
parts_end(); ++partIte )
5109 if ( partIndex == modifiedPart )
5111 for ( QgsAbstractGeometry::part_iterator resPartIte = result->parts_begin(); resPartIte != result->parts_end(); ++resPartIte )
5113 newMultiLine->addGeometry( ( *resPartIte )->clone() );
5118 newMultiLine->addGeometry( ( *partIte )->clone() );
5122 finalGeom = std::move( newMultiLine );
5127 finalGeom = std::move( result );
5133 if ( modifiedPart >= 0 )
5135 auto newMultiPoly = std::make_unique<QgsMultiPolygon>();
5137 for ( QgsAbstractGeometry::part_iterator partIte = inputMultiPoly->
parts_begin(); partIte != inputMultiPoly->
parts_end(); ++partIte )
5139 if ( partIndex == modifiedPart )
5142 newMultiPoly->addGeometry( newPoly.release() );
5146 newMultiPoly->addGeometry( ( *partIte )->clone() );
5150 finalGeom.reset(
dynamic_cast<QgsAbstractGeometry *
>( newMultiPoly.release() ) );
5155 finalGeom = std::move( newPoly );
5159 QgsGeometry finalResult( std::move( finalGeom ) );
5161 QgsDebugMsgLevel( u
"Final result Wkt: %1"_s.arg( finalResult.asWkt( 2 ) ), 3 );
GeometryBackend
Geometry backend for QgsGeometry.
@ GEOS
Use GEOS implementation.
@ QGIS
Use internal implementation.
@ AllowSelfTouchingHoles
Indicates that self-touching holes are permitted. OGC validity states that self-touching holes are NO...
BufferSide
Side of line to buffer.
DashPatternSizeAdjustment
Dash pattern size adjustment options.
AngularDirection
Angular directions.
@ NoOrientation
Unknown orientation or sentinel value.
GeometryOperationResult
Success or failure of a geometry operation.
@ AddPartSelectedGeometryNotFound
The selected geometry cannot be found.
@ InvalidInputGeometryType
The input geometry (ring, part, split line, etc.) has not the correct geometry type.
@ Success
Operation succeeded.
@ SelectionIsEmpty
No features were selected.
@ GeometryTypeHasChanged
Operation has changed geometry type.
@ AddRingNotInExistingFeature
The input ring doesn't have any existing ring to fit into.
@ AddRingCrossesExistingRings
The input ring crosses existing rings (it is not disjoint).
@ AddPartNotMultiGeometry
The source geometry is not multi.
@ AddRingNotClosed
The input ring is not closed.
@ SelectionIsGreaterThanOne
More than one features were selected.
@ SplitCannotSplitPoint
Cannot split points.
@ GeometryEngineError
Geometry engine misses a method implemented or an error occurred in the geometry engine.
@ NothingHappened
Nothing happened, without any error.
@ InvalidBaseGeometry
The base geometry on which the operation is done is invalid or empty.
@ LayerNotEditable
Cannot edit layer.
@ AddRingNotValid
The input ring is not valid.
QFlags< GeometryValidityFlag > GeometryValidityFlags
Geometry validity flags.
@ Segment
The actual start or end point of a segment.
GeometryValidationEngine
Available engines for validating geometries.
@ QgisInternal
Use internal QgsGeometryValidator method.
@ Sfcgal
Use SFCGAL validation methods. Only available for QGIS builds with SFCGAL support enabled.
@ Geos
Use GEOS validation methods.
QFlags< GeosCreationFlag > GeosCreationFlags
Geos geometry creation behavior flags.
GeoJsonProfile
GeoJson export Profile according to OGC Features and Geometries JSON - Part 1: Core https://docs....
@ Rfc7946
GeoJson profile compliant with RFC7946 standard "http://www.opengis.net/def/profile/OGC/0/rfc7946".
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
JoinStyle
Join styles for buffers.
EndCapStyle
End cap styles for buffers.
CoverageValidityResult
Coverage validity results.
@ Error
An exception occurred while determining validity.
DashPatternLineEndingRule
Dash pattern line ending rules.
MakeValidMethod
Algorithms to use when repairing invalid geometries.
WkbType
The WKB type describes the number of dimensions a geometry has.
@ CompoundCurve
CompoundCurve.
@ MultiPolygon
MultiPolygon.
@ MultiLineString
MultiLineString.
@ CircularString
CircularString.
@ GeometryCollection
GeometryCollection.
@ CurvePolygon
CurvePolygon.
@ PolyhedralSurface
PolyhedralSurface.
@ MultiSurface
MultiSurface.
TransformDirection
Indicates the direction (forward or inverse) of a transform.
The part_iterator class provides an STL-style iterator for const references to geometry parts.
The part_iterator class provides an STL-style iterator for geometry parts.
The vertex_iterator class provides an STL-style iterator for vertices.
Abstract base class for all geometries.
virtual int ringCount(int part=0) const =0
Returns the number of rings of which this geometry is built.
virtual bool addZValue(double zValue=0)=0
Adds a z-dimension to the geometry, initialized to a preset value.
virtual bool moveVertex(QgsVertexId position, const QgsPoint &newPos)=0
Moves a vertex within the geometry.
SegmentationToleranceType
Segmentation tolerance as maximum angle or maximum difference between approximation and circle.
virtual int vertexNumberFromVertexId(QgsVertexId id) const =0
Returns the vertex number corresponding to a vertex id.
virtual QgsAbstractGeometry * boundary() const =0
Returns the closure of the combinatorial boundary of the geometry (ie the topological boundary of the...
virtual bool dropMValue()=0
Drops any measure values which exist in the geometry.
virtual const QgsAbstractGeometry * simplifiedTypeRef() const
Returns a reference to the simplest lossless representation of this geometry, e.g.
virtual QgsAbstractGeometry * segmentize(double tolerance=M_PI/180., SegmentationToleranceType toleranceType=MaximumAngle) const
Returns a version of the geometry without curves.
virtual int vertexCount(int part=0, int ring=0) const =0
Returns the number of vertices of which this geometry is built.
bool isMeasure() const
Returns true if the geometry contains m values.
QFlags< WkbFlag > WkbFlags
virtual QgsRectangle boundingBox() const
Returns the minimal bounding box for the geometry.
bool is3D() const
Returns true if the geometry is 3D and contains a z-value.
virtual QgsPoint vertexAt(QgsVertexId id) const =0
Returns the point corresponding to a specified vertex id.
virtual void adjacentVertices(QgsVertexId vertex, QgsVertexId &previousVertex, QgsVertexId &nextVertex) const =0
Returns the vertices adjacent to a specified vertex within a geometry.
virtual bool addMValue(double mValue=0)=0
Adds a measure to the geometry, initialized to a preset value.
Qgis::WkbType wkbType() const
Returns the WKB type 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 length() const
Returns the planar, 2-dimensional length of the geometry.
virtual bool deleteVertex(QgsVertexId position)=0
Deletes a vertex within the geometry.
virtual bool dropZValue()=0
Drops any z-dimensions which exist in the geometry.
virtual int dimension() const =0
Returns the inherent dimension of the geometry.
part_iterator parts_begin()
Returns STL-style iterator pointing to the first part of the geometry.
virtual QgsAbstractGeometry * clone() const =0
Clones the geometry by performing a deep copy.
A 3-dimensional box composed of x, y, z coordinates.
double yMaximum() const
Returns the maximum y value.
double xMinimum() const
Returns the minimum x value.
double zMaximum() const
Returns the maximum z value.
double xMaximum() const
Returns the maximum x value.
QgsRectangle toRectangle() const
Converts the box to a 2D rectangle.
bool is2d() const
Returns true if the box can be considered a 2-dimensional box, i.e.
double zMinimum() const
Returns the minimum z value.
double yMinimum() const
Returns the minimum y value.
static QgsCircle from2Points(const QgsPoint &pt1, const QgsPoint &pt2)
Constructs a circle by 2 points on the circle.
double radius() const
Returns the radius of the circle.
std::unique_ptr< QgsCircularString > toCircularString(bool oriented=false) const
Returns a circular string from the circle.
bool contains(const QgsPoint &point, double epsilon=1E-8) const
Returns true if the circle contains the point.
static QgsCircle minimalCircleFrom3Points(const QgsPoint &pt1, const QgsPoint &pt2, const QgsPoint &pt3, double epsilon=1E-8)
Constructs the smallest circle from 3 points.
Circular string geometry type.
static QgsCircularString fromTwoPointsAndCenter(const QgsPoint &p1, const QgsPoint &p2, const QgsPoint ¢er, bool useShortestArc=true)
Creates a circular string with a single arc representing the curve from p1 to p2 with the specified c...
Compound curve geometry type.
bool toggleCircularAtVertex(QgsVertexId position)
Converts the vertex at the given position from/to circular.
void addCurve(QgsCurve *c, bool extendPrevious=false)
Adds a curve to the geometry (takes ownership).
Encapsulates parameters for a coverage cleaning operation.
Curve polygon geometry type.
int numInteriorRings() const
Returns the number of interior rings contained with the curve polygon.
const QgsCurve * exteriorRing() const
Returns the curve polygon's exterior ring.
int vertexCount(int part=0, int ring=0) const override
Returns the number of vertices of which this geometry is built.
virtual QgsPolygon * toPolygon(double tolerance=M_PI_2/90, SegmentationToleranceType toleranceType=MaximumAngle) const
Returns a new polygon geometry corresponding to a segmentized approximation of the curve.
const QgsCurve * interiorRing(int i) const
Retrieves an interior ring from the curve polygon.
virtual void setExteriorRing(QgsCurve *ring)
Sets the exterior ring of the polygon.
virtual void addInteriorRing(QgsCurve *ring)
Adds an interior ring to the geometry (takes ownership).
int ringCount(int part=0) const override
Returns the number of rings of which this geometry is built.
bool removeInteriorRing(int ringIndex)
Removes an interior ring from the polygon.
Abstract base class for curved geometry type.
virtual int numPoints() const =0
Returns the number of points in the curve.
QgsCurve * segmentize(double tolerance=M_PI_2/90, SegmentationToleranceType toleranceType=MaximumAngle) const override
Returns a geometry without curves.
virtual QgsPoint * interpolatePoint(double distance) const =0
Returns an interpolated point on the curve at the specified distance.
QgsCurve * clone() const override=0
Clones the geometry by performing a deep copy.
virtual QgsLineString * curveToLine(double tolerance=M_PI_2/90, SegmentationToleranceType toleranceType=MaximumAngle) const =0
Returns a new line string geometry corresponding to a segmentized approximation of the curve.
virtual QgsPolygon * toPolygon(unsigned int segments=36) const
Returns a segmented polygon.
QgsPoint center() const
Returns the center point.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
virtual bool insertGeometry(QgsAbstractGeometry *g, int index)
Inserts a geometry before a specified index and takes ownership.
virtual bool removeGeometry(int nr)
Removes a geometry from the collection.
QgsGeometryCollection * createEmptyWithSameType() const override
Creates a new geometry with the same class and same WKB type as the original and transfers ownership.
virtual bool addGeometry(QgsAbstractGeometry *g)
Adds a geometry and takes ownership. Returns true in case of success.
int partCount() const override
Returns count of parts contained in the geometry.
int numGeometries() const
Returns the number of geometries within the collection.
const QgsAbstractGeometry * geometryN(int n) const
Returns a const reference to a geometry from within the collection.
Java-style iterator for const traversal of parts of a geometry.
static Qgis::GeometryOperationResult addRing(QgsAbstractGeometry *geometry, std::unique_ptr< QgsCurve > ring)
Add an interior ring to a geometry.
static std::unique_ptr< QgsAbstractGeometry > avoidIntersections(const QgsAbstractGeometry &geom, const QList< QgsVectorLayer * > &avoidIntersectionsLayers, bool &haveInvalidGeometry, const QHash< QgsVectorLayer *, QSet< QgsFeatureId > > &ignoreFeatures=(QHash< QgsVectorLayer *, QSet< QgsFeatureId > >()))
Alters a geometry so that it avoids intersections with features from all open vector layers.
static bool deletePart(QgsAbstractGeometry *geom, int partNum)
Deletes a part from a geometry.
static bool deleteRing(QgsAbstractGeometry *geom, int ringNum, int partNum=0)
Deletes a ring from a geometry.
static Qgis::GeometryOperationResult addPart(QgsAbstractGeometry *geometry, std::unique_ptr< QgsAbstractGeometry > part)
Add a part to multi type geometry.
A geometry engine is a low-level representation of a QgsAbstractGeometry object, optimised for use wi...
EngineOperationResult
Success or failure of a geometry operation.
@ NothingHappened
Nothing happened, without any error.
@ InvalidBaseGeometry
The geometry on which the operation occurs is not valid.
@ InvalidInput
The input is not valid.
@ NodedGeometryError
Error occurred while creating a noded geometry.
@ EngineError
Error occurred in the geometry engine.
@ SplitCannotSplitPoint
Points cannot be split.
@ Success
Operation succeeded.
@ MethodNotImplemented
Method not implemented in geometry engine.
static std::unique_ptr< QgsMultiPolygon > fromMultiPolygonXY(const QgsMultiPolygonXY &multipoly)
Construct geometry from a multipolygon.
static std::unique_ptr< QgsAbstractGeometry > geomFromWkb(QgsConstWkbPtr &wkb)
Construct geometry from a WKB string.
static std::unique_ptr< QgsGeometryCollection > createCollectionOfType(Qgis::WkbType type)
Returns a new geometry collection matching a specified WKB type.
static std::unique_ptr< QgsAbstractGeometry > fromPolylineXY(const QgsPolylineXY &polyline)
Construct geometry from a polyline.
static std::unique_ptr< QgsMultiPoint > fromMultiPointXY(const QgsMultiPointXY &multipoint)
Construct geometry from a multipoint.
static std::unique_ptr< QgsAbstractGeometry > geomFromWkt(const QString &text)
Construct geometry from a WKT string.
static std::unique_ptr< QgsMultiLineString > fromMultiPolylineXY(const QgsMultiPolylineXY &multiline)
Construct geometry from a multipolyline.
static std::unique_ptr< QgsAbstractGeometry > fromPointXY(const QgsPointXY &point)
Construct geometry from a point.
static std::unique_ptr< QgsPolygon > fromPolygonXY(const QgsPolygonXY &polygon)
Construct geometry from a polygon.
static std::unique_ptr< QgsAbstractGeometry > geomFromWkbType(Qgis::WkbType t)
Returns empty geometry from wkb type.
Encapsulates parameters under which a geometry operation is performed.
Java-style iterator for traversal of parts of a geometry.
static double angleBetweenThreePoints(double x1, double y1, double x2, double y2, double x3, double y3)
Calculates the angle between the lines AB and BC, where AB and BC described by points a,...
static double lineAngle(double x1, double y1, double x2, double y2)
Calculates the direction of line joining two points in radians, clockwise from the north direction.
static double averageAngle(double x1, double y1, double x2, double y2, double x3, double y3)
Calculates the average angle (in radians) between the two linear segments from (x1,...
static double normalizedAngle(double angle)
Ensures that an angle is in the range 0 <= angle < 2 pi.
static std::unique_ptr< QgsLineString > createChamferGeometry(const QgsPoint &segment1Start, const QgsPoint &segment1End, const QgsPoint &segment2Start, const QgsPoint &segment2End, double distance1, double distance2)
Creates a complete chamfer geometry connecting two segments.
static QgsPointXY interpolatePointOnLine(double x1, double y1, double x2, double y2, double fraction)
Interpolates the position of a point a fraction of the way along the line from (x1,...
static std::unique_ptr< QgsAbstractGeometry > createFilletGeometry(const QgsPoint &segment1Start, const QgsPoint &segment1End, const QgsPoint &segment2Start, const QgsPoint &segment2End, double radius, int segments)
Creates a complete fillet geometry connecting two segments.
static QgsPoint interpolatePointOnSegment(double x, double y, const QgsPoint &segmentStart, const QgsPoint &segmentEnd)
Interpolates a point on a segment with proper Z and M value interpolation.
static bool verticesAtDistance(const QgsAbstractGeometry &geometry, double distance, QgsVertexId &previousVertex, QgsVertexId &nextVertex)
Retrieves the vertices which are before and after the interpolated point at a specified distance alon...
static double distanceToVertex(const QgsAbstractGeometry &geom, QgsVertexId id)
Returns the distance along a geometry from its first vertex to the specified vertex.
static QgsPoint closestVertex(const QgsAbstractGeometry &geom, const QgsPoint &pt, QgsVertexId &id)
Returns the closest vertex to a geometry for a specified point.
static Q_DECL_DEPRECATED double sqrDistance2D(double x1, double y1, double x2, double y2)
Returns the squared 2D distance between (x1, y1) and (x2, y2).
static std::unique_ptr< QgsAbstractGeometry > chamferVertex(const QgsCurve *curve, int vertexIndex, double distance1, double distance2)
Applies chamfer to a vertex in a curve geometry.
static std::unique_ptr< QgsAbstractGeometry > filletVertex(const QgsCurve *curve, int vertexIndex, double radius, int segments)
Applies fillet to a vertex in a curve geometry.
static void validateGeometry(const QgsGeometry &geometry, QVector< QgsGeometry::Error > &errors, Qgis::GeometryValidationEngine method=Qgis::GeometryValidationEngine::QgisInternal)
Validate geometry and produce a list of geometry errors.
bool hasWhere() const
true if the location available from
QgsPointXY where() const
The coordinates at which the error is located and should be visualized.
QString what() const
A human readable error message containing details about the error.
A geometry is the spatial representation of a feature.
Q_DECL_DEPRECATED QgsGeometry makeDifference(const QgsGeometry &other, QgsFeedback *feedback=nullptr) const
Returns the geometry formed by modifying this geometry such that it does not intersect the other geom...
QPolygonF asQPolygonF() const
Returns contents of the geometry as a QPolygonF.
double closestSegmentWithContext(const QgsPointXY &point, QgsPointXY &minDistPoint, int &nextVertexIndex, int *leftOrRightOfSegment=nullptr, double epsilon=Qgis::DEFAULT_SEGMENT_EPSILON) const
Searches for the closest segment of geometry to the given point.
bool deleteRing(int ringNum, int partNum=0)
Deletes a ring in polygon or multipolygon.
QVector< QgsPointXY > randomPointsInPolygon(int count, const std::function< bool(const QgsPointXY &) > &acceptPoint, unsigned long seed=0, QgsFeedback *feedback=nullptr, int maxTriesPerPoint=0) const
Returns a list of count random points generated inside a (multi)polygon geometry (if acceptPoint is s...
double hausdorffDistanceDensify(const QgsGeometry &geom, double densifyFraction) const
Returns the Hausdorff distance between this geometry and geom.
QgsGeometry densifyByCount(int extraNodesPerSegment) const
Returns a copy of the geometry which has been densified by adding the specified number of extra nodes...
double area3D() const
Returns the 3-dimensional surface area of the geometry.
static QgsGeometry fromRect(const QgsRectangle &rect)
Creates a new geometry from a QgsRectangle.
double lineLocatePoint(const QgsGeometry &point) const
Returns a distance representing the location along this linestring of the closest point on this lines...
QgsGeometry intersection(const QgsGeometry &geometry, const QgsGeometryParameters ¶meters=QgsGeometryParameters(), QgsFeedback *feedback=nullptr) const
Returns a geometry representing the points shared by this geometry and other.
void adjacentVertices(int atVertex, int &beforeVertex, int &afterVertex) const
Returns the indexes of the vertices before and after the given vertex index.
QgsMultiPolygonXY asMultiPolygon() const
Returns the contents of the geometry as a multi-polygon.
QgsGeometry concaveHullOfPolygons(double lengthRatio, bool allowHoles=false, bool isTight=false, QgsFeedback *feedback=nullptr) const
Constructs a concave hull of a set of polygons, respecting the polygons as constraints.
QgsGeometry chamfer(int vertexIndex, double distance1, double distance2=-1.0) const
Creates a chamfer (angled corner) at the specified vertex.
bool deleteVertex(int atVertex)
Deletes the vertex at the given position number and item (first number is index 0).
double length() const
Returns the planar, 2-dimensional length of geometry.
QgsGeometry offsetCurve(double distance, int segments, Qgis::JoinStyle joinStyle, double miterLimit) const
Returns an offset line at a given distance and side from an input line.
static bool compare(const QgsPolylineXY &p1, const QgsPolylineXY &p2, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compares two polylines for equality within a specified tolerance.
QgsVertexIterator vertices() const
Returns a read-only, Java-style iterator for traversal of vertices of all the geometry,...
QgsGeometry densifyByDistance(double distance) const
Densifies the geometry by adding regularly placed extra nodes inside each segment so that the maximum...
ChamferFilletOperationType
Privatly used in chamfer/fillet functions.
QgsGeometry poleOfInaccessibility(double precision, double *distanceToBoundary=nullptr) const
Calculates the approximate pole of inaccessibility for a surface, which is the most distant internal ...
QgsAbstractGeometry::const_part_iterator const_parts_begin() const
Returns STL-style const iterator pointing to the first part of the geometry.
QgsGeometry squareWaves(double wavelength, double amplitude, bool strictWavelength=false) const
Constructs square waves along the boundary of the geometry, with the specified wavelength and amplitu...
QgsGeometry concaveHull(double targetPercent, bool allowHoles=false, QgsFeedback *feedback=nullptr) const
Returns a possibly concave polygon that contains all the points in the geometry.
static QgsGeometry fromQPointF(QPointF point)
Construct geometry from a QPointF.
static QgsGeometry collectTinPatches(const QVector< QgsGeometry > &geometries)
Collects all patches from a list of TIN or Triangle geometries into a single TIN geometry.
static QgsGeometry polygonize(const QVector< QgsGeometry > &geometries)
Creates a GeometryCollection geometry containing possible polygons formed from the constituent linewo...
bool addTopologicalPoint(const QgsPoint &point, double snappingTolerance=1e-8, double segmentSearchEpsilon=1e-12)
Adds a vertex to the segment which intersect point but don't already have a vertex there.
QgsGeometry triangularWaves(double wavelength, double amplitude, bool strictWavelength=false) const
Constructs triangular waves along the boundary of the geometry, with the specified wavelength and amp...
Q_INVOKABLE bool boundingBoxIntersects(const QgsRectangle &rectangle) const
Returns true if the bounding box of this geometry intersects with a rectangle.
bool vertexIdFromVertexNr(int number, QgsVertexId &id) const
Calculates the vertex ID from a vertex number.
QgsGeometry pointOnSurface() const
Returns a point guaranteed to lie on the surface of a geometry.
Q_INVOKABLE bool touches(const QgsGeometry &geometry) const
Returns true if the geometry touches another geometry.
Q_DECL_DEPRECATED int makeDifferenceInPlace(const QgsGeometry &other, QgsFeedback *feedback=nullptr)
Changes this geometry such that it does not intersect the other geometry.
void transformVertices(const std::function< QgsPoint(const QgsPoint &) > &transform)
Transforms the vertices from the geometry in place, applying the transform function to every vertex.
bool isExactlyEqual(const QgsGeometry &geometry, Qgis::GeometryBackend backend=Qgis::GeometryBackend::QGIS) const
Compares the geometry with another geometry using the specified backend.
QgsGeometry minimumWidth() const
Returns a linestring geometry which represents the minimum diameter of the geometry.
QgsGeometry applyDashPattern(const QVector< double > &pattern, Qgis::DashPatternLineEndingRule startRule=Qgis::DashPatternLineEndingRule::NoRule, Qgis::DashPatternLineEndingRule endRule=Qgis::DashPatternLineEndingRule::NoRule, Qgis::DashPatternSizeAdjustment adjustment=Qgis::DashPatternSizeAdjustment::ScaleBothDashAndGap, double patternOffset=0) const
Applies a dash pattern to a geometry, returning a MultiLineString geometry which is the input geometr...
Qgis::CoverageValidityResult validateCoverage(double gapWidth, QgsGeometry *invalidEdges=nullptr) const
Analyze a coverage (represented as a collection of polygonal geometry with exactly matching edge geom...
QgsGeometry roundWaves(double wavelength, double amplitude, bool strictWavelength=false) const
Constructs rounded (sine-like) waves along the boundary of the geometry, with the specified wavelengt...
QgsGeometry nearestPoint(const QgsGeometry &other) const
Returns the nearest (closest) point on this geometry to another geometry.
QgsGeometry simplifyCoverageVW(double tolerance, bool preserveBoundary) const
Operates on a coverage (represented as a list of polygonal geometry with exactly matching edge geomet...
static QgsGeometry collectGeometry(const QVector< QgsGeometry > &geometries)
Creates a new multipart geometry from a list of QgsGeometry objects.
QgsGeometry fillet(int vertexIndex, double radius, int segments=8) const
Creates a fillet (rounded corner) at the specified vertex.
QgsGeometry mergeLines(const QgsGeometryParameters ¶meters=QgsGeometryParameters()) const
Merges any connected lines in a LineString/MultiLineString geometry and converts them to single line ...
static QgsGeometry fromMultiPolylineXY(const QgsMultiPolylineXY &multiline)
Creates a new geometry from a QgsMultiPolylineXY object.
double frechetDistance(const QgsGeometry &geom) const
Returns the Fréchet distance between this geometry and geom, restricted to discrete points for both g...
QString lastError() const
Returns an error string referring to the last error encountered either when this geometry was created...
QgsGeometry convertToType(Qgis::GeometryType destType, bool destMultipart=false) const
Try to convert the geometry to the requested type.
QgsGeometry clipped(const QgsRectangle &rectangle, QgsFeedback *feedback=nullptr)
Clips the geometry using the specified rectangle.
bool isAxisParallelRectangle(double maximumDeviation, bool simpleRectanglesOnly=false) const
Returns true if the geometry is a polygon that is almost an axis-parallel rectangle.
static QgsGeometry fromQPolygonF(const QPolygonF &polygon)
Construct geometry from a QPolygonF.
QgsGeometry variableWidthBufferByM(int segments) const
Calculates a variable width buffer for a (multi)linestring geometry, where the width at each node is ...
Qgis::GeometryOperationResult transform(const QgsCoordinateTransform &ct, Qgis::TransformDirection direction=Qgis::TransformDirection::Forward, bool transformZ=false)
Transforms this geometry as described by the coordinate transform ct.
static QgsGeometry fromPolylineXY(const QgsPolylineXY &polyline)
Creates a new LineString geometry from a list of QgsPointXY points.
QgsMultiPointXY asMultiPoint() const
Returns the contents of the geometry as a multi-point.
QgsPoint vertexAt(int atVertex) const
Returns coordinates of a vertex.
QgsPointXY closestVertex(const QgsPointXY &point, int &closestVertexIndex, int &previousVertexIndex, int &nextVertexIndex, double &sqrDist) const
Returns the vertex closest to the given point, the corresponding vertex index, squared distance snap ...
void normalize()
Reorganizes the geometry into a normalized form (or "canonical" form).
int wkbSize(QgsAbstractGeometry::WkbFlags flags=QgsAbstractGeometry::WkbFlags()) const
Returns the length of the QByteArray returned by asWkb().
QgsPolygonXY asPolygon() const
Returns the contents of the geometry as a polygon.
Q_INVOKABLE bool disjoint(const QgsGeometry &geometry) const
Returns true if the geometry is disjoint of another geometry.
QVector< QgsGeometry > asGeometryCollection() const
Returns contents of the geometry as a list of geometries.
QgsGeometry roundWavesRandomized(double minimumWavelength, double maximumWavelength, double minimumAmplitude, double maximumAmplitude, unsigned long seed=0) const
Constructs randomized rounded (sine-like) waves along the boundary of the geometry,...
double distance(const QgsGeometry &geom) const
Returns the minimum distance between this geometry and another geometry.
QgsGeometry interpolate(double distance) const
Returns an interpolated point on the geometry at the specified distance.
QgsGeometry extrude(double x, double y)
Returns an extruded version of this geometry.
static Q_DECL_DEPRECATED QgsPolylineXY createPolylineFromQPolygonF(const QPolygonF &polygon)
Creates a QgsPolylineXY from a QPolygonF.
void mapToPixel(const QgsMapToPixel &mtp)
Transforms the geometry from map units to pixels in place.
static QgsGeometry fromMultiPointXY(const QgsMultiPointXY &multipoint)
Creates a new geometry from a QgsMultiPointXY object.
virtual json asJsonObject(int precision=17, Qgis::GeoJsonProfile profile=Qgis::GeoJsonProfile::Legacy) const
Exports the geometry to a json object with the give precision and following the specified GeoJSON pro...
QgsGeometry symDifference(const QgsGeometry &geometry, const QgsGeometryParameters ¶meters=QgsGeometryParameters(), QgsFeedback *feedback=nullptr) const
Returns a geometry representing the points making up this geometry that do not make up other.
QgsGeometry singleSidedBuffer(double distance, int segments, Qgis::BufferSide side, Qgis::JoinStyle joinStyle=Qgis::JoinStyle::Round, double miterLimit=2.0) const
Returns a single sided buffer for a (multi)line geometry.
QgsAbstractGeometry * get()
Returns a modifiable (non-const) reference to the underlying abstract geometry primitive.
QgsBox3D boundingBox3D() const
Returns the 3D bounding box of the geometry.
friend class QgsInternalGeometryEngine
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
static Q_INVOKABLE QgsGeometry fromWkt(const QString &wkt)
Creates a new geometry from a WKT string.
bool contains(const QgsPointXY *p) const
Returns true if the geometry contains the point p.
QgsPolylineXY asPolyline() const
Returns the contents of the geometry as a polyline.
QgsAbstractGeometry::part_iterator parts_begin()
Returns STL-style iterator pointing to the first part of the geometry.
QgsGeometry forceRHR() const
Forces geometries to respect the Right-Hand-Rule, in which the area that is bounded by a polygon is t...
QgsPointXY asPoint() const
Returns the contents of the geometry as a 2-dimensional point.
QgsGeometry snappedToGrid(double hSpacing, double vSpacing, double dSpacing=0, double mSpacing=0) const
Returns a new geometry with all points or vertices snapped to the closest point of the grid.
void filterVertices(const std::function< bool(const QgsPoint &) > &filter)
Filters the vertices from the geometry in place, removing any which do not return true for the filter...
Q_DECL_DEPRECATED bool equals(const QgsGeometry &geometry) const
Test if this geometry is exactly equal to another geometry.
bool isGeosValid(Qgis::GeometryValidityFlags flags=Qgis::GeometryValidityFlags()) const
Checks validity of the geometry using GEOS.
bool insertVertex(double x, double y, int beforeVertex)
Insert a new vertex before the given vertex index, ring and item (first number is index 0) If the req...
static QgsGeometry fromPointXY(const QgsPointXY &point)
Creates a new geometry from a QgsPointXY object.
QgsGeometry subdivide(int maxNodes=256, const QgsGeometryParameters ¶meters=QgsGeometryParameters(), QgsFeedback *feedback=nullptr) const
Subdivides the geometry.
static Q_DECL_DEPRECATED QgsPolygonXY createPolygonFromQPolygonF(const QPolygonF &polygon)
Creates a QgsPolygonXYfrom a QPolygonF.
bool convertToSingleType()
Converts multi type geometry into single type geometry e.g.
Qgis::GeometryOperationResult addRing(const QVector< QgsPointXY > &ring)
Adds a new ring to this geometry.
QgsGeometry extendLine(double startDistance, double endDistance, double startDeflection=0, double endDeflection=0) const
Extends a (multi)line geometry by extrapolating out the start or end of the line by a specified dista...
bool requiresConversionToStraightSegments() const
Returns true if the geometry is a curved geometry type which requires conversion to display as straig...
bool isSimple() const
Determines whether the geometry is simple (according to OGC definition), i.e.
static QgsGeometry fromPolyline(const QgsPolyline &polyline)
Creates a new LineString geometry from a list of QgsPoint points.
void validateGeometry(QVector< QgsGeometry::Error > &errors, Qgis::GeometryValidationEngine method=Qgis::GeometryValidationEngine::QgisInternal, Qgis::GeometryValidityFlags flags=Qgis::GeometryValidityFlags()) const
Validates geometry and produces a list of geometry errors.
QgsMultiPolylineXY asMultiPolyline() const
Returns the contents of the geometry as a multi-linestring.
QgsGeometry taperedBuffer(double startWidth, double endWidth, int segments) const
Calculates a variable width buffer ("tapered buffer") for a (multi)curve geometry.
Qgis::GeometryOperationResult avoidIntersectionsV2(const QList< QgsVectorLayer * > &avoidIntersectionsLayers, const QHash< QgsVectorLayer *, QSet< QgsFeatureId > > &ignoreFeatures=(QHash< QgsVectorLayer *, QSet< QgsFeatureId > >()))
Modifies geometry to avoid intersections with the layers specified in project properties.
Q_INVOKABLE bool within(const QgsGeometry &geometry) const
Returns true if the geometry is completely within another geometry.
QPointF asQPointF() const
Returns contents of the geometry as a QPointF if wkbType is WKBPoint, otherwise returns a null QPoint...
QString asGeoJson(int precision=17, Qgis::GeoJsonProfile profile=Qgis::GeoJsonProfile::Legacy) const
Export the geometry to a GeoJSON string, with the given precision and following the specified GeoJSON...
void convertToStraightSegment(double tolerance=M_PI/180., QgsAbstractGeometry::SegmentationToleranceType toleranceType=QgsAbstractGeometry::MaximumAngle)
Converts the geometry to straight line segments, if it is a curved geometry type.
double area() const
Returns the planar, 2-dimensional area of the geometry.
bool isMultipart() const
Returns true if WKB of the geometry is of WKBMulti* type.
QgsGeometry centroid() const
Returns the center of mass of a geometry.
Q_INVOKABLE bool crosses(const QgsGeometry &geometry) const
Returns true if the geometry crosses another geometry.
QgsGeometry & operator=(QgsGeometry const &rhs)
Creates a shallow copy of the geometry.
QgsGeometry orthogonalize(double tolerance=1.0E-8, int maxIterations=1000, double angleThreshold=15.0) const
Attempts to orthogonalize a line or polygon geometry by shifting vertices to make the geometries angl...
Qgis::AngularDirection polygonOrientation() const
Returns the orientation of the polygon.
double hausdorffDistance(const QgsGeometry &geom) const
Returns the Hausdorff distance between this geometry and geom.
QgsGeometry combine(const QgsGeometry &geometry, const QgsGeometryParameters ¶meters=QgsGeometryParameters(), QgsFeedback *feedback=nullptr) const
Returns a geometry representing all the points in this geometry and other (a union geometry operation...
bool deleteVertices(const QSet< int > &atVertices)
Deletes vertices at the given positions (first number is index 0).
QgsGeometry makeValid(Qgis::MakeValidMethod method=Qgis::MakeValidMethod::Linework, bool keepCollapsed=false, QgsFeedback *feedback=nullptr) const
Attempts to make an invalid geometry valid without losing vertices.
QgsGeometry largestEmptyCircle(double tolerance, const QgsGeometry &boundary=QgsGeometry()) const
Constructs the Largest Empty Circle for a set of obstacle geometries, up to a specified tolerance.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult addPart(const QVector< QgsPointXY > &points, Qgis::GeometryType geomType=Qgis::GeometryType::Unknown)
Adds a new part to a the geometry.
static QgsGeometry unaryUnion(const QVector< QgsGeometry > &geometries, const QgsGeometryParameters ¶meters=QgsGeometryParameters(), QgsFeedback *feedback=nullptr)
Compute the unary union on a list of geometries.
QgsGeometryPartIterator parts()
Returns Java-style iterator for traversal of parts of the geometry.
QgsGeometry convertToCurves(double distanceTolerance=1e-8, double angleTolerance=1e-8) const
Attempts to convert a non-curved geometry into a curved geometry type (e.g.
QgsGeometry voronoiDiagram(const QgsGeometry &extent=QgsGeometry(), double tolerance=0.0, bool edgesOnly=false) const
Creates a Voronoi diagram for the nodes contained within the geometry.
void set(QgsAbstractGeometry *geometry)
Sets the underlying geometry store.
QgsGeometry convexHull() const
Returns the smallest convex polygon that contains all the points in the geometry.
QgsGeometry minimumClearanceLine() const
Returns a LineString whose endpoints define the minimum clearance of a geometry.
QgsGeometry sharedPaths(const QgsGeometry &other) const
Find paths shared between the two given lineal geometries (this and other).
static QgsGeometry fromPolygonXY(const QgsPolygonXY &polygon)
Creates a new geometry from a QgsPolygonXY.
double sqrDistToVertexAt(QgsPointXY &point, int atVertex) const
Returns the squared Cartesian distance between the given point to the given vertex index (vertex at t...
void fromWkb(unsigned char *wkb, int length)
Set the geometry, feeding in the buffer containing OGC Well-Known Binary and the buffer's length.
QgsGeometry minimalEnclosingCircle(QgsPointXY ¢er, double &radius, unsigned int segments=36) const
Returns the minimal enclosing circle for the geometry.
static QgsGeometry fromMultiPolygonXY(const QgsMultiPolygonXY &multipoly)
Creates a new geometry from a QgsMultiPolygonXY.
QgsGeometry buffer(double distance, int segments, QgsFeedback *feedback=nullptr) const
Returns a buffer region around this geometry having the given width and with a specified number of se...
QVector< QgsGeometry > coerceToType(Qgis::WkbType type, double defaultZ=0, double defaultM=0, bool avoidDuplicates=true) const
Attempts to coerce this geometry into the specified destination type.
bool isEmpty() const
Returns true if the geometry is empty (eg a linestring with no vertices, or a collection with no geom...
QgsGeometry node() const
Returns a (Multi)LineString representing the fully noded version of a collection of linestrings.
double distanceToVertex(int vertex) const
Returns the distance along this geometry from its first vertex to the specified vertex.
int vertexNrFromVertexId(QgsVertexId id) const
Returns the vertex number corresponding to a vertex id.
QgsAbstractGeometry::const_part_iterator const_parts_end() const
Returns STL-style iterator pointing to the imaginary part after the last part of the geometry.
bool removeDuplicateNodes(double epsilon=4 *std::numeric_limits< double >::epsilon(), bool useZValues=false)
Removes duplicate nodes from the geometry, wherever removing the nodes does not result in a degenerat...
bool convertGeometryCollectionToSubclass(Qgis::GeometryType geomType)
Converts geometry collection to a the desired geometry type subclass (multi-point,...
QgsAbstractGeometry::part_iterator parts_end()
Returns STL-style iterator pointing to the imaginary part after the last part of the geometry.
QgsAbstractGeometry::vertex_iterator vertices_begin() const
Returns STL-style iterator pointing to the first vertex of the geometry.
bool isFuzzyEqual(const QgsGeometry &geometry, double epsilon=1e-4, Qgis::GeometryBackend backend=Qgis::GeometryBackend::QGIS) const
Compares the geometry with another geometry within the tolerance epsilon using the specified backend.
QgsGeometry forcePolygonClockwise() const
Forces geometries to respect the exterior ring is clockwise, interior rings are counter-clockwise con...
bool convertToMultiType()
Converts single type geometry into multitype geometry e.g.
QString asJson(int precision=17) const
Exports the geometry to a GeoJSON RFC7946 string.
static QgsGeometry createWedgeBuffer(const QgsPoint ¢er, double azimuth, double angularWidth, double outerRadius, double innerRadius=0)
Creates a wedge shaped buffer from a center point.
double frechetDistanceDensify(const QgsGeometry &geom, double densifyFraction) const
Returns the Fréchet distance between this geometry and geom, restricted to discrete points for both g...
QByteArray asWkb(QgsAbstractGeometry::WkbFlags flags=QgsAbstractGeometry::WkbFlags()) const
Export the geometry to WKB.
QgsGeometry unionCoverage() const
Optimized union algorithm for polygonal inputs that are correctly noded and do not overlap.
bool convertToCurvedMultiType()
Converts a geometry into a multitype geometry of curve kind (when there is a corresponding curve type...
static void convertPointList(const QVector< QgsPointXY > &input, QgsPointSequence &output)
Upgrades a point list from QgsPointXY to QgsPoint.
QgsGeometry orientedMinimumBoundingBox() const
Returns the oriented minimum bounding box for the geometry, which is the smallest (by area) rotated r...
QgsGeometry triangularWavesRandomized(double minimumWavelength, double maximumWavelength, double minimumAmplitude, double maximumAmplitude, unsigned long seed=0) const
Constructs randomized triangular waves along the boundary of the geometry, with the specified wavelen...
QgsGeometry squareWavesRandomized(double minimumWavelength, double maximumWavelength, double minimumAmplitude, double maximumAmplitude, unsigned long seed=0) const
Constructs randomized square waves along the boundary of the geometry, with the specified wavelength ...
bool isTopologicallyEqual(const QgsGeometry &geometry, Qgis::GeometryBackend backend=Qgis::GeometryBackend::GEOS) const
Compares the geometry with another geometry using the specified backend.
QgsGeometryConstPartIterator constParts() const
Returns Java-style iterator for traversal of parts of the geometry.
QgsGeometry simplify(double tolerance, QgsFeedback *feedback=nullptr) const
Returns a simplified version of this geometry using a specified tolerance value.
QgsRectangle boundingBox() const
Returns the bounding box of the geometry.
Qgis::GeometryOperationResult addPartV2(const QVector< QgsPointXY > &points, Qgis::WkbType wkbType=Qgis::WkbType::Unknown)
Adds a new part to a the geometry.
double minimumClearance() const
Computes the minimum clearance of a geometry.
Qgis::GeometryOperationResult rotate(double rotation, const QgsPointXY ¢er)
Rotate this geometry around the Z axis.
Qgis::GeometryOperationResult translate(double dx, double dy, double dz=0.0, double dm=0.0)
Translates this geometry by dx, dy, dz and dm.
double interpolateAngle(double distance) const
Returns the angle parallel to the linestring or polygon boundary at the specified distance along the ...
double angleAtVertex(int vertex) const
Returns the bisector angle for this geometry at the specified vertex.
Qgis::GeometryOperationResult reshapeGeometry(const QgsLineString &reshapeLineString)
Replaces a part of this geometry with another line.
double closestVertexWithContext(const QgsPointXY &point, int &atVertex) const
Searches for the closest vertex in this geometry to the given point.
QgsGeometry delaunayTriangulation(double tolerance=0.0, bool edgesOnly=false) const
Returns the Delaunay triangulation for the vertices of the geometry.
void draw(QPainter &p) const
Draws the geometry onto a QPainter.
QgsGeometry smooth(unsigned int iterations=1, double offset=0.25, double minimumDistance=-1.0, double maxAngle=180.0) const
Smooths a geometry by rounding off corners using the Chaikin algorithm.
QgsGeometry forcePolygonCounterClockwise() const
Forces geometries to respect the exterior ring is counter-clockwise, interior rings are clockwise con...
Q_INVOKABLE QString asWkt(int precision=17) const
Exports the geometry to WKT.
QgsGeometry cleanCoverage(const QgsCoverageCleanParameters ¶meters, QgsFeedback *feedback=nullptr) const
Operates on a coverage (represented as a list of polygonal geometry), to fix cases where the geometry...
Q_DECL_DEPRECATED Qgis::GeometryOperationResult splitGeometry(const QVector< QgsPointXY > &splitLine, QVector< QgsGeometry > &newGeometries, bool topological, QVector< QgsPointXY > &topologyTestPoints, bool splitFeature=true)
Splits this geometry according to a given line.
bool toggleCircularAtVertex(int atVertex)
Converts the vertex at the given position from/to circular.
Qgis::WkbType wkbType() const
Returns type of the geometry as a WKB type (point / linestring / polygon etc.).
bool moveVertex(double x, double y, int atVertex)
Moves the vertex at the given position number and item (first number is index 0) to the given coordin...
QgsGeometry constrainedDelaunayTriangulation() const
Returns a constrained Delaunay triangulation for the vertices of the geometry.
Q_DECL_DEPRECATED bool isGeosEqual(const QgsGeometry &) const
Compares the geometry with another geometry using GEOS.
static QgsGeometryEngine * createGeometryEngine(const QgsAbstractGeometry *geometry, double precision=0.0, Qgis::GeosCreationFlags flags=Qgis::GeosCreationFlag::SkipEmptyInteriorRings)
Creates and returns a new geometry engine representing the specified geometry using precision on a gr...
Q_INVOKABLE bool intersects(const QgsRectangle &rectangle) const
Returns true if this geometry exactly intersects with a rectangle.
static QgsGeometry fromBox3D(const QgsBox3D &box)
Creates a new geometry from a QgsBox3D object Returns a 2D polygon geometry if the box is purely 2d,...
QgsAbstractGeometry::vertex_iterator vertices_end() const
Returns STL-style iterator pointing to the imaginary vertex after the last vertex of the geometry.
static QgsGeometry createWedgeBufferFromAngles(const QgsPoint ¢er, double startAngle, double endAngle, double outerRadius, double innerRadius=0)
Creates a wedge shaped buffer from a center point.
bool deletePart(int partNum)
Deletes part identified by the part number.
QgsGeometry removeInteriorRings(double minimumAllowedArea=-1) const
Removes the interior rings from a (multi)polygon geometry.
static QgsGeometry fromPoint(const QgsPoint &point)
Creates a new geometry from a QgsPoint object.
QgsGeometry difference(const QgsGeometry &geometry, const QgsGeometryParameters ¶meters=QgsGeometryParameters(), QgsFeedback *feedback=nullptr) const
Returns a geometry representing the points making up this geometry that do not make up other.
Q_INVOKABLE bool overlaps(const QgsGeometry &geometry) const
Returns true if the geometry overlaps another geometry.
Q_DECL_DEPRECATED int avoidIntersections(const QList< QgsVectorLayer * > &avoidIntersectionsLayers, const QHash< QgsVectorLayer *, QSet< QgsFeatureId > > &ignoreFeatures=(QHash< QgsVectorLayer *, QSet< QgsFeatureId > >()))
Modifies geometry to avoid intersections with the layers specified in project properties.
QgsGeometry shortestLine(const QgsGeometry &other) const
Returns the shortest line joining this geometry to another geometry.
Does vector analysis using the GEOS library and handles import, export, and exception handling.
double distance(const QgsAbstractGeometry *geom, QString *errorMsg=nullptr, QgsFeedback *feedback=nullptr) const override
Calculates the distance between this and geom.
QgsAbstractGeometry * buffer(double distance, int segments, QString *errorMsg=nullptr, QgsFeedback *feedback=nullptr) const override
Buffers the geometry.
double hausdorffDistanceDensify(const QgsAbstractGeometry *geometry, double densifyFraction, QString *errorMsg=nullptr, QgsFeedback *feedback=nullptr) const
Returns the Hausdorff distance between this geometry and another geometry.
double frechetDistanceDensify(const QgsAbstractGeometry *geometry, double densifyFraction, QString *errorMsg=nullptr, QgsFeedback *feedback=nullptr) const
Returns the Fréchet distance between this geometry and another geometry, restricted to discrete point...
double hausdorffDistance(const QgsAbstractGeometry *geometry, QString *errorMsg=nullptr, QgsFeedback *feedback=nullptr) const
Returns the Hausdorff distance between this geometry and another geometry.
double frechetDistance(const QgsAbstractGeometry *geometry, QString *errorMsg=nullptr, QgsFeedback *feedback=nullptr) const
Returns the Fréchet distance between this geometry and another geometry, restricted to discrete point...
static QgsGeometry polygonize(const QVector< const QgsAbstractGeometry * > &geometries, QString *errorMsg=nullptr, QgsFeedback *feedback=nullptr)
Creates a GeometryCollection geometry containing possible polygons formed from the constituent linewo...
Offers geometry processing methods.
QgsGeometry triangularWavesRandomized(double minimumWavelength, double maximumWavelength, double minimumAmplitude, double maximumAmplitude, unsigned long seed=0) const
Constructs randomized triangular waves along the boundary of the geometry, with the specified wavelen...
QgsGeometry triangularWaves(double wavelength, double amplitude, bool strictWavelength=false) const
Constructs triangular waves along the boundary of the geometry, with the specified wavelength and amp...
QgsGeometry roundWaves(double wavelength, double amplitude, bool strictWavelength=false) const
Constructs rounded (sine-like) waves along the boundary of the geometry, with the specified wavelengt...
QgsGeometry poleOfInaccessibility(double precision, double *distanceFromBoundary=nullptr) const
Calculates the approximate pole of inaccessibility for a surface, which is the most distant internal ...
QgsGeometry squareWaves(double wavelength, double amplitude, bool strictWavelength=false) const
Constructs square waves along the boundary of the geometry, with the specified wavelength and amplitu...
QgsGeometry variableWidthBufferByM(int segments) const
Calculates a variable width buffer using the m-values from a (multi)line geometry.
QgsGeometry extrude(double x, double y) const
Will extrude a line or (segmentized) curve by a given offset and return a polygon representation of i...
QgsGeometry roundWavesRandomized(double minimumWavelength, double maximumWavelength, double minimumAmplitude, double maximumAmplitude, unsigned long seed=0) const
Constructs randomized rounded (sine-like) waves along the boundary of the geometry,...
QgsGeometry orthogonalize(double tolerance=1.0E-8, int maxIterations=1000, double angleThreshold=15.0) const
Attempts to orthogonalize a line or polygon geometry by shifting vertices to make the geometries angl...
QString lastError() const
Returns an error string referring to the last error encountered.
QgsGeometry orientedMinimumBoundingBox(double &area, double &angle, double &width, double &height) const
Returns the oriented minimum bounding box for the geometry, which is the smallest (by area) rotated r...
QgsGeometry densifyByDistance(double distance) const
Densifies the geometry by adding regularly placed extra nodes inside each segment so that the maximum...
QgsGeometry taperedBuffer(double startWidth, double endWidth, int segments) const
Calculates a tapered width buffer for a (multi)curve geometry.
QgsGeometry densifyByCount(int extraNodesPerSegment) const
Densifies the geometry by adding the specified number of extra nodes within each segment of the geome...
QgsGeometry applyDashPattern(const QVector< double > &pattern, Qgis::DashPatternLineEndingRule startRule=Qgis::DashPatternLineEndingRule::NoRule, Qgis::DashPatternLineEndingRule endRule=Qgis::DashPatternLineEndingRule::NoRule, Qgis::DashPatternSizeAdjustment adjustment=Qgis::DashPatternSizeAdjustment::ScaleBothDashAndGap, double patternOffset=0) const
Applies a dash pattern to a geometry, returning a MultiLineString geometry which is the input geometr...
QgsGeometry squareWavesRandomized(double minimumWavelength, double maximumWavelength, double minimumAmplitude, double maximumAmplitude, unsigned long seed=0) const
Constructs randomized square waves along the boundary of the geometry, with the specified wavelength ...
QgsGeometry convertToCurves(double distanceTolerance, double angleTolerance) const
Attempts to convert a non-curved geometry into a curved geometry type (e.g.
bool isAxisParallelRectangle(double maximumDeviation, bool simpleRectanglesOnly=false) const
Returns true if the geometry is a polygon that is almost an axis-parallel rectangle.
Custom exception class when argument are invalid.
Line string geometry type, with support for z-dimension and m-values.
static std::unique_ptr< QgsLineString > fromQPolygonF(const QPolygonF &polygon)
Returns a new linestring from a QPolygonF polygon input.
QgsLineString * clone() const override
Clones the geometry by performing a deep copy.
Perform transforms between map coordinates and device coordinates.
QgsPointXY transform(const QgsPointXY &p) const
Transforms a point p from map (world) coordinates to device coordinates.
Multi line string geometry collection.
QgsLineString * lineStringN(int index)
Returns the line string with the specified index.
Multi point geometry collection.
QgsPoint * pointN(int index)
Returns the point with the specified index.
Multi polygon geometry collection.
QgsPolygon * polygonN(int index)
Returns the polygon with the specified index.
Custom exception class which is raised when an operation is not supported.
void setY(double y)
Sets the y value of the point.
void setX(double x)
Sets the x value of the point.
QPointF toQPointF() const
Converts a point to a QPointF.
Point geometry type, with support for z-dimension and m-values.
QgsPoint * clone() const override
Clones the geometry by performing a deep copy.
QgsPoint project(double distance, double azimuth, double inclination=90.0) const
Returns a new point which corresponds to this point projected by a specified distance with specified ...
Polyhedral surface geometry type.
A rectangle specified with double values.
bool dropZValue() override
Drops any z-dimensions which exist in the geometry.
bool dropMValue() override
Drops any measure values which exist in the geometry.
int numPoints() const override
Returns the number of points in the curve.
void points(QgsPointSequence &pts) const override
Returns a list of points within the curve.
const double * yData() const
Returns a const pointer to the y vertex data.
const double * xData() const
Returns a const pointer to the x vertex data.
Triangulated surface geometry type.
Represents a vector layer which manages a vector based dataset.
Java-style iterator for traversal of vertices of a geometry.
static Qgis::GeometryType geometryType(Qgis::WkbType type)
Returns the geometry type for a WKB type, e.g., both MultiPolygon and CurvePolygon would have a Polyg...
static Q_INVOKABLE bool hasZ(Qgis::WkbType type)
Tests whether a WKB type contains the z-dimension.
static Qgis::WkbType singleType(Qgis::WkbType type)
Returns the single type for a WKB type.
static Q_INVOKABLE bool hasM(Qgis::WkbType type)
Tests whether a WKB type contains m values.
static Q_INVOKABLE bool isNurbsType(Qgis::WkbType type)
Returns true if the WKB type is a NURBS curve type.
static Q_INVOKABLE bool isCurvedType(Qgis::WkbType type)
Returns true if the WKB type is a curved type or can contain curved geometries.
static Qgis::WkbType multiType(Qgis::WkbType type)
Returns the multi type for a WKB type.
static Qgis::WkbType flatType(Qgis::WkbType type)
Returns the flat type for a WKB type.
static Q_INVOKABLE bool isMultiType(Qgis::WkbType type)
Returns true if the WKB type is a multi type.
static Qgis::WkbType curveType(Qgis::WkbType type)
Returns the curve type for a WKB type.
Contains geos related utilities and functions.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
#define Q_NOWARN_DEPRECATED_POP
QString qgsEnumValueToKey(const T &value, bool *returnOk=nullptr)
Returns the value for the given key of an enum.
#define BUILTIN_UNREACHABLE
#define Q_NOWARN_DEPRECATED_PUSH
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference).
T qgsgeometry_cast(QgsAbstractGeometry *geom)
QVector< QgsPoint > QgsPointSequence
Q_GLOBAL_STATIC_WITH_ARGS(PalPropertyList, palHiddenProperties,({ static_cast< int >(QgsPalLayerSettings::Property::PositionX), static_cast< int >(QgsPalLayerSettings::Property::PositionY), static_cast< int >(QgsPalLayerSettings::Property::Show), static_cast< int >(QgsPalLayerSettings::Property::LabelRotation), static_cast< int >(QgsPalLayerSettings::Property::Family), static_cast< int >(QgsPalLayerSettings::Property::FontStyle), static_cast< int >(QgsPalLayerSettings::Property::Size), static_cast< int >(QgsPalLayerSettings::Property::Bold), static_cast< int >(QgsPalLayerSettings::Property::Italic), static_cast< int >(QgsPalLayerSettings::Property::Underline), static_cast< int >(QgsPalLayerSettings::Property::Color), static_cast< int >(QgsPalLayerSettings::Property::Strikeout), static_cast< int >(QgsPalLayerSettings::Property::MultiLineAlignment), static_cast< int >(QgsPalLayerSettings::Property::BufferSize), static_cast< int >(QgsPalLayerSettings::Property::BufferDraw), static_cast< int >(QgsPalLayerSettings::Property::BufferColor), static_cast< int >(QgsPalLayerSettings::Property::LabelDistance), static_cast< int >(QgsPalLayerSettings::Property::Hali), static_cast< int >(QgsPalLayerSettings::Property::Vali), static_cast< int >(QgsPalLayerSettings::Property::ScaleVisibility), static_cast< int >(QgsPalLayerSettings::Property::MinScale), static_cast< int >(QgsPalLayerSettings::Property::MaxScale), static_cast< int >(QgsPalLayerSettings::Property::AlwaysShow), static_cast< int >(QgsPalLayerSettings::Property::CalloutDraw), static_cast< int >(QgsPalLayerSettings::Property::LabelAllParts) })) Q_GLOBAL_STATIC_WITH_ARGS(SymbolPropertyList
Q_GLOBAL_STATIC(QReadWriteLock, sDefinitionCacheLock)
QDataStream & operator<<(QDataStream &out, const QgsGeometry &geometry)
Writes the geometry to stream out. QGIS version compatibility is not guaranteed.
std::unique_ptr< QgsLineString > smoothCurve(const QgsLineString &line, const unsigned int iterations, const double offset, double squareDistThreshold, double maxAngleRads, bool isRing)
QDataStream & operator>>(QDataStream &in, QgsGeometry &geometry)
Reads a geometry from stream in into geometry. QGIS version compatibility is not guaranteed.
QCache< QString, QgsGeometry > WktCache
QVector< QgsPolylineXY > QgsPolygonXY
Polygon: first item of the list is outer ring, inner rings (if any) start from second item.
QVector< QgsPolylineXY > QgsMultiPolylineXY
A collection of QgsPolylines that share a common collection of attributes.
QVector< QgsPointXY > QgsMultiPointXY
A collection of QgsPoints that share a common collection of attributes.
QVector< QgsPointXY > QgsPolylineXY
Polyline as represented as a vector of two-dimensional points.
QVector< QgsPolygonXY > QgsMultiPolygonXY
A collection of QgsPolygons that share a common collection of attributes.
QgsPointSequence QgsPolyline
Polyline as represented as a vector of points.
#define QgsDebugMsgLevel(str, level)
#define QgsDebugError(str)
std::unique_ptr< QgsAbstractGeometry > geometry
QgsGeometryPrivate(std::unique_ptr< QgsAbstractGeometry > geometry)
Utility class for identifying a unique vertex within a geometry.
bool isValid() const
Returns true if the vertex id is valid.