31 #include <nlohmann/json.hpp> 43 for (
int i = 0; i < nGeoms; ++i )
57 for (
int i = 0; i < nGeoms; ++i )
73 if ( !otherCollection )
109 auto result = qgis::make_unique< QgsGeometryCollection >();
111 return result.release();
128 std::unique_ptr<QgsGeometryCollection> result;
132 std::unique_ptr<QgsAbstractGeometry> gridified { geom->
snappedToGrid( hSpacing, vSpacing, dSpacing, mSpacing ) };
142 return result.release();
150 result = result || geom->removeDuplicateNodes( epsilon, useZValues );
169 mGeometries.at( vertex.
part )->adjacentVertices( vertex, previousVertex, nextVertex );
174 if (
id.part < 0 || id.part >=
mGeometries.count() )
181 if ( part ==
id.part )
183 int partNumber = geometry->vertexNumberFromVertexId(
QgsVertexId( 0,
id.ring,
id.vertex ) );
184 if ( partNumber == -1 )
186 return number + partNumber;
190 number += geometry->nCoordinates();
211 if ( !geometry->isEmpty() )
258 QVector< QgsAbstractGeometry * >::const_iterator it =
mGeometries.constBegin();
261 int dim = ( *it )->dimension();
272 return QStringLiteral(
"GeometryCollection" );
279 g->transform( ct, d, transformZ );
288 g->transform( t, zTranslate, zScale, mTranslate, mScale );
295 QVector< QgsAbstractGeometry * >::const_iterator it =
mGeometries.constBegin();
316 wkbPtr >> nGeometries;
318 QVector<QgsAbstractGeometry *> geometryListBackup =
mGeometries;
320 for (
int i = 0; i < nGeometries; ++i )
333 qDeleteAll( geometryListBackup );
352 int binarySize =
sizeof( char ) +
sizeof( quint32 ) +
sizeof( quint32 );
353 QVector<QByteArray> wkbForGeometries;
358 QByteArray wkb( geom->asWkb() );
359 binarySize += wkb.length();
360 wkbForGeometries << wkb;
365 wkbArray.resize( binarySize );
368 wkb << static_cast<quint32>(
wkbType() );
369 wkb << static_cast<quint32>( wkbForGeometries.count() );
370 for (
const QByteArray &wkbForGeometry : qgis::as_const( wkbForGeometries ) )
372 wkb << wkbForGeometry;
379 QString wkt =
wktTypeStr() + QLatin1String(
" (" );
382 QString childWkt = geom->asWkt( precision );
385 childWkt = childWkt.mid( childWkt.indexOf(
'(' ) );
387 wkt += childWkt +
',';
389 if ( wkt.endsWith(
',' ) )
399 QDomElement elemMultiGeometry = doc.createElementNS( ns, QStringLiteral(
"MultiGeometry" ) );
402 QDomElement elemGeometryMember = doc.createElementNS( ns, QStringLiteral(
"geometryMember" ) );
403 elemGeometryMember.appendChild( geom->asGml2( doc, precision, ns, axisOrder ) );
404 elemMultiGeometry.appendChild( elemGeometryMember );
406 return elemMultiGeometry;
411 QDomElement elemMultiGeometry = doc.createElementNS( ns, QStringLiteral(
"MultiGeometry" ) );
414 QDomElement elemGeometryMember = doc.createElementNS( ns, QStringLiteral(
"geometryMember" ) );
415 elemGeometryMember.appendChild( geom->asGml3( doc, precision, ns, axisOrder ) );
416 elemMultiGeometry.appendChild( elemGeometryMember );
418 return elemMultiGeometry;
423 json coordinates( json::array( ) );
426 coordinates.push_back( geom->asJsonObject( precision ) );
430 {
"type",
"GeometryCollection" },
431 {
"geometries", coordinates }
437 if ( mBoundingBox.
isNull() )
463 mHasCachedValidity =
false;
464 mValidityFailureReason.clear();
471 QVector< QgsAbstractGeometry * >::const_iterator geomIt =
mGeometries.constBegin();
472 for ( ; geomIt !=
mGeometries.constEnd(); ++geomIt )
476 QgsCoordinateSequence::const_iterator cIt = geomCoords.constBegin();
477 for ( ; cIt != geomCoords.constEnd(); ++cIt )
479 sequence.push_back( *cIt );
490 QVector< QgsAbstractGeometry * >::const_iterator geomIt =
mGeometries.constBegin();
491 for ( ; geomIt !=
mGeometries.constEnd(); ++geomIt )
493 count += ( *geomIt )->nCoordinates();
532 return mGeometries.at(
id.part )->nextVertex(
id, vertex );
542 bool success =
mGeometries.at( position.
part )->insertVertex( position, vertex );
557 bool success =
mGeometries.at( position.
part )->moveVertex( position, newPos );
596 QVector< QgsAbstractGeometry * >::const_iterator geomIt =
mGeometries.constBegin();
597 for ( ; geomIt !=
mGeometries.constEnd(); ++geomIt )
599 length += ( *geomIt )->length();
607 QVector< QgsAbstractGeometry * >::const_iterator geomIt =
mGeometries.constBegin();
608 for ( ; geomIt !=
mGeometries.constEnd(); ++geomIt )
610 area += ( *geomIt )->area();
618 QVector< QgsAbstractGeometry * >::const_iterator geomIt =
mGeometries.constBegin();
619 for ( ; geomIt !=
mGeometries.constEnd(); ++geomIt )
621 perimeter += ( *geomIt )->perimeter();
634 qDeleteAll( subtypes );
639 QString defChildWkbType = QStringLiteral(
"%1%2%3 " ).arg( defaultChildWkbType,
is3D() ? QStringLiteral(
"Z" ) : QString(),
isMeasure() ? QStringLiteral(
"M" ) : QString() );
642 for (
const QString &childWkt : blocks )
646 bool success =
false;
662 qDeleteAll( subtypes );
666 qDeleteAll( subtypes );
674 hasZ = hasZ || geom->is3D();
675 hasM = hasM || geom->isMeasure();
689 QVector< QgsAbstractGeometry * >::const_iterator it =
mGeometries.constBegin();
692 if ( ( *it )->hasCurvedSegments() )
704 if ( !geomCollection )
709 QVector< QgsAbstractGeometry * >::const_iterator geomIt =
mGeometries.constBegin();
710 for ( ; geomIt !=
mGeometries.constEnd(); ++geomIt )
712 geomCollection->
addGeometry( ( *geomIt )->segmentize( tolerance, toleranceType ) );
714 return geom.release();
781 if ( flags == 0 && mHasCachedValidity )
784 error = mValidityFailureReason;
785 return error.isEmpty();
792 mValidityFailureReason = !res ? error : QString();
793 mHasCachedValidity =
true;
807 geom->addZValue( zValue );
822 geom->addMValue( mValue );
862 geom->filterVertices( filter );
892 newCollection->addGeometry( geom->toCurveType() );
894 return newCollection.release();
bool isMeasure() const
Returns true if the geometry contains m values.
static std::unique_ptr< QgsAbstractGeometry > geomFromWkb(QgsConstWkbPtr &wkb)
Construct geometry from a WKB string.
virtual bool removeGeometry(int nr)
Removes a geometry from the collection.
bool nextVertex(QgsVertexId &id, QgsPoint &vertex) const override
Returns next vertex id and coordinates.
bool dropZValue() override
Drops any z-dimensions which exist in the geometry.
A rectangle specified with double values.
void filterVertices(const std::function< bool(const QgsPoint &) > &filter) override
Filters the vertices from the geometry in place, removing any which do not return true for the filter...
bool operator!=(const QgsAbstractGeometry &other) const override
virtual bool isEmpty() const
Returns true if the geometry is empty.
QDomElement asGml2(QDomDocument &doc, int precision=17, const QString &ns="gml", QgsAbstractGeometry::AxisOrder axisOrder=QgsAbstractGeometry::AxisOrder::XY) const override
Returns a GML2 representation of the geometry.
static std::unique_ptr< QgsAbstractGeometry > geomFromWkbType(QgsWkbTypes::Type t)
Returns empty geometry from wkb type.
virtual bool deleteVertex(QgsVertexId position)=0
Deletes a vertex within the geometry.
bool fromWkb(QgsConstWkbPtr &wkb) override
Sets the geometry from a WKB string.
bool operator==(const QgsAbstractGeometry &other) const override
void clear() override
Clears the geometry, ie reset it to a null geometry.
bool addZValue(double zValue=0) override
Adds a z-dimension to the geometry, initialized to a preset value.
QgsAbstractGeometry & operator=(const QgsAbstractGeometry &geom)
Multi point geometry collection.
static QPair< QgsWkbTypes::Type, QString > wktReadBlock(const QString &wkt)
Parses a WKT block of the format "TYPE( contents )" and returns a pair of geometry type to contents (...
QgsGeometryCollection * snappedToGrid(double hSpacing, double vSpacing, double dSpacing=0, double mSpacing=0) const override
Makes a new geometry with all the points or vertices snapped to the closest point of the grid...
QVector< QgsRingSequence > QgsCoordinateSequence
bool fromWkt(const QString &wkt) override
Sets the geometry from a WKT string.
bool isValid(QString &error, int flags=0) const override
Checks validity of the geometry, and returns true if the geometry is valid.
bool hasCurvedSegments() const override
Returns true if the geometry contains curved segments.
bool isValid(QString *errorMsg=nullptr, bool allowSelfTouchingHoles=false, QgsGeometry *errorLoc=nullptr) const override
Returns true if the geometry is valid.
virtual double vertexAngle(QgsVertexId vertex) const =0
Returns approximate angle at a vertex.
Multi line string geometry collection.
Curve polygon geometry type.
bool insertVertex(QgsVertexId position, const QgsPoint &vertex) override
Inserts a vertex into the geometry.
QgsAbstractGeometry * boundary() const override
Returns the closure of the combinatorial boundary of the geometry (ie the topological boundary of the...
virtual bool wktOmitChildType() const
Returns whether child type names are omitted from Wkt representations of the collection.
SegmentationToleranceType
Segmentation tolerance as maximum angle or maximum difference between approximation and circle...
double segmentLength(QgsVertexId startVertex) const override
Returns the length of the segment of the geometry which begins at startVertex.
QgsGeometryCollection & operator=(const QgsGeometryCollection &c)
virtual bool nextVertex(QgsVertexId &id, QgsPoint &vertex) const =0
Returns next vertex id and coordinates.
bool dropMValue() override
Drops any measure values which exist in the geometry.
static endian_t endian()
Returns whether this machine uses big or little endian.
static bool hasZ(Type type)
Tests whether a WKB type contains the z-dimension.
static QStringList wktGetChildBlocks(const QString &wkt, const QString &defaultType=QString())
Parses a WKT string and returns of list of blocks contained in the WKT.
static Type dropM(Type type)
Drops the m dimension (if present) for a WKB type and returns the new type.
Multi surface geometry collection.
double length() const override
Returns the length of the geometry.
QgsWkbTypes::Type mWkbType
virtual bool insertGeometry(QgsAbstractGeometry *g, int index)
Inserts a geometry before a specified index and takes ownership.
void transformVertices(const std::function< QgsPoint(const QgsPoint &) > &transform) override
Transforms the vertices from the geometry in place, applying the transform function to every vertex...
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...
QString wktTypeStr() const
Returns the WKT type string of the geometry.
bool isEmpty() const override
Returns true if the geometry is empty.
void adjacentVertices(QgsVertexId vertex, QgsVertexId &previousVertex, QgsVertexId &nextVertex) const override
Returns the vertices adjacent to a specified vertex within a geometry.
int nCoordinates() const override
Returns the number of nodes contained in the geometry.
Type
The WKB type describes the number of dimensions a geometry has.
bool addMValue(double mValue=0) override
Adds a measure to the geometry, initialized to a preset value.
void swapXy() override
Swaps the x and y coordinates from the geometry.
virtual void clearCache() const
Clears any cached parameters associated with the geometry, e.g., bounding boxes.
virtual double segmentLength(QgsVertexId startVertex) const =0
Returns the length of the segment of the geometry which begins at startVertex.
static Type addM(Type type)
Adds the m dimension to a WKB type and returns the new type.
int dimension() const override
Returns the inherent dimension of the geometry.
QgsGeometryConstPartIterator parts() const
Returns Java-style iterator for traversal of parts of the geometry.
Utility class for identifying a unique vertex within a geometry.
QString asWkt(int precision=17) const override
Returns a WKT representation of the geometry.
QgsGeometryCollection * createEmptyWithSameType() const override
Creates a new geometry with the same class and same WKB type as the original and transfers ownership...
double area() const override
Returns the area of the geometry.
QgsAbstractGeometry * childGeometry(int index) const override
Returns pointer to child geometry (for geometries with child geometries - i.e.
static Type addZ(Type type)
Adds the z dimension to a WKB type and returns the new type.
T qgsgeometry_cast(const QgsAbstractGeometry *geom)
int childCount() const override
Returns number of child geometries (for geometries with child geometries) or child points (for geomet...
Multi curve geometry collection.
QgsAbstractGeometry * segmentize(double tolerance=M_PI_2/90, SegmentationToleranceType toleranceType=MaximumAngle) const override
Returns a geometry without curves.
QString geometryType() const override
Returns a unique string representing the geometry type.
QByteArray asWkb() const override
Returns a WKB representation of the geometry.
bool deleteVertex(QgsVertexId position) override
Deletes a vertex within the geometry.
Abstract base class for all geometries.
void clearCache() const override
Clears any cached parameters associated with the geometry, e.g., bounding boxes.
Does vector analysis using the geos library and handles import, export, exception handling*...
QgsWkbTypes::Type wkbType() const
Returns the WKB type of the geometry.
int vertexNumberFromVertexId(QgsVertexId id) const override
Returns the vertex number corresponding to a vertex id.
Point geometry type, with support for z-dimension and m-values.
bool fromCollectionWkt(const QString &wkt, const QVector< QgsAbstractGeometry *> &subtypes, const QString &defaultChildWkbType=QString())
Reads a collection from a WKT string.
AxisOrder
Axis order for GML generation.
int numGeometries() const
Returns the number of geometries within the collection.
Contains geos related utilities and functions.
void combineExtentWith(const QgsRectangle &rect)
Expands the rectangle so that it covers both the original rectangle and the given rectangle...
bool removeDuplicateNodes(double epsilon=4 *std::numeric_limits< double >::epsilon(), bool useZValues=false) override
Removes duplicate nodes from the geometry, wherever removing the nodes does not result in a degenerat...
int partCount() const override
Returns count of parts contained in the geometry.
QVector< QgsAbstractGeometry *> mGeometries
double closestSegment(const QgsPoint &pt, QgsPoint &segmentPt, QgsVertexId &vertexAfter, int *leftOf=nullptr, double epsilon=4 *std::numeric_limits< double >::epsilon()) const override
Searches for the closest segment of the geometry to a given point.
QDomElement asGml3(QDomDocument &doc, int precision=17, const QString &ns="gml", QgsAbstractGeometry::AxisOrder axisOrder=QgsAbstractGeometry::AxisOrder::XY) const override
Returns a GML3 representation of the geometry.
static Type dropZ(Type type)
Drops the z dimension (if present) for a WKB type and returns the new type.
Multi polygon geometry collection.
QgsPoint vertexAt(QgsVertexId id) const override
Returns the point corresponding to a specified vertex id.
QgsRectangle boundingBox() const override
Returns the minimal bounding box for the geometry.
Line string geometry type, with support for z-dimension and m-values.
QgsGeometryCollection * toCurveType() const override
Returns the geometry converted to the more generic curve type.
QgsCoordinateSequence coordinateSequence() const override
Retrieves the sequence of geometries, rings and nodes.
const QgsAbstractGeometry * geometryN(int n) const
Returns a const reference to a geometry from within the collection.
bool moveVertex(QgsVertexId position, const QgsPoint &newPos) override
Moves a vertex within the geometry.
bool isNull() const
Test if the rectangle is null (all coordinates zero or after call to setMinimal()).
double perimeter() const override
Returns the perimeter of the geometry.
json asJsonObject(int precision=17) const override
Returns a json object representation of the geometry.
void transform(const QgsCoordinateTransform &ct, QgsCoordinateTransform::TransformDirection d=QgsCoordinateTransform::ForwardTransform, bool transformZ=false) override SIP_THROW(QgsCsException)
Transforms the geometry using a coordinate transform.
static bool hasM(Type type)
Tests whether a WKB type contains m values.
Compound curve geometry type.
Circular string geometry type.
QgsGeometryCollection * clone() const override
Clones the geometry by performing a deep copy.
static Type flatType(Type type)
Returns the flat type for a WKB type.
QgsWkbTypes::Type readHeader() const
readHeader
bool is3D() const
Returns true if the geometry is 3D and contains a z-value.
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...
static double closestSegmentFromComponents(T &container, ComponentType ctype, const QgsPoint &pt, QgsPoint &segmentPt, QgsVertexId &vertexAfter, int *leftOf, double epsilon)
int vertexCount(int part=0, int ring=0) const override
Returns the number of vertices of which this geometry is built.
void draw(QPainter &p) const override
Draws the geometry using the specified QPainter.
virtual bool addGeometry(QgsAbstractGeometry *g)
Adds a geometry and takes ownership. Returns true in case of success.
double vertexAngle(QgsVertexId vertex) const override
Returns approximate angle at a vertex.
QgsRectangle calculateBoundingBox() const override
Default calculator for the minimal bounding box for the geometry.
~QgsGeometryCollection() override
int ringCount(int part=0) const override
Returns the number of rings of which this geometry is built.