r_tree 3.0.0 r_tree: ^3.0.0 copied to clipboard
R-tree implementation to index and query two-dimensional data
3.0.0 #
- Removed deprecated symbols from the public API
- To migrate, simply switch from using
rtree.insert
orrtree.load
tortree.add
2.1.6 #
- Fixed a bug in load that could result in incorrect search results
- New method "add" consolidates insert and load (now deprecated) into a single entry point
- Deprecated symbols that weren't intended to be public, Node, multiselect, etc
2.1.5 #
- Performance improvements
- Improved correctness of internal state
- Included PRs:
2.1.4 #
- Update CHANGELOG.md
2.1.3 #
- Fixed a type error that could result from using load to build the tree
2.1.2 #
- Dart 2.19
2.1.0 #
- Added a new "load" API for bulk inserting items into an rtree
2.0.0 #
- Null safety migration
1.1.0 #
- Added support for filtering search results
1.0.6 #
- Added docstrings, example app, and this file!
1.0.5 #
- Dart 2 support (still supports Dart 1, too)
1.0.4 #
- Additional benchmarks and the ability to run benchmarks in the browser
- Minor performance enhancements in dart2js
1.0.3 #
- Improved performance and reduced GC churn when calling overlaps on RTreeContributor
1.0.2 #
- No functional changes, CI cleanup etc
1.0.1 #
- Strong mode compliance
- Added generics to nodes
1.0.0 #
- Initial release