25using namespace Qt::StringLiterals;
29QString QgsSpatialIndexAlgorithm::name()
const
31 return u
"createspatialindex"_s;
34QString QgsSpatialIndexAlgorithm::displayName()
const
36 return QObject::tr(
"Create spatial index" );
39QStringList QgsSpatialIndexAlgorithm::tags()
const
41 return QObject::tr(
"table,spatial,geometry,index,create,vector" ).split(
',' );
44QString QgsSpatialIndexAlgorithm::group()
const
46 return QObject::tr(
"Vector general" );
49QString QgsSpatialIndexAlgorithm::groupId()
const
51 return u
"vectorgeneral"_s;
60QString QgsSpatialIndexAlgorithm::shortHelpString()
const
62 return QObject::tr(
"Creates an index to speed up access to the features "
63 "in a layer based on their spatial location. Support "
64 "for spatial index creation is dependent on the layer's "
68QgsSpatialIndexAlgorithm *QgsSpatialIndexAlgorithm::createInstance()
const
70 return new QgsSpatialIndexAlgorithm();
73void QgsSpatialIndexAlgorithm::initAlgorithm(
const QVariantMap & )
82 QgsVectorLayer *layer = parameterAsVectorLayer( parameters, u
"INPUT"_s, context );
93 feedback->
pushInfo( QObject::tr(
"Could not create spatial index" ) );
98 feedback->
pushInfo( QObject::tr(
"Layer's data provider does not support spatial indexes" ) );
102 outputs.insert( u
"OUTPUT"_s, layer->
id() );
@ CreateSpatialIndex
Allows creation of spatial index.
QFlags< ProcessingAlgorithmFlag > ProcessingAlgorithmFlags
Flags indicating how and when an algorithm operates and should be exposed to users.
@ NoThreading
Algorithm is not thread safe and cannot be run in a background thread, e.g. for algorithms which mani...
virtual Qgis::ProcessingAlgorithmFlags flags() const
Returns the flags indicating how and when the algorithm operates and should be exposed to users.
Contains information about the context in which a processing algorithm is executed.
Custom exception class for processing related exceptions.
Base class for providing feedback from a processing algorithm.
virtual void pushInfo(const QString &info)
Pushes a general informational message from the algorithm.
A vector layer output for processing algorithms.
A vector layer (with or without geometry) parameter for processing algorithms.
Base class for vector data providers.
virtual bool createSpatialIndex()
Creates a spatial index on the datasource (if supported by the provider type).
virtual Q_INVOKABLE Qgis::VectorProviderCapabilities capabilities() const
Returns flags containing the supported capabilities.
Represents a vector layer which manages a vector based dataset.
QgsVectorDataProvider * dataProvider() final
Returns the layer's data provider, it may be nullptr.