18#include <spatialindex/SpatialIndex.h>
30#include <QMutexLocker>
53 mList.append( d.getIdentifier() );
56 void visitData( std::vector<const IData *> &v )
override
60 QList<QgsFeatureId> &mList;
73 : mNewIndex( newIndex ) {}
80 SpatialIndex::IShape *shape =
nullptr;
82 mNewIndex->insertData( 0,
nullptr, *shape, d.getIdentifier() );
86 void visitData( std::vector<const IData *> &v )
override
90 SpatialIndex::ISpatialIndex *mNewIndex =
nullptr;
94class QgsNearestNeighborComparator :
public INearestNeighborComparator
98 QgsNearestNeighborComparator(
const QHash< QgsFeatureId, QgsGeometry > *geometries,
const QgsPointXY &point,
double maxDistance )
99 : mGeometries( geometries )
100 , mGeom( QgsGeometry::fromPointXY( point ) )
101 , mMaxDistance( maxDistance )
105 QgsNearestNeighborComparator(
const QHash< QgsFeatureId, QgsGeometry > *geometries,
const QgsGeometry &geometry,
double maxDistance )
106 : mGeometries( geometries )
108 , mMaxDistance( maxDistance )
112 const QHash< QgsFeatureId, QgsGeometry > *mGeometries =
nullptr;
114 double mMaxDistance = 0;
115 QSet< QgsFeatureId > mFeaturesOutsideMaxDistance;
117 double getMinimumDistance(
const IShape &query,
const IShape &entry )
override
119 return query.getMinimumDistance( entry );
122 double getMinimumDistance(
const IShape &query,
const IData &data )
override
126 data.getShape( &pS );
127 double dist = query.getMinimumDistance( *pS );
135 if ( mGeometries && ( mMaxDistance <= 0.0 || dist <= mMaxDistance ) )
137 const QgsGeometry other = mGeometries->value( data.getIdentifier() );
141 if ( mMaxDistance > 0 && dist > mMaxDistance )
151 mFeaturesOutsideMaxDistance.insert( data.getIdentifier() );
152 return mMaxDistance + 0.00000001;
164class QgsFeatureIteratorDataStream :
public IDataStream
169 const std::function<
bool(
const QgsFeature & ) > *callback =
nullptr )
171 , mFeedback( feedback )
173 , mCallback( callback )
178 ~QgsFeatureIteratorDataStream()
override
184 IData *getNext()
override
186 if ( mFeedback && mFeedback->isCanceled() )
189 RTree::Data *ret = mNextData;
196 bool hasNext()
override {
return nullptr != mNextData; }
199 uint32_t size()
override { Q_ASSERT(
false &&
"not available" );
return 0; }
202 void rewind()
override { Q_ASSERT(
false &&
"not available" ); }
204 QHash< QgsFeatureId, QgsGeometry > geometries;
210 SpatialIndex::Region r;
212 while ( mFi.nextFeature( f ) )
216 const bool res = ( *mCallback )( f );
223 if ( QgsSpatialIndex::featureInfo( f, r,
id ) )
225 mNextData =
new RTree::Data( 0,
nullptr, r,
id );
234 QgsFeatureIterator mFi;
235 RTree::Data *mNextData =
nullptr;
236 QgsFeedback *mFeedback =
nullptr;
238 const std::function< bool(
const QgsFeature & ) > *mCallback =
nullptr;
249class QgsSpatialIndexData :
public QSharedData
260 QHash< QgsFeatureId, QgsGeometry > mGeometries;
271 const std::function<
bool(
const QgsFeature & ) > *callback =
nullptr )
274 QgsFeatureIteratorDataStream fids( fi, feedback, mFlags, callback );
277 mGeometries = fids.geometries;
280 QgsSpatialIndexData(
const QgsSpatialIndexData &other )
281 : QSharedData( other )
282 , mFlags( other.mFlags )
283 , mGeometries( other.mGeometries )
285 const QMutexLocker locker( &other.mMutex );
290 double low[] = { std::numeric_limits<double>::lowest(), std::numeric_limits<double>::lowest() };
291 double high[] = { std::numeric_limits<double>::max(), std::numeric_limits<double>::max() };
292 const SpatialIndex::Region query( low, high, 2 );
293 QgsSpatialIndexCopyVisitor visitor( mRTree );
294 other.mRTree->intersectsWithQuery( query, visitor );
297 ~QgsSpatialIndexData()
303 QgsSpatialIndexData &operator=(
const QgsSpatialIndexData &rh ) =
delete;
305 void initTree( IDataStream *inputStream =
nullptr )
308 mStorage = StorageManager::createNewMemoryStorageManager();
311 const double fillFactor = 0.7;
312 const unsigned long indexCapacity = 10;
313 const unsigned long leafCapacity = 10;
314 const unsigned long dimension = 2;
315 const RTree::RTreeVariant variant = RTree::RV_RSTAR;
318 SpatialIndex::id_type indexId;
320 if ( inputStream && inputStream->hasNext() )
321 mRTree = RTree::createAndBulkLoadNewRTree( RTree::BLM_STR, *inputStream, *mStorage, fillFactor, indexCapacity,
322 leafCapacity, dimension, variant, indexId );
324 mRTree = RTree::createNewRTree( *mStorage, fillFactor, indexCapacity,
325 leafCapacity, dimension, variant, indexId );
329 SpatialIndex::IStorageManager *mStorage =
nullptr;
332 SpatialIndex::ISpatialIndex *mRTree =
nullptr;
334 mutable QRecursiveMutex mMutex;
345 d =
new QgsSpatialIndexData( flags );
350 d =
new QgsSpatialIndexData( fi, feedback, flags );
356 d =
new QgsSpatialIndexData( fi,
nullptr, flags, &callback );
376 if (
this != &other )
384 if ( !featureInfo( f, rect,
id ) )
409 if ( !featureInfo( feature, rect,
id ) )
416 const QMutexLocker locker( &d->mMutex );
417 d->mGeometries.insert( feature.
id(), feature.
geometry() );
426 QgsFeatureList::iterator fIt = features.begin();
428 for ( ; fIt != features.end(); ++fIt )
450 const QMutexLocker locker( &d->mMutex );
458 catch ( Tools::Exception &e )
461 QgsDebugError( QStringLiteral(
"Tools::Exception caught when adding feature to QgsSpatialIndex: %1" ).arg( e.what().c_str() ) );
463 catch (
const std::exception &e )
466 QgsDebugError( QStringLiteral(
"std::exception caught when adding feature to QgsSpatialIndex: %1" ).arg( e.what() ) );
470 QgsDebugError( QStringLiteral(
"unknown spatial index exception caught when adding feature to QgsSpatialIndex" ) );
478 SpatialIndex::Region r;
480 if ( !featureInfo( f, r,
id ) )
483 const QMutexLocker locker( &d->mMutex );
486 d->mGeometries.remove( f.
id() );
494 const QMutexLocker locker( &d->mMutex );
497 d->mGeometries.remove(
id );
503 QList<QgsFeatureId> list;
508 const QMutexLocker locker( &d->mMutex );
509 d->mRTree->intersectsWithQuery( r, visitor );
516 QList<QgsFeatureId> list;
519 double pt[2] = { point.
x(), point.
y() };
520 const Point p( pt, 2 );
522 const QMutexLocker locker( &d->mMutex );
524 point, maxDistance );
525 d->mRTree->nearestNeighborQuery( neighbors, p, visitor, nnc );
527 if ( maxDistance > 0 )
530 list.erase( std::remove_if( list.begin(), list.end(),
533 return nnc.mFeaturesOutsideMaxDistance.contains( id );
542 QList<QgsFeatureId> list;
547 const QMutexLocker locker( &d->mMutex );
550 d->mRTree->nearestNeighborQuery( neighbors, r, visitor, nnc );
552 if ( maxDistance > 0 )
555 list.erase( std::remove_if( list.begin(), list.end(),
558 return nnc.mFeaturesOutsideMaxDistance.contains( id );
567 const QMutexLocker locker( &d->mMutex );
568 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)