18#include <spatialindex/SpatialIndex.h>
30#include <QMutexLocker>
33using namespace Qt::StringLiterals;
56 mList.append( d.getIdentifier() );
59 void visitData( std::vector<const IData *> &v )
override
63 QList<QgsFeatureId> &mList;
76 : mNewIndex( newIndex ) {}
83 SpatialIndex::IShape *shape =
nullptr;
85 mNewIndex->insertData( 0,
nullptr, *shape, d.getIdentifier() );
89 void visitData( std::vector<const IData *> &v )
override
93 SpatialIndex::ISpatialIndex *mNewIndex =
nullptr;
97class QgsNearestNeighborComparator :
public INearestNeighborComparator
101 QgsNearestNeighborComparator(
const QHash< QgsFeatureId, QgsGeometry > *geometries,
const QgsPointXY &point,
double maxDistance )
102 : mGeometries( geometries )
103 , mGeom( QgsGeometry::fromPointXY( point ) )
104 , mMaxDistance( maxDistance )
108 QgsNearestNeighborComparator(
const QHash< QgsFeatureId, QgsGeometry > *geometries,
const QgsGeometry &geometry,
double maxDistance )
109 : mGeometries( geometries )
111 , mMaxDistance( maxDistance )
115 const QHash< QgsFeatureId, QgsGeometry > *mGeometries =
nullptr;
117 double mMaxDistance = 0;
118 QSet< QgsFeatureId > mFeaturesOutsideMaxDistance;
120 double getMinimumDistance(
const IShape &query,
const IShape &entry )
override
122 return query.getMinimumDistance( entry );
125 double getMinimumDistance(
const IShape &query,
const IData &data )
override
129 data.getShape( &pS );
130 double dist = query.getMinimumDistance( *pS );
138 if ( mGeometries && ( mMaxDistance <= 0.0 || dist <= mMaxDistance ) )
140 const QgsGeometry other = mGeometries->value( data.getIdentifier() );
144 if ( mMaxDistance > 0 && dist > mMaxDistance )
154 mFeaturesOutsideMaxDistance.insert( data.getIdentifier() );
155 return mMaxDistance + 0.00000001;
167class QgsFeatureIteratorDataStream :
public IDataStream
172 const std::function<
bool(
const QgsFeature & ) > *callback =
nullptr )
174 , mFeedback( feedback )
176 , mCallback( callback )
181 ~QgsFeatureIteratorDataStream()
override
187 IData *getNext()
override
189 if ( mFeedback && mFeedback->isCanceled() )
192 RTree::Data *ret = mNextData;
199 bool hasNext()
override {
return nullptr != mNextData; }
202 uint32_t size()
override { Q_ASSERT(
false &&
"not available" );
return 0; }
205 void rewind()
override { Q_ASSERT(
false &&
"not available" ); }
207 QHash< QgsFeatureId, QgsGeometry > geometries;
213 SpatialIndex::Region r;
215 while ( mFi.nextFeature( f ) )
219 const bool res = ( *mCallback )( f );
226 if ( QgsSpatialIndex::featureInfo( f, r,
id ) )
228 mNextData =
new RTree::Data( 0,
nullptr, r,
id );
237 QgsFeatureIterator mFi;
238 RTree::Data *mNextData =
nullptr;
239 QgsFeedback *mFeedback =
nullptr;
241 const std::function< bool(
const QgsFeature & ) > *mCallback =
nullptr;
252class QgsSpatialIndexData :
public QSharedData
263 QHash< QgsFeatureId, QgsGeometry > mGeometries;
274 const std::function<
bool(
const QgsFeature & ) > *callback =
nullptr )
277 QgsFeatureIteratorDataStream fids( fi, feedback, mFlags, callback );
280 mGeometries = fids.geometries;
283 QgsSpatialIndexData(
const QgsSpatialIndexData &other )
284 : QSharedData( other )
285 , mFlags( other.mFlags )
286 , mGeometries( other.mGeometries )
288 const QMutexLocker locker( &other.mMutex );
293 double low[] = { std::numeric_limits<double>::lowest(), std::numeric_limits<double>::lowest() };
294 double high[] = { std::numeric_limits<double>::max(), std::numeric_limits<double>::max() };
295 const SpatialIndex::Region query( low, high, 2 );
296 QgsSpatialIndexCopyVisitor visitor( mRTree );
297 other.mRTree->intersectsWithQuery( query, visitor );
300 ~QgsSpatialIndexData()
306 QgsSpatialIndexData &operator=(
const QgsSpatialIndexData &rh ) =
delete;
308 void initTree( IDataStream *inputStream =
nullptr )
311 mStorage = StorageManager::createNewMemoryStorageManager();
314 const double fillFactor = 0.7;
315 const unsigned long indexCapacity = 10;
316 const unsigned long leafCapacity = 10;
317 const unsigned long dimension = 2;
318 const RTree::RTreeVariant variant = RTree::RV_RSTAR;
321 SpatialIndex::id_type indexId;
323 if ( inputStream && inputStream->hasNext() )
324 mRTree = RTree::createAndBulkLoadNewRTree( RTree::BLM_STR, *inputStream, *mStorage, fillFactor, indexCapacity,
325 leafCapacity, dimension, variant, indexId );
327 mRTree = RTree::createNewRTree( *mStorage, fillFactor, indexCapacity,
328 leafCapacity, dimension, variant, indexId );
332 SpatialIndex::IStorageManager *mStorage =
nullptr;
335 SpatialIndex::ISpatialIndex *mRTree =
nullptr;
337 mutable QRecursiveMutex mMutex;
348 d =
new QgsSpatialIndexData( flags );
353 d =
new QgsSpatialIndexData( fi, feedback, flags );
359 d =
new QgsSpatialIndexData( fi,
nullptr, flags, &callback );
379 if (
this != &other )
387 if ( !featureInfo( f, rect,
id ) )
412 if ( !featureInfo( feature, rect,
id ) )
419 const QMutexLocker locker( &d->mMutex );
420 d->mGeometries.insert( feature.
id(), feature.
geometry() );
429 QgsFeatureList::iterator fIt = features.begin();
431 for ( ; fIt != features.end(); ++fIt )
453 const QMutexLocker locker( &d->mMutex );
461 catch ( Tools::Exception &e )
464 QgsDebugError( u
"Tools::Exception caught when adding feature to QgsSpatialIndex: %1"_s.arg( e.what().c_str() ) );
466 catch (
const std::exception &e )
469 QgsDebugError( u
"std::exception caught when adding feature to QgsSpatialIndex: %1"_s.arg( e.what() ) );
473 QgsDebugError( u
"unknown spatial index exception caught when adding feature to QgsSpatialIndex"_s );
481 SpatialIndex::Region r;
483 if ( !featureInfo( f, r,
id ) )
486 const QMutexLocker locker( &d->mMutex );
489 d->mGeometries.remove( f.
id() );
497 const QMutexLocker locker( &d->mMutex );
500 d->mGeometries.remove(
id );
506 QList<QgsFeatureId> list;
511 const QMutexLocker locker( &d->mMutex );
512 d->mRTree->intersectsWithQuery( r, visitor );
519 QList<QgsFeatureId> list;
522 double pt[2] = { point.
x(), point.
y() };
523 const Point p( pt, 2 );
525 const QMutexLocker locker( &d->mMutex );
527 point, maxDistance );
528 d->mRTree->nearestNeighborQuery( neighbors, p, visitor, nnc );
530 if ( maxDistance > 0 )
533 list.erase( std::remove_if( list.begin(), list.end(),
536 return nnc.mFeaturesOutsideMaxDistance.contains( id );
545 QList<QgsFeatureId> list;
550 const QMutexLocker locker( &d->mMutex );
553 d->mRTree->nearestNeighborQuery( neighbors, r, visitor, nnc );
555 if ( maxDistance > 0 )
558 list.erase( std::remove_if( list.begin(), list.end(),
561 return nnc.mFeaturesOutsideMaxDistance.contains( id );
570 const QMutexLocker locker( &d->mMutex );
571 return d->mGeometries.value(
id );
Custom visitor that adds found features to list.
void visitNode(const INode &n) override
void visitData(std::vector< const IData * > &v) override
QgisVisitor(QList< QgsFeatureId > &list)
void visitData(const IData &d) override
Wrapper for iterator of features from vector data provider or vector layer.
Wraps a request for features to a vector layer (or directly its vector data provider).
An interface for objects which provide features via a getFeatures method.
virtual QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest()) const =0
Returns an iterator for the features in the source.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
bool hasGeometry() const
Returns true if the feature has an associated geometry.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
A geometry is the spatial representation of a feature.
double distance(const QgsGeometry &geom) const
Returns the minimum distance between this geometry and another geometry.
QgsRectangle boundingBox() const
Returns the bounding box of the geometry.
A rectangle specified with double values.
bool isFinite() const
Returns true if the rectangle has finite boundaries.
void visitData(std::vector< const IData * > &v) override
void visitData(const IData &d) override
QgsSpatialIndexCopyVisitor(SpatialIndex::ISpatialIndex *newIndex)
void visitNode(const INode &n) override
static SpatialIndex::Region rectangleToRegion(const QgsRectangle &rectangle)
Converts a QGIS rectangle to a SpatialIndex region.
bool addFeatures(QgsFeatureList &features, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags()) override
Adds a list of features to the index.
@ FlagStoreFeatureGeometries
Indicates that the spatial index should also store feature geometries. This requires more memory,...
QgsSpatialIndex & operator=(const QgsSpatialIndex &other)
QgsSpatialIndex(QgsSpatialIndex::Flags flags=QgsSpatialIndex::Flags())
Constructor for QgsSpatialIndex.
QAtomicInt refs() const
Gets reference count - just for debugging!
QList< QgsFeatureId > nearestNeighbor(const QgsPointXY &point, int neighbors=1, double maxDistance=0) const
Returns nearest neighbors to a point.
QList< QgsFeatureId > intersects(const QgsRectangle &rectangle) const
Returns a list of features with a bounding box which intersects the specified rectangle.
~QgsSpatialIndex() override
Destructor finalizes work with spatial index.
bool addFeature(QgsFeature &feature, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags()) override
Adds a feature to the index.
Q_DECL_DEPRECATED bool insertFeature(const QgsFeature &feature)
Adds a feature to the index.
QgsGeometry geometry(QgsFeatureId id) const
Returns the stored geometry for the indexed feature with matching id.
bool deleteFeature(const QgsFeature &feature)
Removes a feature from the index.
QList< QgsFeature > QgsFeatureList
qint64 QgsFeatureId
64 bit feature ids negative numbers are used for uncommitted/newly added features
#define FID_TO_NUMBER(fid)
#define QgsDebugError(str)