- Upgrade binary wheels with libspatialindex-2.0.0 (:PR:`316`)
- Fix binary wheels for musllinux wheels (:PR:`316`)
- Update code style, replace isort and black with ruff, modern numpy rng (:PR:`319`)
- Remove libsidx version testing (:PR:`313`)
- Fix test failure with built library (:PR:`291` by :user:`sebastic`)
- Include spatialindex headers and add :py:meth:`~rtree.finder.get_include` (:PR:`292` by :user:`JDBetteridge`)
- Python 3.8+ is now required (:PR:`273`)
- Move project metadata to pyproject.toml (:PR:`269`)
- Refactor built wheels for PyPI (:PR:`276`)
- Fix memory leak when breaking mid-way in _get_objects and _get_ids (:PR:`266`) (thanks :user:`akariv`!)
- Fix up type hints :PR:`243` (thanks :user:`oderby`)
- Python 3.11 wheels :PR:`250` (thanks :user:`ewouth`)
- Python 3.7+ is now required (:PR:`212`) (thanks :user:`adamjstewart`!)
- Type hints (:PR:`215` and others) (thanks :user:`adamjstewart`!)
- Python 3.10 wheels, including osx-arm64 :PR:`224`
- Clean up libspatialindex C API mismatches :PR:`222` (thanks :user:`musicinmybrain`!)
- Many doc updates, fixes, and type hints (thanks :user:`adamjstewart`!) :PR:`212` :PR:`221` :PR:`217` :PR:`215`
- __len__ method for index :PR:`194`
- Prevent get_coordinate_pointers from mutating inputs #205 (thanks :user:`sjones94549`!)
- linux-aarch64 wheels :PR:`183` (thanks :user:`odidev`!)
- black (:PR:`218`) and flake8 (:PR:`145`) linting
- find_library and libspatialindex library loading :PR:`131`
- Refactored tests to be based on unittest :PR:`129`
- Update libspatialindex library loading code to adapt previous behavior :PR:`128`
- Empty data streams throw exceptions and do not partially construct indexes :PR:`127`
- Add Index.GetResultSetOffset()
- Add Index.contains() method for object and id (requires libspatialindex 1.9.3+) :PR:`116`
- Add Index.Flush() :PR:`107`
- Add TPRTree index support (thanks :user:`sdhiscocks` :PR:`117`)
- Return container sizes without returning objects :PR:`90`
- Add set_result_limit and set_result_offset for Index paging :commit:`44ad21aecd3f7b49314b9be12f3334d8bae7e827`
Bug fixes:
- Better exceptions in cases where stream functions throw :PR:`80`
- Migrated CI platform to Azure Pipelines https://dev.azure.com/hobuinc/rtree/_build?definitionId=5
- Minor test enhancements and fixups. Both libspatialindex 1.8.5 and libspatialindex 1.9.3 are tested with CI
- Support for Python 3 added.
- 0.7.0 relies on libspatialindex 1.7.1+.
- int64_t's should be used for IDs instead of uint64_t (requires libspatialindex 1.7.1 C API changes)
- Fix __version__
- More documentation at http://toblerity.github.com/rtree/
- Class documentation at http://toblerity.github.com/rtree/class.html
- Tweaks for PyPy compatibility. Still not compatible yet, however.
- Custom storage support by Mattias (requires libspatialindex 1.7.1)
- 0.6.0 relies on libspatialindex 1.5.0+.
- :py:meth:`~rtree.index.Index.intersection` and :py:meth:`~rtree.index.Index.nearest` methods return iterators over results instead of lists.
- Number of results for :py:meth:`~rtree.index.Index.nearest` defaults to 1.
- libsidx C library of 0.5.0 removed and included in libspatialindex
- objects="raw" in :py:meth:`~rtree.index.Index.intersection` to return the object sent in (for speed).
- :py:meth:`~rtree.index.Index.count` method to return the intersection count without the overhead of returning a list (thanks Leonard Norrgård).
- Improved bulk loading performance
- Supposedly no memory leaks :)
- Many other performance tweaks (see docs).
- Bulk loader supports interleaved coordinates
- Leaf queries. You can return the box and ids of the leaf nodes of the index. Useful for visualization, etc.
- Many more docstrings, sphinx docs, etc
0.5.0 was a complete refactoring to use libsidx - a C API for libspatialindex. The code is now ctypes over libsidx, and a number of new features are now available as a result of this refactoring.
- ability to store pickles within the index (clustered index)
- ability to use custom extension names for disk-based indexes
- ability to modify many index parameters at instantiation time
- storage of point data reduced by a factor of 4
- bulk loading of indexes at instantiation time
- ability to quickly return the bounds of the entire index
- ability to return the bounds of index entries
- much better windows support
- libspatialindex 1.4.0 required.
- Fix reference counting leak #181
- Windows support
- Eliminate uncounted references in add, delete, nearestNeighbor (#157).
- Testing improvements.
- Switch dependency to the single consolidated spatialindex library (1.3).
- Change to Python long integer identifiers (#126).
- Allow deletion of objects from indexes.
- Reraise index query errors as Python exceptions.
- Improved persistence.
- Link spatialindex system library.
- Add disk storage option for indexes (#320).
- Change license to LGPL.
- Moved from Pleiades to GIS-Python repo.
- Initial release.