| CARVIEW |
Select Language
HTTP/1.1 200 OK
Connection: keep-alive
Server: nginx/1.24.0 (Ubuntu)
Content-Type: text/html; charset=utf-8
Cache-Control: public, max-age=300
Content-Encoding: gzip
Via: 1.1 varnish, 1.1 varnish
Accept-Ranges: bytes
Age: 0
Date: Sat, 17 Jan 2026 22:37:32 GMT
X-Served-By: cache-dfw-ktki8620055-DFW, cache-bom-vanm7210077-BOM
X-Cache: MISS, MISS
X-Cache-Hits: 0, 0
X-Timer: S1768689452.318270,VS0,VE369
Vary: Accept, Accept-Encoding
transfer-encoding: chunked
data-r-tree: R-Tree is a spatial data structure similar to Quadtrees or B-Trees.
[Skip to Readme]
data-r-tree: R-Tree is a spatial data structure similar to Quadtrees or B-Trees.
Deprecated
in favor of r-tree
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.
[Skip to Readme]
Downloads
- data-r-tree-0.6.0.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Maintainer's Corner
For package maintainers and hackage trustees
Candidates
- No Candidates
| Versions [RSS] | 0.0.1.0, 0.0.2.0, 0.0.3.0, 0.0.4.0, 0.0.5.0, 0.6.0 |
|---|---|
| Change log | changelog.md |
| Dependencies | base (>=4 && <5), binary (>=0.8 && <0.11), deepseq (>=1.4 && <1.5) [details] |
| License | MIT |
| Copyright | Sebastian Wagner, Birte Wagner |
| Author | Sebastian Wagner, Birte Wagner |
| Maintainer | sebastian@spawnhost.de |
| Uploaded | by SebastianPhilipp at 2020-01-22T10:52:31Z |
| Category | Data Structures |
| Home page | https://github.com/sebastian-philipp/r-tree |
| Bug tracker | https://github.com/sebastian-philipp/r-tree/issues |
| Source repo | head: git clone https://github.com/sebastian-philipp/r-tree.git |
| Distributions | |
| Reverse Dependencies | 2 direct, 0 indirect [details] |
| Downloads | 7266 total (23 in the last 30 days) |
| Rating | (no votes yet) [estimated by Bayesian average] |
| Your Rating |
|
| Status | Docs available [build log] Last success reported on 2020-01-22 [all 1 reports] |
Readme for data-r-tree-0.6.0
[back to package description]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.