18#ifndef QGSSPATIALINDEXKDBUSH_H
19#define QGSSPATIALINDEXKDBUSH_H
24class QgsSpatialIndexKDBushPrivate;
125 QList<QgsSpatialIndexKDBushData>
within(
const QgsPointXY &point,
double radius )
const;
143 QgsSpatialIndexKDBushPrivate *d =
nullptr;
Wrapper for iterator of features from vector data provider or vector layer.
An interface for objects which provide features via a getFeatures method.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Base class for feedback objects to be used for cancellation of something running in a worker thread.
A rectangle specified with double values.
A container for data stored inside a QgsSpatialIndexKDBush index.
QgsSpatialIndexKDBush(QgsFeatureIterator &fi, QgsFeedback *feedback=nullptr)
Constructor - creates KDBush index and bulk loads it with features from the iterator.
qgssize size() const
Returns the size of the index, i.e.
QList< QgsSpatialIndexKDBushData > intersects(const QgsRectangle &rectangle) const
Returns the list of features which fall within the specified rectangle.
QgsSpatialIndexKDBush(QgsFeatureIterator &fi, const std::function< bool(const QgsFeature &) > &callback, QgsFeedback *feedback=nullptr)
Constructor - creates KDBush index and bulk loads it with features from the source.
QgsSpatialIndexKDBush & operator=(const QgsSpatialIndexKDBush &other)
QList< QgsSpatialIndexKDBushData > within(const QgsPointXY &point, double radius) const
Returns the list of features which are within the given search radius of point.
friend class TestQgsSpatialIndexKdBush
unsigned long long qgssize
Qgssize is used instead of size_t, because size_t is stdlib type, unknown by SIP, and it would be har...