23 QString QgsBoundaryAlgorithm::name()
 const 
   25   return QStringLiteral( 
"boundary" );
 
   28 QString QgsBoundaryAlgorithm::displayName()
 const 
   30   return QObject::tr( 
"Boundary" );
 
   33 QStringList QgsBoundaryAlgorithm::tags()
 const 
   35   return QObject::tr( 
"boundary,ring,border,exterior" ).split( 
',' );
 
   38 QString QgsBoundaryAlgorithm::group()
 const 
   40   return QObject::tr( 
"Vector geometry" );
 
   43 QString QgsBoundaryAlgorithm::groupId()
 const 
   45   return  QStringLiteral( 
"vectorgeometry" );
 
   48 QString QgsBoundaryAlgorithm::outputName()
 const 
   50   return QObject::tr( 
"Boundary" );
 
   53 QString QgsBoundaryAlgorithm::shortHelpString()
 const 
   55   return QObject::tr( 
"Returns the closure of the combinatorial boundary of the input geometries (ie the " 
   56                       "topological boundary of the geometry). For instance, a polygon geometry will have a " 
   57                       "boundary consisting of the linestrings for each ring in the polygon. Only valid for " 
   58                       "polygon or line layers." );
 
   61 QList<int> QgsBoundaryAlgorithm::inputLayerTypes()
 const 
   66 bool QgsBoundaryAlgorithm::supportInPlaceEdit( 
const QgsMapLayer * )
 const 
   71 QgsBoundaryAlgorithm *QgsBoundaryAlgorithm::createInstance()
 const 
   73   return new QgsBoundaryAlgorithm();
 
  117     if ( outputGeometry.
isNull() )
 
  119       feedback->
reportError( QObject::tr( 
"No boundary for feature %1 (possibly a closed linestring?)'" ).arg( feature.
id() ) );
 
virtual QgsAbstractGeometry * boundary() const =0
Returns the closure of the combinatorial boundary of the geometry (ie the topological boundary of the...
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
void clearGeometry()
Removes any geometry associated with the feature.
bool hasGeometry() const
Returns true if the feature has an associated geometry.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
A geometry is the spatial representation of a feature.
const QgsAbstractGeometry * constGet() const SIP_HOLDGIL
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
Base class for all map layer types.
Contains information about the context in which a processing algorithm is executed.
Flag
Flags controlling how QgsProcessingFeatureSource fetches features.
@ FlagSkipGeometryValidityChecks
Invalid geometry checks should always be skipped. This flag can be useful for algorithms which always...
Base class for providing feedback from a processing algorithm.
virtual void reportError(const QString &error, bool fatalError=false)
Reports that the algorithm encountered an error while executing.
@ TypeVectorLine
Vector line layers.
@ TypeVectorPolygon
Vector polygon layers.
static GeometryType geometryType(Type type) SIP_HOLDGIL
Returns the geometry type for a WKB type, e.g., both MultiPolygon and CurvePolygon would have a Polyg...
static bool hasM(Type type) SIP_HOLDGIL
Tests whether a WKB type contains m values.
Type
The WKB type describes the number of dimensions a geometry has.
static Type addZ(Type type) SIP_HOLDGIL
Adds the z dimension to a WKB type and returns the new type.
static bool hasZ(Type type) SIP_HOLDGIL
Tests whether a WKB type contains the z-dimension.
static Type addM(Type type) SIP_HOLDGIL
Adds the m dimension to a WKB type and returns the new type.
QList< QgsFeature > QgsFeatureList