mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
A very fast static spatial index for 2D points based on a flat KD-tree, using https://github.com/mourner/kdbush.hpp Compared to QgsSpatialIndex, this index: - supports single point features only (no multipoints) - is static (features cannot be added or removed from the index after construction) - is much faster! - supports true "distance based" searches, i.e. return all points within a radius from a search point
225 B
225 B
A C++11 port of kdbush, a fast static spatial index for 2D points.