QGIS API Documentation  3.4.15-Madeira (e83d02e274)
qgsmultisurface.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsmultisurface.h
3  -------------------------------------------------------------------
4 Date : 28 Oct 2014
5 Copyright : (C) 2014 by Marco Hugentobler
6 email : marco.hugentobler at sourcepole dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #ifndef QGSMULTISURFACEV2_H
17 #define QGSMULTISURFACEV2_H
18 
19 #include "qgis_core.h"
20 #include "qgis.h"
21 #include "qgsgeometrycollection.h"
22 
29 class CORE_EXPORT QgsMultiSurface: public QgsGeometryCollection
30 {
31  public:
33  QString geometryType() const override;
34  void clear() override;
35  QgsMultiSurface *clone() const override SIP_FACTORY;
36  QgsMultiSurface *toCurveType() const override SIP_FACTORY;
37  bool fromWkt( const QString &wkt ) override;
38  QDomElement asGml2( QDomDocument &doc, int precision = 17, const QString &ns = "gml", QgsAbstractGeometry::AxisOrder axisOrder = QgsAbstractGeometry::AxisOrder::XY ) const override;
39  QDomElement asGml3( QDomDocument &doc, int precision = 17, const QString &ns = "gml", QgsAbstractGeometry::AxisOrder axisOrder = QgsAbstractGeometry::AxisOrder::XY ) const override;
40  QString asJson( int precision = 17 ) const override;
41  bool addGeometry( QgsAbstractGeometry *g SIP_TRANSFER ) override;
42  bool insertGeometry( QgsAbstractGeometry *g SIP_TRANSFER, int index ) override;
43  QgsAbstractGeometry *boundary() const override SIP_FACTORY;
44 
45 #ifndef SIP_RUN
46 
54  inline const QgsMultiSurface *cast( const QgsAbstractGeometry *geom ) const
55  {
56  if ( !geom )
57  return nullptr;
58 
59  QgsWkbTypes::Type flatType = QgsWkbTypes::flatType( geom->wkbType() );
60 
61  if ( flatType == QgsWkbTypes::MultiSurface
62  || flatType == QgsWkbTypes::MultiPolygon )
63  return static_cast<const QgsMultiSurface *>( geom );
64  return nullptr;
65  }
66 #endif
67 
69 
70 };
71 
72 // clazy:excludeall=qstring-allocations
73 
74 #endif // QGSMULTISURFACEV2_H
int precision
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 clear() override
Clears the geometry, ie reset it to a null geometry.
bool fromWkt(const QString &wkt) override
Sets the geometry from a WKT string.
QgsWkbTypes::Type wkbType() const
Returns the WKB type of the geometry.
QgsAbstractGeometry * boundary() const override
Returns the closure of the combinatorial boundary of the geometry (ie the topological boundary of the...
Multi surface geometry collection.
QString asJson(int precision=17) const override
Returns a GeoJSON representation of the geometry.
virtual bool insertGeometry(QgsAbstractGeometry *g, int index)
Inserts a geometry before a specified index and takes ownership.
Type
The WKB type describes the number of dimensions a geometry has.
Definition: qgswkbtypes.h:68
Geometry collection.
QgsGeometryCollection * createEmptyWithSameType() const override
Creates a new geometry with the same class and same WKB type as the original and transfers ownership...
#define SIP_TRANSFER
Definition: qgis_sip.h:36
QString geometryType() const override
Returns a unique string representing the geometry type.
#define SIP_FACTORY
Definition: qgis_sip.h:69
Abstract base class for all geometries.
AxisOrder
Axis order for GML generation.
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.
QgsGeometryCollection * toCurveType() const override
Returns the geometry converted to the more generic curve 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.
Definition: qgswkbtypes.h:565
const QgsMultiSurface * cast(const QgsAbstractGeometry *geom) const
Cast the geom to a QgsMultiSurface.
virtual bool addGeometry(QgsAbstractGeometry *g)
Adds a geometry and takes ownership. Returns true in case of success.