20 #include <nlohmann/json.hpp> 55 std::unique_ptr< QgsAbstractGeometry >
geometry;
65 if ( !d->
ref.deref() )
73 d->
ref = QAtomicInt( 1 );
80 d->
ref = QAtomicInt( 1 );
86 mLastError = other.mLastError;
92 if ( !d->
ref.deref() )
97 mLastError = other.mLastError;
103 void QgsGeometry::detach()
108 std::unique_ptr< QgsAbstractGeometry > cGeom;
110 cGeom.reset( d->
geometry->clone() );
112 reset( std::move( cGeom ) );
115 void QgsGeometry::reset( std::unique_ptr<QgsAbstractGeometry> newGeometry )
119 ( void )d->
ref.deref();
122 d->
geometry = std::move( newGeometry );
138 if ( d->
geometry.get() == geometry )
143 reset( std::unique_ptr< QgsAbstractGeometry >( geometry ) );
183 return QgsGeometry( qgis::make_unique< QgsLineString >( polyline ) );
228 std::unique_ptr< QgsLineString > ext = qgis::make_unique< QgsLineString >(
229 QVector< double >() << rect.
xMinimum()
234 QVector< double >() << rect.
yMinimum()
239 std::unique_ptr< QgsPolygon > polygon = qgis::make_unique< QgsPolygon >();
240 polygon->setExteriorRing( ext.release() );
257 if ( g.isMultipart() )
259 for (
auto p = g.const_parts_begin(); p != g.const_parts_end(); ++p )
261 collected.
addPart( ( *p )->clone() );
275 if ( std::abs( angularWidth ) >= 360.0 )
277 std::unique_ptr< QgsCompoundCurve > outerCc = qgis::make_unique< QgsCompoundCurve >();
280 outerCc->addCurve( outerCircle.toCircularString() );
282 std::unique_ptr< QgsCurvePolygon > cp = qgis::make_unique< QgsCurvePolygon >();
283 cp->setExteriorRing( outerCc.release() );
287 std::unique_ptr< QgsCompoundCurve > innerCc = qgis::make_unique< QgsCompoundCurve >();
290 innerCc->addCurve( innerCircle.toCircularString() );
292 cp->setInteriorRings( { innerCc.release() } );
298 std::unique_ptr< QgsCompoundCurve > wedge = qgis::make_unique< QgsCompoundCurve >();
300 const double startAngle = azimuth - angularWidth * 0.5;
301 const double endAngle = azimuth + angularWidth * 0.5;
306 const bool useShortestArc = angularWidth <= 180.0;
324 std::unique_ptr< QgsCurvePolygon > cp = qgis::make_unique< QgsCurvePolygon >();
325 cp->setExteriorRing( wedge.release() );
404 d->
geometry->adjacentVertices(
id, prevVertex, nextVertex );
440 return d->
geometry->vertexAngle( v2 );
459 d->
geometry->adjacentVertices(
id, beforeVertexId, afterVertexId );
497 return d->
geometry->moveVertex(
id, p );
530 return d->
geometry->deleteVertex(
id );
582 return d->
geometry->insertVertex(
id, point );
598 return d->
geometry->vertexAt( vId );
612 result.mLastError = mLastError;
621 result.mLastError = mLastError;
645 double epsilon )
const 655 double sqrDist = d->
geometry->closestSegment(
QgsPoint( point ), segmentPt, vertexAfter, leftOf, epsilon );
659 minDistPoint.
setX( segmentPt.
x() );
660 minDistPoint.
setY( segmentPt.
y() );
667 std::unique_ptr< QgsLineString > ringLine = qgis::make_unique< QgsLineString >( ring );
668 return addRing( ringLine.release() );
673 std::unique_ptr< QgsCurve > r( ring );
693 std::unique_ptr< QgsAbstractGeometry > partGeom;
694 if ( points.size() == 1 )
696 partGeom = qgis::make_unique< QgsPoint >( points[0] );
698 else if ( points.size() > 1 )
700 std::unique_ptr< QgsLineString > ringLine = qgis::make_unique< QgsLineString >();
701 ringLine->setPoints( points );
702 partGeom = std::move( ringLine );
704 return addPart( partGeom.release(), geomType );
709 std::unique_ptr< QgsAbstractGeometry > p( part );
715 reset( qgis::make_unique< QgsMultiPoint >() );
718 reset( qgis::make_unique< QgsMultiLineString >() );
721 reset( qgis::make_unique< QgsMultiPolygon >() );
725 return QgsGeometry::OperationResult::AddPartNotMultiGeometry;
761 QVector<QgsGeometry> results;
762 results.reserve( parts.count() );
769 if ( results.isEmpty() )
773 for (
const QgsGeometry &result : qgis::as_const( results ) )
781 std::unique_ptr< QgsCurvePolygon > newPoly( static_cast< QgsCurvePolygon * >( d->
geometry->clone() ) );
782 newPoly->removeInteriorRings( minimumRingArea );
796 d->
geometry->transform( QTransform::fromTranslate( dx, dy ), dz, 1.0, dm );
809 QTransform t = QTransform::fromTranslate( center.
x(), center.
y() );
810 t.rotate( -rotation );
811 t.translate( -center.
x(), -center.
y() );
821 return splitGeometry( split, newGeometries, topological, topology );
827 return QgsGeometry::OperationResult::InvalidBaseGeometry;
830 QVector<QgsGeometry > newGeoms;
839 *
this = newGeoms.takeAt( 0 );
841 newGeometries = newGeoms;
847 return QgsGeometry::OperationResult::Success;
851 return QgsGeometry::OperationResult::GeometryEngineError;
853 return QgsGeometry::OperationResult::InvalidBaseGeometry;
855 return QgsGeometry::OperationResult::InvalidInputGeometryType;
857 return QgsGeometry::OperationResult::SplitCannotSplitPoint;
859 return QgsGeometry::OperationResult::NothingHappened;
878 std::unique_ptr< QgsAbstractGeometry > geom(
geos.reshapeGeometry( reshapeLineString, &errorCode, &mLastError ) );
881 reset( std::move( geom ) );
917 std::unique_ptr< QgsAbstractGeometry > diffGeom(
geos.intersection( other.
constGet(), &mLastError ) );
923 reset( std::move( diffGeom ) );
937 std::unique_ptr< QgsAbstractGeometry > diffGeom(
geos.intersection( other.
constGet(), &mLastError ) );
941 result.mLastError = mLastError;
960 area = std::numeric_limits<double>::max();
962 width = std::numeric_limits<double>::max();
963 height = std::numeric_limits<double>::max();
979 double prevAngle = 0.0;
983 double rotateAngle = 180.0 / M_PI * ( currentAngle - prevAngle );
984 prevAngle = currentAngle;
986 QTransform t = QTransform::fromTranslate( pt0.
x(), pt0.
y() );
987 t.rotate( rotateAngle );
988 t.translate( -pt0.
x(), -pt0.
y() );
993 double currentArea = bounds.
width() * bounds.
height();
994 if ( currentArea < area )
998 angle = 180.0 / M_PI * currentAngle;
999 width = bounds.
width();
1000 height = bounds.
height();
1010 if ( angle > 180.0 )
1011 angle = std::fmod( angle, 180.0 );
1024 auto l_boundary = boundary.length();
1026 if ( ( points.length() == 0 ) || ( l_boundary == 3 ) )
1028 switch ( l_boundary )
1035 boundary.pop_back();
1040 boundary.pop_back();
1042 boundary.pop_back();
1059 circ_mec = __recMinimalEnclosingCircle( points, boundary );
1063 boundary.append( pxy );
1064 circ_mec = __recMinimalEnclosingCircle( points, boundary );
1088 QgsCircle circ = __recMinimalEnclosingCircle( P, R );
1109 return engine.
orthogonalize( tolerance, maxIterations, angleThreshold );
1118 return QgsGeometry( d->
geometry->snappedToGrid( hSpacing, vSpacing, dSpacing, mSpacing ) );
1127 return d->
geometry->removeDuplicateNodes( epsilon, useZValues );
1149 return geos.intersects( geometry.d->
geometry.get(), &mLastError );
1159 return d->
geometry->boundingBox().intersects( rectangle );
1182 return geos.contains( &pt, &mLastError );
1194 return geos.contains( geometry.d->
geometry.get(), &mLastError );
1206 return geos.disjoint( geometry.d->
geometry.get(), &mLastError );
1217 if ( d == geometry.d )
1233 return geos.touches( geometry.d->
geometry.get(), &mLastError );
1245 return geos.overlaps( geometry.d->
geometry.get(), &mLastError );
1257 return geos.within( geometry.d->
geometry.get(), &mLastError );
1269 return geos.crosses( geometry.d->
geometry.get(), &mLastError );
1278 return d->
geometry->asWkt( precision );
1283 return QString::fromStdString(
asJsonObject( precision ).dump() );
1292 return d->
geometry->asJsonObject( precision );
1301 return convertToPoint( destMultipart );
1304 return convertToLine( destMultipart );
1307 return convertToPolygon( destMultipart );
1359 if ( !multiGeom || multiGeom->
partCount() < 1 )
1362 std::unique_ptr< QgsAbstractGeometry > firstPart( multiGeom->
geometryN( 0 )->
clone() );
1363 reset( std::move( firstPart ) );
1374 std::unique_ptr<QgsGeometryCollection> resGeom;
1378 resGeom = qgis::make_unique<QgsMultiPoint>();
1381 resGeom = qgis::make_unique<QgsMultiLineString>();
1384 resGeom = qgis::make_unique<QgsMultiPolygon>();
1397 resGeom->addGeometry( g->
clone() );
1400 set( resGeom.release() );
1430 std::unique_ptr< QgsLineString > segmentizedLine;
1432 if ( doSegmentation )
1440 line = segmentizedLine.get();
1452 polyLine.resize( nVertices );
1454 const double *xData = line->
xData();
1455 const double *yData = line->
yData();
1456 for (
int i = 0; i < nVertices; ++i )
1458 data->
setX( *xData++ );
1459 data->
setY( *yData++ );
1474 std::unique_ptr< QgsPolygon > segmentized;
1475 if ( doSegmentation )
1482 segmentized.reset( curvePoly->
toPolygon() );
1483 p = segmentized.get();
1496 convertPolygon( *p, polygon );
1516 for (
int i = 0; i < nPoints; ++i )
1519 multiPoint[i].
setX( pt->
x() );
1520 multiPoint[i].setY( pt->
y() );
1533 if ( !geomCollection )
1545 mpl.reserve( nLines );
1546 for (
int i = 0; i < nLines; ++i )
1549 std::unique_ptr< QgsLineString > segmentized;
1558 line = segmentized.get();
1563 polyLine.resize( nVertices );
1565 const double *xData = line->
xData();
1566 const double *yData = line->
yData();
1567 for (
int i = 0; i < nVertices; ++i )
1569 data->
setX( *xData++ );
1570 data->
setY( *yData++ );
1573 mpl.append( polyLine );
1586 if ( !geomCollection )
1592 if ( nPolygons < 1 )
1598 for (
int i = 0; i < nPolygons; ++i )
1615 convertPolygon( *polygon, poly );
1631 double geosArea = g.
area();
1632 double qgisArea = 0;
1636 qgisArea = surface->
area();
1641 return g.area( &mLastError );
1652 return g.length( &mLastError );
1670 return g.distance( geom.d->
geometry.get(), &mLastError );
1682 return g.hausdorffDistance( geom.d->
geometry.get(), &mLastError );
1694 return g.hausdorffDistanceDensify( geom.d->
geometry.get(), densifyFraction, &mLastError );
1701 return d->
geometry->vertices_begin();
1708 return d->
geometry->vertices_end();
1738 return d->
geometry->const_parts_begin();
1745 return d->
geometry->const_parts_end();
1774 std::unique_ptr<QgsAbstractGeometry> geom( g.buffer( distance, segments, &mLastError ) );
1778 result.mLastError = mLastError;
1793 QgsAbstractGeometry *geom = g.buffer( distance, segments, endCapStyle, joinStyle, miterLimit, &mLastError );
1797 result.mLastError = mLastError;
1813 QVector<QgsGeometry> results;
1814 results.reserve( parts.count() );
1821 if ( results.isEmpty() )
1825 for (
const QgsGeometry &result : qgis::as_const( results ) )
1839 std::unique_ptr< QgsAbstractGeometry > offsetGeom(
geos.offsetCurve( distance, segments, joinStyle, miterLimit, &mLastError ) );
1843 result.mLastError = mLastError;
1847 if (
const QgsCurve *
offsetCurve = qgsgeometry_cast< const QgsCurve * >( offsetGeom.get() ) )
1850 if ( newOrientation != prevOrientation )
1853 std::unique_ptr< QgsAbstractGeometry > flipped(
offsetCurve->reversed() );
1854 offsetGeom = std::move( flipped );
1871 QVector<QgsGeometry> results;
1872 results.reserve( parts.count() );
1879 if ( results.isEmpty() )
1883 for (
const QgsGeometry &result : qgis::as_const( results ) )
1893 std::unique_ptr< QgsAbstractGeometry > bufferGeom =
geos.singleSidedBuffer( distance, segments, side,
1894 joinStyle, miterLimit, &mLastError );
1898 result.mLastError = mLastError;
1909 return engine.
taperedBuffer( startWidth, endWidth, segments );
1929 QVector<QgsGeometry> results;
1930 results.reserve( parts.count() );
1937 if ( results.isEmpty() )
1941 for (
const QgsGeometry &result : qgis::as_const( results ) )
1953 std::unique_ptr< QgsLineString > newLine( line->
clone() );
1954 newLine->extend( startDistance, endDistance );
1968 std::unique_ptr< QgsAbstractGeometry > simplifiedGeom(
geos.simplify( tolerance, &mLastError ) );
1969 if ( !simplifiedGeom )
1972 result.mLastError = mLastError;
1975 return QgsGeometry( std::move( simplifiedGeom ) );
2012 result.mLastError = mLastError;
2027 result.mLastError = mLastError;
2046 std::unique_ptr< QgsAbstractGeometry > cHull(
geos.convexHull( &mLastError ) );
2050 geom.mLastError = mLastError;
2066 result.mLastError = mLastError;
2079 QgsGeometry result =
geos.delaunayTriangulation( tolerance, edgesOnly );
2080 result.mLastError = mLastError;
2092 std::unique_ptr< QgsAbstractGeometry > segmentizedCopy;
2095 segmentizedCopy.reset( d->
geometry->segmentize() );
2096 geom = segmentizedCopy.get();
2101 std::unique_ptr< QgsAbstractGeometry > result( geos.
subdivide( maxNodes, &mLastError ) );
2105 geom.mLastError = mLastError;
2143 std::unique_ptr< QgsPoint > result( curve->interpolatePoint( distance ) );
2162 segmentized =
QgsGeometry( static_cast< QgsCurve * >( d->
geometry.get() )->segmentize() );
2167 return geos.lineLocatePoint( *( static_cast< QgsPoint * >( point.d->
geometry.get() ) ), &mLastError );
2179 segmentized =
QgsGeometry( static_cast< QgsCurve * >( d->
geometry.get() )->segmentize() );
2187 if ( previous == next )
2234 std::unique_ptr< QgsAbstractGeometry > resultGeom(
geos.intersection( geometry.d->
geometry.get(), &mLastError ) );
2239 geom.mLastError = mLastError;
2255 std::unique_ptr< QgsAbstractGeometry > resultGeom(
geos.combine( geometry.d->
geometry.get(), &mLastError ) );
2259 geom.mLastError = mLastError;
2281 result.mLastError = mLastError;
2295 std::unique_ptr< QgsAbstractGeometry > resultGeom(
geos.difference( geometry.d->
geometry.get(), &mLastError ) );
2299 geom.mLastError = mLastError;
2315 std::unique_ptr< QgsAbstractGeometry > resultGeom(
geos.symDifference( geometry.d->
geometry.get(), &mLastError ) );
2319 geom.mLastError = mLastError;
2329 return engine.
extrude( x, y );
2336 return QVector< QgsPointXY >();
2344 return QVector< QgsPointXY >();
2357 QVector<QgsGeometry> geometryList;
2360 return geometryList;
2367 geometryList.reserve( numGeom );
2368 for (
int i = 0; i < numGeom; ++i )
2375 geometryList.append( *
this );
2378 return geometryList;
2404 const double *srcX = line->
xData();
2405 const double *srcY = line->
yData();
2407 QPolygonF res( count );
2408 QPointF *dest = res.data();
2409 for (
int i = 0; i < count; ++i )
2411 *dest++ = QPointF( *srcX++, *srcY++ );
2461 reset( std::move( diffGeom ) );
2476 result.mLastError = mLastError;
2493 if (
const QgsCurvePolygon *cp = qgsgeometry_cast< const QgsCurvePolygon * >( g ) )
2495 std::unique_ptr< QgsCurvePolygon > corrected( cp->clone() );
2496 corrected->forceRHR();
2497 newCollection->addGeometry( corrected.release() );
2501 newCollection->addGeometry( g->
clone() );
2510 std::unique_ptr< QgsCurvePolygon > corrected( cp->clone() );
2511 corrected->forceRHR();
2570 return d->
geometry->isValid( mLastError, static_cast< int >( flags ) );
2580 return geos.isSimple( &mLastError );
2607 return geos.isEqual( g.d->
geometry.get(), &mLastError );
2615 std::unique_ptr< QgsAbstractGeometry > geom( geos.
combine( geometries, &error ) );
2617 result.mLastError = error;
2625 QVector<const QgsAbstractGeometry *> geomV2List;
2628 if ( !( g.isNull() ) )
2630 geomV2List.append( g.constGet() );
2636 result.mLastError = error;
2647 std::unique_ptr< QgsAbstractGeometry > straightGeom( d->
geometry->segmentize( tolerance, toleranceType ) );
2648 reset( std::move( straightGeom ) );
2658 return d->
geometry->hasCurvedSegments();
2669 d->
geometry->transform( ct, direction, transformZ );
2681 d->
geometry->transform( ct, zTranslate, zScale, mTranslate, mScale );
2703 std::unique_ptr< QgsAbstractGeometry > resultGeom =
geos.clip( rectangle, &mLastError );
2707 result.mLastError = mLastError;
2721 static bool vertexIndexInfo(
const QgsAbstractGeometry *g,
int vertexIndex,
int &partIndex,
int &ringIndex,
int &vertex )
2723 if ( vertexIndex < 0 )
2726 if (
const QgsGeometryCollection *geomCollection = qgsgeometry_cast<const QgsGeometryCollection *>( g ) )
2730 for (
int i = 0; i < geomCollection->numGeometries(); ++i )
2736 for (
int k = 0; k < part->
ringCount(); ++k )
2739 if ( vertexIndex < numPoints )
2742 return vertexIndexInfo( part, vertexIndex, nothing, ringIndex, vertex );
2744 vertexIndex -= numPoints;
2745 offset += numPoints;
2749 else if (
const QgsCurvePolygon *curvePolygon = qgsgeometry_cast<const QgsCurvePolygon *>( g ) )
2751 const QgsCurve *ring = curvePolygon->exteriorRing();
2752 if ( vertexIndex < ring->numPoints() )
2756 vertex = vertexIndex;
2761 for (
int i = 0; i < curvePolygon->numInteriorRings(); ++i )
2763 const QgsCurve *ring = curvePolygon->interiorRing( i );
2764 if ( vertexIndex < ring->numPoints() )
2767 vertex = vertexIndex;
2774 else if (
const QgsCurve *curve = qgsgeometry_cast<const QgsCurve *>( g ) )
2776 if ( vertexIndex < curve->numPoints() )
2780 vertex = vertexIndex;
2784 else if ( qgsgeometry_cast<const QgsPoint *>( g ) )
2786 if ( vertexIndex == 0 )
2807 bool res = vertexIndexInfo( d->
geometry.get(), nr,
id.part,
id.ring,
id.vertex );
2813 if (
const QgsGeometryCollection *geomCollection = qgsgeometry_cast<const QgsGeometryCollection *>( g ) )
2815 g = geomCollection->geometryN(
id.part );
2818 if (
const QgsCurvePolygon *curvePolygon = qgsgeometry_cast<const QgsCurvePolygon *>( g ) )
2820 g =
id.ring == 0 ? curvePolygon->exteriorRing() : curvePolygon->interiorRing(
id.ring - 1 );
2823 if (
const QgsCurve *curve = qgsgeometry_cast<const QgsCurve *>( g ) )
2826 res = curve->pointAt(
id.vertex, p,
id.
type );
2840 return d->
geometry->vertexNumberFromVertexId(
id );
2855 d->
geometry->filterVertices( filter );
2889 output.resize( input.size() );
2891 for (
int i = 0; i < input.size(); ++i )
2893 const QgsPoint &pt = input.at( i );
2894 output[i].
setX( pt.
x() );
2895 output[i].setY( pt.
y() );
2903 if ( coords.empty() )
2908 output.resize( rings.size() );
2909 for (
int i = 0; i < rings.size(); ++i )
2911 convertToPolyline( rings[i], output[i] );
2917 return QgsGeometry( qgis::make_unique< QgsPoint >( point.x(), point.y() ) );
2924 if ( polygon.isClosed() )
2926 std::unique_ptr< QgsPolygon > poly = qgis::make_unique< QgsPolygon >();
2927 poly->setExteriorRing( ring.release() );
2948 result.reserve( polygon.count() );
2949 for (
const QPointF &p : polygon )
2958 if ( p1.count() != p2.count() )
2961 for (
int i = 0; i < p1.count(); ++i )
2963 if ( !p1.at( i ).compare( p2.at( i ), epsilon ) )
2971 if ( p1.count() != p2.count() )
2974 for (
int i = 0; i < p1.count(); ++i )
2985 if ( p1.count() != p2.count() )
2988 for (
int i = 0; i < p1.count(); ++i )
3015 return QgsGeometry( smoothLine( *lineString, iterations, offset, minimumDistance, maxAngle ) );
3022 std::unique_ptr< QgsMultiLineString > resultMultiline = qgis::make_unique< QgsMultiLineString> ();
3026 resultMultiline->addGeometry( smoothLine( *( static_cast< QgsLineString * >( multiLine->
geometryN( i ) ) ), iterations, offset, minimumDistance, maxAngle ).release() );
3028 return QgsGeometry( std::move( resultMultiline ) );
3034 return QgsGeometry( smoothPolygon( *poly, iterations, offset, minimumDistance, maxAngle ) );
3041 std::unique_ptr< QgsMultiPolygon > resultMultiPoly = qgis::make_unique< QgsMultiPolygon >();
3045 resultMultiPoly->addGeometry( smoothPolygon( *( static_cast< QgsPolygon * >( multiPoly->
geometryN( i ) ) ), iterations, offset, minimumDistance, maxAngle ).release() );
3047 return QgsGeometry( std::move( resultMultiPoly ) );
3057 const double offset,
double squareDistThreshold,
double maxAngleRads,
3060 std::unique_ptr< QgsLineString > result = qgis::make_unique< QgsLineString >( line );
3062 for (
unsigned int iteration = 0; iteration < iterations; ++iteration )
3064 outputLine.resize( 0 );
3065 outputLine.reserve( 2 * ( result->numPoints() - 1 ) );
3066 bool skipFirst =
false;
3067 bool skipLast =
false;
3070 QgsPoint p1 = result->pointN( result->numPoints() - 2 );
3075 angle = std::fabs( M_PI - angle );
3076 skipFirst = angle > maxAngleRads;
3078 for (
int i = 0; i < result->numPoints() - 1; i++ )
3081 QgsPoint p2 = result->pointN( i + 1 );
3083 double angle = M_PI;
3084 if ( i == 0 && isRing )
3086 QgsPoint p3 = result->pointN( result->numPoints() - 2 );
3090 else if ( i < result->numPoints() - 2 )
3092 QgsPoint p3 = result->pointN( i + 2 );
3096 else if ( i == result->numPoints() - 2 && isRing )
3103 skipLast = angle < M_PI - maxAngleRads || angle > M_PI + maxAngleRads;
3106 if ( i == 0 || i >= result->numPoints() - 2
3131 skipFirst = skipLast;
3134 if ( isRing && outputLine.at( 0 ) != outputLine.at( outputLine.count() - 1 ) )
3135 outputLine << outputLine.at( 0 );
3137 result->setPoints( outputLine );
3142 std::unique_ptr<QgsLineString> QgsGeometry::smoothLine(
const QgsLineString &line,
const unsigned int iterations,
const double offset,
double minimumDistance,
double maxAngle )
const 3144 double maxAngleRads = maxAngle * M_PI / 180.0;
3145 double squareDistThreshold = minimumDistance > 0 ? minimumDistance * minimumDistance : -1;
3146 return smoothCurve( line, iterations, offset, squareDistThreshold, maxAngleRads,
false );
3149 std::unique_ptr<QgsPolygon> QgsGeometry::smoothPolygon(
const QgsPolygon &polygon,
const unsigned int iterations,
const double offset,
double minimumDistance,
double maxAngle )
const 3151 double maxAngleRads = maxAngle * M_PI / 180.0;
3152 double squareDistThreshold = minimumDistance > 0 ? minimumDistance * minimumDistance : -1;
3153 std::unique_ptr< QgsPolygon > resultPoly = qgis::make_unique< QgsPolygon >();
3155 resultPoly->setExteriorRing(
smoothCurve( *( static_cast< const QgsLineString *>( polygon.
exteriorRing() ) ), iterations, offset,
3156 squareDistThreshold, maxAngleRads, true ).release() );
3160 resultPoly->addInteriorRing(
smoothCurve( *( static_cast< const QgsLineString *>( polygon.
interiorRing( i ) ) ), iterations, offset,
3161 squareDistThreshold, maxAngleRads, true ).release() );
3166 QgsGeometry QgsGeometry::convertToPoint(
bool destMultipart )
const 3174 if ( ( destMultipart && srcIsMultipart ) ||
3175 ( !destMultipart && !srcIsMultipart ) )
3180 if ( destMultipart )
3189 if ( multiPoint.count() == 1 )
3200 if ( !destMultipart )
3217 if ( !line.isEmpty() )
3226 if ( !destMultipart )
3257 QgsGeometry QgsGeometry::convertToLine(
bool destMultipart )
const 3267 if ( multiPoint.count() < 2 )
3270 if ( destMultipart )
3280 if ( ( destMultipart && srcIsMultipart ) ||
3281 ( !destMultipart && ! srcIsMultipart ) )
3286 if ( destMultipart )
3290 if ( !line.isEmpty() )
3297 if ( multiLine.count() == 1 )
3314 if ( destMultipart )
3319 else if ( multiLine.count() == 1 )
3330 if ( polygon.count() > 1 )
3334 if ( destMultipart )
3338 multiLine.reserve( polygon.count() );
3345 else if ( polygon.count() == 1 )
3347 if ( destMultipart )
3365 QgsGeometry QgsGeometry::convertToPolygon(
bool destMultipart )
const 3375 if ( multiPoint.count() < 3 )
3378 if ( multiPoint.last() != multiPoint.first() )
3379 multiPoint << multiPoint.first();
3382 if ( destMultipart )
3395 for ( QgsMultiPolylineXY::iterator multiLineIt = multiLine.begin(); multiLineIt != multiLine.end(); ++multiLineIt )
3398 if ( ( *multiLineIt ).count() < 3 )
3400 if ( ( *multiLineIt ).count() == 3 && ( *multiLineIt ).first() == ( *multiLineIt ).last() )
3404 if ( ( *multiLineIt ).first() != ( *multiLineIt ).last() )
3405 *multiLineIt << ( *multiLineIt ).first();
3409 if ( !multiPolygon.isEmpty() )
3411 if ( destMultipart )
3415 else if ( multiPolygon.count() == 1 )
3428 if ( line.count() < 3 )
3430 if ( line.count() == 3 && line.first() == line.last() )
3434 if ( line.first() != line.last() )
3435 line << line.first();
3438 if ( destMultipart )
3454 if ( ( destMultipart && srcIsMultipart ) ||
3455 ( !destMultipart && ! srcIsMultipart ) )
3460 if ( destMultipart )
3464 if ( !polygon.isEmpty() )
3470 if ( multiPolygon.count() == 1 )
3486 return new QgsGeos( geometry );
3491 out << geometry.
asWkb();
3497 QByteArray byteArray;
3499 if ( byteArray.isEmpty() )
3501 geometry.
set(
nullptr );
3505 geometry.
fromWkb( byteArray );
3522 return mHasLocation;
Geometry engine misses a method implemented or an error occurred in the geometry engine.
static std::unique_ptr< QgsAbstractGeometry > geomFromWkb(QgsConstWkbPtr &wkb)
Construct geometry from a WKB string.
bool boundingBoxIntersects(const QgsRectangle &rectangle) const
Returns true if the bounding box of this geometry intersects with a rectangle.
bool convertGeometryCollectionToSubclass(QgsWkbTypes::GeometryType geomType)
Converts geometry collection to a the desired geometry type subclass (multi-point, multi-linestring or multi-polygon).
QgsGeometry taperedBuffer(double startWidth, double endWidth, int segments) const
Calculates a tapered width buffer for a (multi)curve geometry.
static Q_DECL_DEPRECATED QgsPolygonXY createPolygonFromQPolygonF(const QPolygonF &polygon)
Creates a QgsPolygonXYfrom a QPolygonF.
static QgsGeometry fromMultiPolygonXY(const QgsMultiPolygonXY &multipoly)
Creates a new geometry from a QgsMultiPolygon.
static void validateGeometry(const QgsGeometry &geometry, QVector< QgsGeometry::Error > &errors, QgsGeometry::ValidationMethod method=QgsGeometry::ValidatorQgisInternal)
Validate geometry and produce a list of geometry errors.
QgsGeometry orientedMinimumBoundingBox() const
Returns the oriented minimum bounding box for the geometry, which is the smallest (by area) rotated r...
double closestSegmentWithContext(const QgsPointXY &point, QgsPointXY &minDistPoint, int &afterVertex, int *leftOf=nullptr, double epsilon=DEFAULT_SEGMENT_EPSILON) const
Searches for the closest segment of geometry to the given point.
QgsGeometryConstPartIterator constParts() const
Returns Java-style iterator for traversal of parts of the geometry.
QgsPointSequence QgsPolyline
Polyline as represented as a vector of points.
A rectangle specified with double values.
Java-style iterator for traversal of parts of a geometry.
QgsGeometry combine(const QgsGeometry &geometry) const
Returns a geometry representing all the points in this geometry and other (a union geometry operation...
static QgsGeometry fromPolylineXY(const QgsPolylineXY &polyline)
Creates a new LineString geometry from a list of QgsPointXY points.
static std::unique_ptr< QgsAbstractGeometry > geomFromWkbType(QgsWkbTypes::Type t)
Returns empty geometry from wkb type.
double hausdorffDistanceDensify(const QgsGeometry &geom, double densifyFraction) const
Returns the Hausdorff distance between this geometry and geom.
static Type multiType(Type type)
Returns the multi type for a WKB type.
int makeDifferenceInPlace(const QgsGeometry &other)
Changes this geometry such that it does not intersect the other geometry.
static QgsGeometry fromPolyline(const QgsPolyline &polyline)
Creates a new LineString geometry from a list of QgsPoint points.
QDataStream & operator<<(QDataStream &out, const QgsGeometry &geometry)
Writes the geometry to stream out. QGIS version compatibility is not guaranteed.
virtual void transform(const QgsCoordinateTransform &ct, QgsCoordinateTransform::TransformDirection d=QgsCoordinateTransform::ForwardTransform, bool transformZ=false) SIP_THROW(QgsCsException)=0
Transforms the geometry using a coordinate transform.
QgsGeometry removeInteriorRings(double minimumAllowedArea=-1) const
Removes the interior rings from a (multi)polygon geometry.
bool isMultipart() const
Returns true if WKB of the geometry is of WKBMulti* type.
QgsGeometry variableWidthBufferByM(int segments) const
Calculates a variable width buffer using the m-values from a (multi)line geometry.
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...
OperationResult addPart(const QVector< QgsPointXY > &points, QgsWkbTypes::GeometryType geomType=QgsWkbTypes::UnknownGeometry)
Adds a new part to a the geometry.
bool isNull() const
Returns true if the geometry is null (ie, contains no underlying geometry accessible via geometry() )...
OperationResult transform(const QgsCoordinateTransform &ct, QgsCoordinateTransform::TransformDirection direction=QgsCoordinateTransform::ForwardTransform, bool transformZ=false) SIP_THROW(QgsCsException)
Transforms this geometry as described by the coordinate transform ct.
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...
double distance(const QgsGeometry &geom) const
Returns the minimum distance between this geometry and another geometry.
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...
Java-style iterator for traversal of vertices of a geometry.
Multi point geometry collection.
bool isValid() const
Returns true if the vertex id is valid.
bool within(const QgsGeometry &geometry) const
Returns true if the geometry is completely within another geometry.
static bool isMultiType(Type type)
Returns true if the WKB type is a multi type.
The source geometry is not multi.
Nothing happened, without any error.
void fromWkb(unsigned char *wkb, int length)
Set the geometry, feeding in the buffer containing OGC Well-Known Binary and the buffer's length...
Use GEOS validation methods.
double angleAtVertex(int vertex) const
Returns the bisector angle for this geometry at the specified vertex.
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, y1) to (x2, y2) and (x2, y2) to (x3, y3).
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...
QVector< QgsRingSequence > QgsCoordinateSequence
Java-style iterator for const traversal of parts of a geometry.
QgsGeometry poleOfInaccessibility(double precision, double *distanceFromBoundary=nullptr) const
Calculates the approximate pole of inaccessibility for a surface, which is the most distant internal ...
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 std::unique_ptr< QgsAbstractGeometry > fromPointXY(const QgsPointXY &point)
Construct geometry from a point.
QVector< QgsPointXY > randomPointsInPolygon(int count, const std::function< bool(const QgsPointXY &) > &acceptPoint, unsigned long seed=0, QgsFeedback *feedback=nullptr)
Returns a list of count random points generated inside a (multi)polygon geometry. ...
QgsWkbTypes::Type wkbType() const
Returns type of the geometry as a WKB type (point / linestring / polygon etc.)
QgsGeometry subdivide(int maxNodes=256) const
Subdivides the geometry.
static std::unique_ptr< QgsAbstractGeometry > fromPolylineXY(const QgsPolylineXY &polyline)
Construct geometry from a polyline.
double area(QString *errorMsg=nullptr) const override
A class to represent a 2D point.
QgsAbstractGeometry::const_part_iterator const_parts_end() const
Returns STL-style iterator pointing to the imaginary part after the last part 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...
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
QString asJson(int precision=17) const
Exports the geometry to a GeoJSON string.
OperationResult rotate(double rotation, const QgsPointXY ¢er)
Rotate this geometry around the Z axis.
static QgsGeometry fromMultiPolylineXY(const QgsMultiPolylineXY &multiline)
Creates a new geometry from a QgsMultiPolylineXY object.
const QgsCurve * interiorRing(int i) const
Retrieves an interior ring from the curve polygon.
QgsAbstractGeometry::const_part_iterator const_parts_begin() const
Returns STL-style const iterator pointing to the first part of the geometry.
QgsGeometryPartIterator parts()
Returns Java-style iterator for traversal of parts of the geometry.
QVector< QgsPolylineXY > QgsPolygonXY
Polygon: first item of the list is outer ring, inner rings (if any) start from second item...
#define Q_NOWARN_DEPRECATED_PUSH
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...
Multi line string geometry collection.
QgsGeometry interpolate(double distance) const
Returns an interpolated point on the geometry at the specified distance.
Curve polygon geometry type.
bool overlaps(const QgsGeometry &geometry) const
Returns true if the geometry overlaps another geometry.
A geometry is the spatial representation of a feature.
QgsGeometry buffer(double distance, int segments) const
Returns a buffer region around this geometry having the given width and with a specified number of se...
QgsGeometry centroid() const
Returns the center of mass of a geometry.
QgsGeometry()
Constructor.
QVector< QgsPointXY > QgsMultiPointXY
A collection of QgsPoints that share a common collection of attributes.
OperationResult addRing(const QVector< QgsPointXY > &ring)
Adds a new ring to this geometry.
The part_iterator class provides STL-style iterator for const references to geometry parts...
OperationResult reshapeGeometry(const QgsLineString &reshapeLineString)
Replaces a part of this geometry with another line.
SegmentationToleranceType
Segmentation tolerance as maximum angle or maximum difference between approximation and circle...
double radius() const
Returns the radius of the circle.
QgsGeometry intersection(const QgsGeometry &geometry) const
Returns a geometry representing the points shared by this geometry and other.
QgsPoint center() const
Returns the center point.
static QgsPoint closestVertex(const QgsAbstractGeometry &geom, const QgsPoint &pt, QgsVertexId &id)
Returns the closest vertex to a geometry for a specified point.
double distanceToVertex(int vertex) const
Returns the distance along this geometry from its first vertex to the specified vertex.
EndCapStyle
End cap styles for buffers.
virtual bool nextVertex(QgsVertexId &id, QgsPoint &vertex) const =0
Returns next vertex id and coordinates.
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...
virtual QgsRectangle boundingBox() const =0
Returns the minimal bounding box for the geometry.
QgsGeometry minimalEnclosingCircle(QgsPointXY ¢er, double &radius, unsigned int segments=36) const
Returns the minimal enclosing circle for the geometry.
QgsGeometry nearestPoint(const QgsGeometry &other) const
Returns the nearest point on this geometry to another geometry.
QgsGeometry & operator=(QgsGeometry const &rhs)
Creates a deep copy of the object.
virtual QgsAbstractGeometry * clone() const =0
Clones the geometry by performing a deep copy.
static std::unique_ptr< QgsPolygon > fromPolygonXY(const QgsPolygonXY &polygon)
Construct geometry from a polygon.
OperationResult
Success or failure of a geometry operation.
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 ANALYSIS_EXPORT angle(QgsPoint *p1, QgsPoint *p2, QgsPoint *p3, QgsPoint *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored)
bool isGeosEqual(const QgsGeometry &) const
Compares the geometry with another geometry using GEOS.
QVector< QgsPolygonXY > QgsMultiPolygonXY
A collection of QgsPolygons that share a common collection of attributes.
bool deleteRing(int ringNum, int partNum=0)
Deletes a ring in polygon or multipolygon.
int numPoints() const override
Returns the number of points in the curve.
QgsPointXY closestVertex(const QgsPointXY &point, int &atVertex, int &beforeVertex, int &afterVertex, double &sqrDist) const
Returns the vertex closest to the given point, the corresponding vertex index, squared distance snap ...
QgsGeometry poleOfInaccessibility(double precision, double *distanceToBoundary=nullptr) const
Calculates the approximate pole of inaccessibility for a surface, which is the most distant internal ...
static std::unique_ptr< QgsMultiPoint > fromMultiPointXY(const QgsMultiPointXY &multipoint)
Construct geometry from a multipoint.
bool deletePart(int partNum)
Deletes part identified by the part number.
bool intersects(const QgsRectangle &rectangle) const
Returns true if this geometry exactly intersects with a rectangle.
QVector< QgsPolylineXY > QgsMultiPolylineXY
A collection of QgsPolylines that share a common collection of attributes.
QgsMultiPolylineXY asMultiPolyline() const
Returns the contents of the geometry as a multi-linestring.
Base class for feedback objects to be used for cancellation of something running in a worker thread...
QVector< QgsGeometry > asGeometryCollection() const
Returns contents of the geometry as a list of geometries.
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
Indicates that self-touching holes are permitted. OGC validity states that self-touching holes are NO...
bool hasWhere() const
true if the location available from
QgsGeometry mergeLines() const
Merges any connected lines in a LineString/MultiLineString geometry and converts them to single line ...
Perform transforms between map coordinates and device coordinates.
const double * xData() const
Returns a const pointer to the x vertex data.
QgsPointXY transform(const QgsPointXY &p) const
Transform the point from map (world) coordinates to device coordinates.
static QgsGeometry fromRect(const QgsRectangle &rect)
Creates a new geometry from a QgsRectangle.
int numInteriorRings() const
Returns the number of interior rings contained with the curve polygon.
Nothing happened, without any error.
Type
The WKB type describes the number of dimensions a geometry has.
QPointF toQPointF() const
Converts a point to a QPointF.
static Q_DECL_DEPRECATED QgsPolylineXY createPolylineFromQPolygonF(const QPolygonF &polygon)
Creates a QgsPolylineXY from a QPolygonF.
bool isGeosValid(QgsGeometry::ValidityFlags flags=nullptr) const
Checks validity of the geometry using GEOS.
static bool deleteRing(QgsAbstractGeometry *geom, int ringNum, int partNum=0)
Deletes a ring from a geometry.
bool convertToSingleType()
Converts multi type geometry into single type geometry e.g.
bool equals(const QgsGeometry &geometry) const
Test if this geometry is exactly equal to another geometry.
QgsGeometry variableWidthBufferByM(int segments) const
Calculates a variable width buffer for a (multi)linestring geometry, where the width at each node is ...
Utility class for identifying a unique vertex within a geometry.
bool isEmpty() const
Returns true if the rectangle is empty.
QgsGeometry taperedBuffer(double startWidth, double endWidth, int segments) const
Calculates a variable width buffer ("tapered buffer") for a (multi)curve geometry.
QgsPolygonXY asPolygon() const
Returns the contents of the geometry as a polygon.
static QgsGeometry fromQPointF(QPointF point)
Construct geometry from a QPointF.
virtual QgsPolygon * toPolygon(unsigned int segments=36) const
Returns a segmented polygon.
QgsGeometry convexHull() const
Returns the smallest convex polygon that contains all the points in the geometry. ...
The part_iterator class provides STL-style iterator for geometry parts.
double width() const
Returns the width of the rectangle.
QgsGeometry densifyByCount(int extraNodesPerSegment) const
Returns a copy of the geometry which has been densified by adding the specified number of extra nodes...
bool deleteVertex(int atVertex)
Deletes the vertex at the given position number and item (first number is index 0) ...
QString what() const
A human readable error message containing details about the error.
void setY(double y)
Sets the y value of the point.
QgsGeometryCollection * createEmptyWithSameType() const override
Creates a new geometry with the same class and same WKB type as the original and transfers ownership...
static GeometryType geometryType(Type type)
Returns the geometry type for a WKB type, e.g., both MultiPolygon and CurvePolygon would have a Polyg...
Use internal QgsGeometryValidator method.
static std::unique_ptr< QgsAbstractGeometry > avoidIntersections(const QgsAbstractGeometry &geom, const QList< QgsVectorLayer *> &avoidIntersectionsLayers, 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 QgsGeometry fromMultiPointXY(const QgsMultiPointXY &multipoint)
Creates a new geometry from a QgsMultiPointXY object.
QgsGeometry extendLine(double startDistance, double endDistance) const
Extends a (multi)line geometry by extrapolating out the start or end of the line by a specified dista...
double sqrDistToVertexAt(QgsPointXY &point SIP_IN, int atVertex) const
Returns the squared Cartesian distance between the given point to the given vertex index (vertex at t...
T qgsgeometry_cast(const QgsAbstractGeometry *geom)
QgsGeometry offsetCurve(double distance, int segments, JoinStyle joinStyle, double miterLimit) const
Returns an offset line at a given distance and side from an input line.
static QVector< QgsPointXY > randomPointsInPolygon(const QgsGeometry &polygon, int count, const std::function< bool(const QgsPointXY &) > &acceptPoint, unsigned long seed=0, QgsFeedback *feedback=nullptr)
Returns a list of count random points generated inside a polygon geometry.
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.
bool isEmpty() const
Returns true if the geometry is empty (eg a linestring with no vertices, or a collection with no geom...
bool contains(const QgsPoint &point, double epsilon=1E-8) const
Returns true if the circle contains the point.
bool crosses(const QgsGeometry &geometry) const
Returns true if the geometry crosses another geometry.
QgsGeometry clipped(const QgsRectangle &rectangle)
Clips the geometry using the specified rectangle.
void transformVertices(const std::function< QgsPoint(const QgsPoint &) > &transform)
Transforms the vertices from the geometry in place, applying the transform function to every vertex...
static QgsGeometry polygonize(const QVector< const QgsAbstractGeometry *> &geometries, QString *errorMsg=nullptr)
Creates a GeometryCollection geometry containing possible polygons formed from the constituent linewo...
QgsGeometry densifyByDistance(double distance) const
Densifies the geometry by adding regularly placed extra nodes inside each segment so that the maximum...
static QgsLineString * fromQPolygonF(const QPolygonF &polygon)
Returns a new linestring from a QPolygonF polygon input.
Method not implemented in geometry engine.
virtual double area() const
Returns the planar, 2-dimensional area of the geometry.
virtual int ringCount(int part=0) const =0
Returns the number of rings of which this geometry is built.
Orientation
Curve orientation.
Abstract base class for curved geometry type.
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...
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, y1) to (x2, y2).
QgsGeometry pointOnSurface() const
Returns a point guaranteed to lie on the surface of a geometry.
bool touches(const QgsGeometry &geometry) const
Returns true if the geometry touches another geometry.
Abstract base class for all geometries.
QgsCoordinateSequence coordinateSequence() const override
Retrieves the sequence of geometries, rings and nodes.
The vertex_iterator class provides STL-style iterator for vertices.
Does vector analysis using the geos library and handles import, export, exception handling*...
QgsWkbTypes::Type wkbType() const
Returns the WKB type of the geometry.
static std::unique_ptr< QgsMultiLineString > fromMultiPolylineXY(const QgsMultiPolylineXY &multiline)
Construct geometry from a multipolyline.
QgsPoint project(double distance, double azimuth, double inclination=90.0) const
Returns a new point which correspond to this point projected by a specified distance with specified a...
Point geometry type, with support for z-dimension and m-values.
QgsPointXY where() const
The coordinates at which the error is located and should be visualized.
QgsGeometry densifyByDistance(double distance) const
Densifies the geometry by adding regularly placed extra nodes inside each segment so that the maximum...
QgsWkbTypes::GeometryType type() const
Returns type of the geometry as a QgsWkbTypes::GeometryType.
const double * yData() const
Returns a const pointer to the y vertex data.
double length() const
Returns the planar, 2-dimensional length of geometry.
This class offers geometry processing methods.
void setX(double x)
Sets the x value of the point.
QByteArray asWkb() const
Export the geometry to WKB.
Error occurred while creating a noded geometry.
QgsLineString * clone() const override
Clones the geometry by performing a deep copy.
QgsGeometry extrude(double x, double y)
Returns an extruded version of this geometry.
Error occurred in the geometry engine.
void draw(QPainter &p) const
Draws the geometry onto a QPainter.
int numGeometries() const
Returns the number of geometries within the collection.
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...
Contains geos related utilities and functions.
void setX(double x)
Sets the point's x-coordinate.
QgsAbstractGeometry * get()
Returns a modifiable (non-const) reference to the underlying abstract geometry primitive.
static QgsGeometryEngine * createGeometryEngine(const QgsAbstractGeometry *geometry)
Creates and returns a new geometry engine.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
double yMinimum() const
Returns the y minimum value (bottom side of rectangle).
QgsAbstractGeometry * combine(const QgsAbstractGeometry *geom, QString *errorMsg=nullptr) const override
Calculate the combination of this and geom.
QString asWkt(int precision=17) const
Exports the geometry to WKT.
QPolygonF asQPolygonF() const
Returns contents of the geometry as a QPolygonF.
double interpolateAngle(double distance) const
Returns the angle parallel to the linestring or polygon boundary at the specified distance along the ...
static QgsGeometry fromPolygonXY(const QgsPolygonXY &polygon)
Creates a new geometry from a QgsPolygon.
double xMaximum() const
Returns the x maximum value (right side of rectangle).
BufferSide
Side of line to buffer.
QVector< QgsPoint > QgsPointSequence
static void convertPointList(const QVector< QgsPointXY > &input, QgsPointSequence &output)
Upgrades a point list from QgsPointXY to QgsPoint.
GeometryType
The geometry types are used to group QgsWkbTypes::Type in a coarse way.
static QgsGeometry fromWkt(const QString &wkt)
Creates a new geometry from a WKT string.
#define Q_NOWARN_DEPRECATED_POP
static QgsGeometry::OperationResult addPart(QgsAbstractGeometry *geometry, std::unique_ptr< QgsAbstractGeometry > part)
Add a part to multi type geometry.
virtual void adjacentVertices(QgsVertexId vertex, QgsVertexId &previousVertex, QgsVertexId &nextVertex) const =0
Returns the vertices adjacent to a specified vertex within a geometry.
int partCount() const override
Returns count of parts contained in the geometry.
QVector< QgsPointSequence > QgsRingSequence
void reserve(int size)
Attempts to allocate memory for at least size geometries.
QString lastError() const
Returns an error string referring to the last error encountered either when this geometry was created...
QgsGeometry simplify(double tolerance) const
Returns a simplified version of this geometry using a specified tolerance value.
QVector< QgsPointXY > QgsPolylineXY
Polyline as represented as a vector of two-dimensional points.
static double sqrDistance2D(const QgsPoint &pt1, const QgsPoint &pt2)
Returns the squared 2D distance between two points.
QgsPoint vertexAt(int atVertex) const
Returns coordinates of a vertex.
static std::unique_ptr< QgsAbstractGeometry > geomFromWkt(const QString &text)
Construct geometry from a WKT string.
bool convertToMultiType()
Converts single type geometry into multitype geometry e.g.
double hausdorffDistance(const QgsGeometry &geom) const
Returns the Hausdorff distance between this geometry and geom.
QgsPointXY asPoint() const
Returns the contents of the geometry as a 2-dimensional point.
The base geometry on which the operation is done is invalid or empty.
Multi polygon geometry collection.
virtual json asJsonObject(int precision=17) const
Exports the geometry to a json object.
int vertexNrFromVertexId(QgsVertexId id) const
Returns the vertex number corresponding to a vertex id.
The input geometry (ring, part, split line, etc.) has not the correct geometry type.
Q_DECL_DEPRECATED OperationResult splitGeometry(const QVector< QgsPointXY > &splitLine, QVector< QgsGeometry > &newGeometries, bool topological, QVector< QgsPointXY > &topologyTestPoints)
Splits this geometry according to a given line.
static QgsGeometry polygonize(const QVector< QgsGeometry > &geometries)
Creates a GeometryCollection geometry containing possible polygons formed from the constituent linewo...
bool requiresConversionToStraightSegments() const
Returns true if the geometry is a curved geometry type which requires conversion to display as straig...
void mapToPixel(const QgsMapToPixel &mtp)
Transforms the geometry from map units to pixels in place.
static bool isCurvedType(Type type)
Returns true if the WKB type is a curved type or can contain curved geometries.
QgsGeometry makeValid() const
Attempts to make an invalid geometry valid without losing vertices.
bool isSimple() const
Determines whether the geometry is simple (according to OGC definition), i.e.
std::unique_ptr< QgsAbstractGeometry > subdivide(int maxNodes, QString *errorMsg=nullptr) const
Subdivides the geometry.
Line string geometry type, with support for z-dimension and m-values.
QPointF asQPointF() const
Returns contents of the geometry as a QPointF if wkbType is WKBPoint, otherwise returns a null QPoint...
static QgsGeometry createWedgeBuffer(const QgsPoint ¢er, double azimuth, double angularWidth, double outerRadius, double innerRadius=0)
Creates a wedge shaped buffer from a center point.
ValidationMethod
Available methods for validating geometries.
virtual int vertexCount(int part=0, int ring=0) const =0
Returns the number of vertices of which this geometry is built.
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...
QgsRectangle boundingBox() const
Returns the bounding box of the geometry.
QgsGeometry shortestLine(const QgsGeometry &other) const
Returns the shortest line joining this geometry to another geometry.
std::unique_ptr< QgsAbstractGeometry > _qgis_lwgeom_make_valid(const QgsAbstractGeometry *lwgeom_in, QString &errorMessage)
Implementation of QgsGeometry::makeValid(). Not a public API.
const QgsAbstractGeometry * geometryN(int n) const
Returns a const reference to a geometry from within the collection.
static QgsCircle minimalCircleFrom3Points(const QgsPoint &pt1, const QgsPoint &pt2, const QgsPoint &pt3, double epsilon=1E-8)
Constructs the smallest circle from 3 points.
bool isNull() const
Test if the rectangle is null (all coordinates zero or after call to setMinimal()).
static QgsGeometry fromQPolygonF(const QPolygonF &polygon)
Construct geometry from a QPolygonF.
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...
QgsGeometry singleSidedBuffer(double distance, int segments, BufferSide side, JoinStyle joinStyle=JoinStyleRound, double miterLimit=2.0) const
Returns a single sided buffer for a (multi)line geometry.
double xMinimum() const
Returns the x minimum value (left side of rectangle).
OperationResult translate(double dx, double dy, double dz=0.0, double dm=0.0)
Translates this geometry by dx, dy, dz and dm.
void adjacentVertices(int atVertex, int &beforeVertex, int &afterVertex) const
Returns the indexes of the vertices before and after the given vertex index.
QgsGeometry convertToType(QgsWkbTypes::GeometryType destType, bool destMultipart=false) const
Try to convert the geometry to the requested type.
QgsGeometry forceRHR() const
Forces geometries to respect the Right-Hand-Rule, in which the area that is bounded by a polygon is t...
double closestVertexWithContext(const QgsPointXY &point, int &atVertex) const
Searches for the closest vertex in this geometry to the given point.
Contains geometry relation and modification algorithms.
double yMaximum() const
Returns the y maximum value (top side of rectangle).
QgsGeometry makeDifference(const QgsGeometry &other) const
Returns the geometry formed by modifying this geometry such that it does not intersect the other geom...
QgsPolylineXY asPolyline() const
Returns the contents of the geometry as a polyline.
Circular string geometry type.
QgsVertexIterator vertices() const
Returns a read-only, Java-style iterator for traversal of vertices of all the geometry, including all geometry parts and rings.
static QgsCircle from2Points(const QgsPoint &pt1, const QgsPoint &pt2)
Constructs a circle by 2 points on the circle.
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.
static bool deletePart(QgsAbstractGeometry *geom, int partNum)
Deletes a part from a geometry.
QgsMultiPointXY asMultiPoint() const
Returns the contents of the geometry as a multi-point.
virtual bool dropMValue()=0
Drops any measure values which exist in 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...
double area() const
Returns the planar, 2-dimensional area of the geometry.
EngineOperationResult
Success or failure of a geometry operation.
bool vertexIdFromVertexNr(int number, QgsVertexId &id) const
Calculates the vertex ID from a vertex number.
JoinStyle
Join styles for buffers.
const QgsCurve * exteriorRing() const
Returns the curve polygon's exterior ring.
void set(QgsAbstractGeometry *geometry)
Sets the underlying geometry store.
QgsGeometry densifyByCount(int extraNodesPerSegment) const
Densifies the geometry by adding the specified number of extra nodes within each segment of the geome...
bool contains(const QgsPointXY *p) const
Returns true if the geometry contains the point p.
QgsGeometry symDifference(const QgsGeometry &geometry) const
Returns a geometry representing the points making up this geometry that do not make up other...
virtual QgsPoint vertexAt(QgsVertexId id) const =0
Returns the point corresponding to a specified vertex id.
Represents a vector layer which manages a vector based data sets.
QgsAbstractGeometry::vertex_iterator vertices_end() const
Returns STL-style iterator pointing to the imaginary vertex after the last vertex of the geometry...
QgsAbstractGeometry::part_iterator parts_begin()
Returns STL-style iterator pointing to the first part of the geometry.
static Type flatType(Type type)
Returns the flat type for a WKB type.
QgsGeometry delaunayTriangulation(double tolerance=0.0, bool edgesOnly=false) const
Returns the Delaunay triangulation for the vertices of the geometry.
static QgsGeometry unaryUnion(const QVector< QgsGeometry > &geometries)
Compute the unary union on a list of geometries.
QgsMultiPolygonXY asMultiPolygon() const
Returns the contents of the geometry as a multi-polygon.
static QgsGeometry collectGeometry(const QVector< QgsGeometry > &geometries)
Creates a new multipart geometry from a list of QgsGeometry objects.
The geometry on which the operation occurs is not valid.
virtual int numPoints() const =0
Returns the number of points in the curve.
static double distanceToVertex(const QgsAbstractGeometry &geom, QgsVertexId id)
Returns the distance along a geometry from its first vertex to the specified vertex.
QgsAbstractGeometry::vertex_iterator vertices_begin() const
Returns STL-style iterator pointing to the first vertex of the geometry.
QgsAbstractGeometry::part_iterator parts_end()
Returns STL-style iterator pointing to the imaginary part after the last part of the geometry...
double lineLocatePoint(const QgsGeometry &point) const
Returns a distance representing the location along this linestring of the closest point on this lines...
double ANALYSIS_EXPORT leftOf(const QgsPoint &thepoint, const QgsPoint *p1, const QgsPoint *p2)
Returns whether 'thepoint' is left or right of the line from 'p1' to 'p2'. Negativ values mean left a...
bool disjoint(const QgsGeometry &geometry) const
Returns true if the geometry is disjoint of another geometry.
virtual bool dropZValue()=0
Drops any z-dimensions which exist in the geometry.
static QgsGeometry fromPointXY(const QgsPointXY &point)
Creates a new geometry from a QgsPointXY object.
void validateGeometry(QVector< QgsGeometry::Error > &errors, ValidationMethod method=ValidatorQgisInternal, QgsGeometry::ValidityFlags flags=nullptr) const
Validates geometry and produces a list of geometry errors.
static QgsGeometry::OperationResult addRing(QgsAbstractGeometry *geometry, std::unique_ptr< QgsCurve > ring)
Add an interior ring to a 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...
std::unique_ptr< QgsAbstractGeometry > geometry
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.
virtual bool addGeometry(QgsAbstractGeometry *g)
Adds a geometry and takes ownership. Returns true in case of success.
double height() const
Returns the height of the rectangle.
static std::unique_ptr< QgsMultiPolygon > fromMultiPolygonXY(const QgsMultiPolygonXY &multipoly)
Construct geometry from a multipolygon.
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.
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 difference(const QgsGeometry &geometry) const
Returns a geometry representing the points making up this geometry that do not make up other...