0
0
mirror of https://github.com/rls-moe/nyx synced 2024-09-28 16:03:47 +02:00
nyx/vendor/github.com/tidwall/rtree
2020-04-19 10:43:19 +02:00
..
.travis.yml updated dependencies, using go.mod now 2020-04-19 10:43:19 +02:00
LICENSE MVP, no mod tools or anything but it works 2017-03-12 20:37:53 +01:00
README.md MVP, no mod tools or anything but it works 2017-03-12 20:37:53 +01:00
rtree.go MVP, no mod tools or anything but it works 2017-03-12 20:37:53 +01:00

RTree implementation for Go

Build Status GoDoc

This package provides an in-memory R-Tree implementation for Go, useful as a spatial data structure. It has support for 1-20 dimensions, and can store and search multidimensions interchangably in the same tree.

Authors

  • 1983 Original algorithm and test code by Antonin Guttman and Michael Stonebraker, UC Berkely
  • 1994 ANCI C ported from original test code by Melinda Green
  • 1995 Sphere volume fix for degeneracy problem submitted by Paul Brook
  • 2004 Templated C++ port by Greg Douglas
  • 2016 Go port by Josh Baker

License

RTree source code is available under the MIT License.