Popularity
7.2
Stable
Activity
4.7
-
12
3
12

Monthly Downloads: 32
Programming language: Haskell
License: MIT License
Tags: Data     Data Structures    
Latest version: v0.6.0

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.

Do you think we are missing an alternative of data-r-tree or a related project?

Add another 'data' Package

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.