data-r-tree alternatives and similar packages
Based on the "data" category.
Alternatively, view data-r-tree alternatives based on common mentions on social networks and blogs.
-
data-stringmap
Haskell Project to convert the PrefixTree of the Holumbus into it's own Hackage Packet
Clean code begins in your IDE with SonarLint
Do you think we are missing an alternative of data-r-tree or a related project?
README
R-Trees (and in the future also R*-Trees)
R-Tree is a spatial data structure similar to Quadtrees or B-Trees.
An R-Tree is a balanced tree and optimized for lookups. This implemetation useses an R-Tree to privide a map to arbitrary values.
Some function names clash with "Prelude" names, therefore this module is usually
imported qualified
, e.g.:
> import Data.RTree (RTree)
> import qualified Data.RTree as RT
this implemetation is incomplete at the moment. Feel free to send comments, patches or merge requests.