QGIS API Documentation
3.16.0-Hannover (43b64b13f3)
|
Go to the documentation of this file.
23 #include <QJsonObject>
24 #include <nlohmann/json.hpp>
33 return qgsgeometry_cast< QgsPoint * >(
geometryN( index ) );
38 return qgsgeometry_cast< const QgsPoint * >(
geometryN( index ) );
43 return QStringLiteral(
"MultiPoint" );
48 auto result = qgis::make_unique< QgsMultiPoint >();
50 return result.release();
65 QString collectionWkt( wkt );
67 QRegExp regex(
"^\\s*MultiPoint\\s*[ZM]*\\s*\\(\\s*[-\\d]" );
68 regex.setCaseSensitivity( Qt::CaseInsensitive );
69 if ( regex.indexIn( collectionWkt ) >= 0 )
72 collectionWkt.replace(
'(', QLatin1String(
"((" ) ).replace(
')', QLatin1String(
"))" ) ).replace(
',', QLatin1String(
"),(" ) );
86 QDomElement elemMultiPoint = doc.createElementNS( ns, QStringLiteral(
"MultiPoint" ) );
89 return elemMultiPoint;
93 if ( qgsgeometry_cast<const QgsPoint *>( geom ) )
95 QDomElement elemPointMember = doc.createElementNS( ns, QStringLiteral(
"pointMember" ) );
96 elemPointMember.appendChild( geom->asGml2( doc,
precision, ns, axisOrder ) );
97 elemMultiPoint.appendChild( elemPointMember );
101 return elemMultiPoint;
106 QDomElement elemMultiPoint = doc.createElementNS( ns, QStringLiteral(
"MultiPoint" ) );
109 return elemMultiPoint;
113 if ( qgsgeometry_cast<const QgsPoint *>( geom ) )
115 QDomElement elemPointMember = doc.createElementNS( ns, QStringLiteral(
"pointMember" ) );
116 elemPointMember.appendChild( geom->asGml3( doc,
precision, ns, axisOrder ) );
117 elemMultiPoint.appendChild( elemPointMember );
121 return elemMultiPoint;
128 {
"type",
"MultiPoint" },
129 {
"coordinates", json::array() },
150 if ( !qgsgeometry_cast<QgsPoint *>( g ) )
189 if (
id.part < 0 || id.part >=
mGeometries.count() ||
id.vertex != 0 ||
id.ring != 0 )
210 if ( const QgsPoint *point = qgsgeometry_cast< const QgsPoint * >( part ) )
212 if ( !filter( *point ) )
227 } ), mGeometries.end() );
virtual bool dropMValue()=0
Drops any measure values which exist in the geometry.
virtual bool insertGeometry(QgsAbstractGeometry *g, int index)
Inserts a geometry before a specified index and takes ownership.
bool isEmpty() const override SIP_HOLDGIL
Returns true if the geometry is empty.
bool insertGeometry(QgsAbstractGeometry *g, int index) override
Inserts a geometry before a specified index and takes ownership.
virtual bool dropZValue()=0
Drops any z-dimensions which exist in the geometry.
int vertexNumberFromVertexId(QgsVertexId id) const override
Returns the vertex number corresponding to a vertex id.
virtual bool addZValue(double zValue=0)=0
Adds a z-dimension to the geometry, initialized to a preset value.
bool isValid(QString &error, int flags=0) const override SIP_HOLDGIL
Checks validity of the geometry, and returns true if the geometry is valid.
Point geometry type, with support for z-dimension and m-values.
int nCoordinates() const override SIP_HOLDGIL
Returns the number of nodes contained in the geometry.
virtual bool addMValue(double mValue=0)=0
Adds a measure to the geometry, initialized to a preset value.
static Type flatType(Type type) SIP_HOLDGIL
Returns the flat type for a WKB type.
bool addGeometry(QgsAbstractGeometry *g) override
Adds a geometry and takes ownership. Returns true in case of success.
QgsMultiPoint * clone() const override
Clones the geometry by performing a deep copy.
QVector< QgsAbstractGeometry * > mGeometries
QgsWkbTypes::Type mWkbType
QgsMultiPoint * createEmptyWithSameType() const override
Creates a new geometry with the same class and same WKB type as the original and transfers ownership.
bool isMeasure() const SIP_HOLDGIL
Returns true if the geometry contains m values.
void clear() override
Clears the geometry, ie reset it to a null geometry.
QgsWkbTypes::Type wkbType() const SIP_HOLDGIL
Returns the WKB type of the geometry.
AxisOrder
Axis order for GML generation.
virtual bool addGeometry(QgsAbstractGeometry *g)
Adds a geometry and takes ownership. Returns true in case of success.
double qgsRound(double number, int places)
Returns a double number, rounded (as close as possible) to the specified number of places.
bool fromCollectionWkt(const QString &wkt, const QVector< QgsAbstractGeometry * > &subtypes, const QString &defaultChildWkbType=QString())
Reads a collection from a WKT string.
Multi point geometry collection.
Abstract base class for all geometries.
bool is3D() const SIP_HOLDGIL
Returns true if the geometry is 3D and contains a z-value.
QgsPoint * pointN(int index)
Returns the point with the specified index.
bool fromWkt(const QString &wkt) override
Sets the geometry from a WKT string.
QgsMultiPoint * toCurveType() const override
Returns the geometry converted to the more generic curve type.
const QgsAbstractGeometry * geometryN(int n) const
Returns a const reference to a geometry from within the collection.
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.
Utility class for identifying a unique vertex within a geometry.
double segmentLength(QgsVertexId startVertex) const override
Returns the length of the segment of the geometry which begins at startVertex.
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...
void clear() override
Clears the geometry, ie reset it to a null geometry.
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.
void setZMTypeFromSubGeometry(const QgsAbstractGeometry *subggeom, QgsWkbTypes::Type baseGeomType)
Updates the geometry type based on whether sub geometries contain z or m values.
QgsAbstractGeometry * boundary() const override
Returns the closure of the combinatorial boundary of the geometry (ie the topological boundary of the...
QString geometryType() const override
Returns a unique string representing the geometry type.
bool wktOmitChildType() const override
Returns whether child type names are omitted from Wkt representations of the collection.
QgsMultiPoint() SIP_HOLDGIL
Constructor for an empty multipoint geometry.
json asJsonObject(int precision=17) const override
Returns a json object representation of the geometry.