R-Tree is a popular index structure for spatial data, stored as Minimum Bounding Rectangles (MBRs).

learn more… | top users | synonyms

4
votes
1answer
78 views

IComparer issue

I have a weird issue and I don't have a clue to track the reason. I will try to descript my issue clearly. I have a RTree class, in this class, I want to compare two rectanlge (here I called ...
0
votes
0answers
25 views

Why multiple thread search is slower than single thread search in my program?

I've implemented a R-link tree (a High-Concurrency Locking in R-Trees, which is similar to B-link tree, see http://db.cs.berkeley.edu/papers/vldb95-rtree.pdf). I've tested the insertion performance ...
0
votes
1answer
45 views

How many children (min, max) should a R-tree node have?

I have 500.000 unique 3D points, which I want to insert into a R-tree. The constructor of the R-tree accepts two parameters: the minimal number of children a node can have the maximal number of ...
0
votes
0answers
22 views

Deadlock in my r-link tree implementation

I am now trying to implement the r-link tree (see http://db.cs.berkeley.edu/papers/vldb95-rtree.pdf). However, there's deadlock occurs (my program gets stuck) in the insertion function. I've no idea ...
0
votes
1answer
25 views

r* tree reinsert

how does the reinsert works? When i select entries to reinsert, i run again insert algorithm? So reinserted entries can be anywhere in the tree? Or these entries can be only in siblings leafs, in ...
1
vote
1answer
77 views

Disk based indexing for multi dimensional data

I want to use some kinda disk based indexing for multi dimensional data. I want to be able to perform range searches - (10 - 20% of application usage) faster retrieval - (80%) data size ( in order ...
5
votes
2answers
112 views

efficient way to handle 2d line segments

I am having huge set of 2D line segments. So, I know; Line number, Begin (X,Y,Z) and End (x,Y,Z) of each line segment. I want to get proximity line segments for a given line segment. Likewise ...
0
votes
1answer
81 views

what should be the format of input data file which is passed as an object to MyDataStream stream(argv[1])

I am using "libspatialindex" library for creating an R-tree index. My data is 2 dimensional with the following values: (1, (1,5)), (19, (6,8)), (20, (3,8)), (4, (1,9)). The description of the ...
1
vote
1answer
71 views

Does libspatialindex needs to reserialize for a simple update?

I am looking for a c or c++ library for a desktop application ( no server-client, only need to edit data stored in disk) with the following features stores the spatial data in the virtual memory so ...
0
votes
1answer
116 views

R-tree in opencv2.1.0

I am using opencv2.1.0 and I want to use r-tree structures via opencv. My idea is to find near by line segments for a given line segment (all are in 2d) using r-tree. I really do not know how to use ...
1
vote
2answers
115 views

R* Tree overlap computation

I was reading through this implementation of the R* Tree, and I noticed that they are calculating overlap differently from how the paper defines it. In the paper, overlap is defined as such: For ...
0
votes
2answers
100 views

Choosing R* Tree split planes

I'm working on an implementation of the R* tree based off of this paper. There are a few questions I have about the choose split axis algorithm. The R*-tree uses the followmg method to find good ...
2
votes
2answers
164 views

Data structure(s) for storing nested boxes?

I have a list of rectangles stored as points. Currently, the data looks something like this: boxes = [{'p1': (0,0), 'p2': (100,20)}, {'p1': (5,5), 'p2': (15,15)}, {'p1': (20,5), ...
0
votes
2answers
156 views

R-Trees : should I reinvent the wheel?

I'm trying to understand how to implement an R-Tree which will be used for "selecting" a set of geometrical objects contained in a bounding rectangle. I checked out the article on Wikipedia, which ...
1
vote
1answer
216 views

How do I fix “ImportError: No module named index” when importing RTree in Python?

I tried installing Rtree 0.7.0 from PyPI, but I keep getting ImportError: No module named index when I try to use it. I downloaded and ran the Rtree-0.7.0.win32.exe from the Downloads page, and ...
3
votes
1answer
133 views

Insert new leaves in R* Tree

What is the steps of the insertion algorithm of R* Tree? Note: I want to be able to construct the tree by insertion. IT ALWAYS GIVES ME CRAP TREES with maximum overlap and maximum area cover not ...
-2
votes
1answer
251 views

R-TREE java code [closed]

I'm looking for a java code that takes as input a set of points and built a disk-based r-tree. I found only memory-based r-tree.
-4
votes
1answer
188 views

visualize R-tree python [closed]

I am creating R-Tree spatial index using Rtree library and would like to "visualise" index, getting something similar to this picture: Is there any simple way to do that, like ready to use libs or ...
2
votes
3answers
364 views

Persistent (Disk Based) R-Tree (or R* Tree)

How can R* Tree be implemented as a persistent (disk based) one? What is the architecture of the file for saving the R* Tree index or for saving leaf values? Notes: In addition how insert, update and ...
0
votes
2answers
79 views

(Re)loading the R Tree with spatialindex library

I am bulkloading an R Tree with spatialindex (http://libspatialindex.github.com/) library: string baseName = "streets"; size_t capacity = 10 * 1024 * 1024; bool bWriteThrough = false; indexIdentifier ...
0
votes
2answers
89 views

C++ spatialindex library: loading/storing main memory RTree from/to disk

I have created a main memory R* index with the help of spatialindex library in the following way (DBStream implements the interface for bulkLoading) // creating a main memory RTree memStorage = ...
4
votes
1answer
105 views

choice of parameters for R* Tree using SpatialIndex library

I am using the spatialindex library from http://libspatialindex.github.com/ I am creating an R* tree in the main memory: size_t capacity = 10; bool bWriteThrough = false; fileInMem = StorageManager ...
1
vote
1answer
38 views

Can dimensions be skipped in queries against R/R*/X-Trees?

Let's say we have a 4 dimensional tree with dimensions longitude, latitude, altitude and for illustration purposes, price. Can we query against longitude and latitude and optionally against either ...
0
votes
1answer
113 views

MySQL Storing different nested sets in same table

I have a table that stores nested sets. It stores different nested sets differentiated by a collectionid (yes i'm mixing terms here, really should be nestedsetid). it looks somewhat like this: id | ...
0
votes
1answer
378 views

Rtrees - basics of the algorithm

I am trying to understand the basics of RTree algorithm and I am trying to figure out how it performs the search of e.g. all retaurants within 1 km. We would have all objects stores in rectangles in ...
0
votes
0answers
66 views

R-Tree implementation in Java [duplicate]

Possible Duplicate: R-Tree Implementation Java Are there any r-tree implementations in Java that can support an arbitrary number of dimensions? I have only found java r-tree ...
0
votes
2answers
256 views

How to bulk-load an r-tree in C#?

I am looking for C# code to construct an r-tree. I have code that builds an r-tree incrementally i.e. items are added one by one to the tree, but I guess a better r-tree could be built if all items ...
2
votes
1answer
87 views

In rtree, how can I specify the threshold for float equality testing?

In rtree, how can I specify the threshold for float equality testing? When checking nearest neighbours, rtree can return more than the specified number of results, as if two points are equidistant, ...
3
votes
1answer
274 views

R tree and Graph partitioning library in R

I need to make efficient d-dimensional points searching and also make efficient k-NN queries of a point in d-dimension. Therefore i require an R-Tree library. I require a library which will build the ...
0
votes
1answer
72 views

Is there an algorithm, which can partition the space into N number of partitions given a random number N, where N<50

I read about R-Tree, kd-tree, bounding interval hierarchy etc for space-partitioning. I found that these data structures are useful for spatial querying. Although, they do partitioning, but I do not ...
1
vote
1answer
90 views

Can any tree be converted to an R-tree?

Is it possible, in theory, to convert any tree into an R-tree? For example, let's say I have a tree of nodes each characterized by an id, value and N features. Does it make sense to convert this to an ...
2
votes
2answers
250 views

algorithm to recursively divide a polygon into in/out quadrants: what's it called and where's the code?

I have a lot of points (hundreds of thousands) and I want to check which ones are inside a polygon. For a relatively small polygon (i.e., likely to contain only tens or hundreds of points) I can just ...
1
vote
1answer
92 views

Is there any existing database (preferred embedded ones) supporting large diminutional multi-dimentional search?

I would like to build a C++ application on top of an database that can support multi-dimensional search (e.g. KDTree or RTree). SQLite with R-tree enabled only supports up to 5 dimensions, which is ...
9
votes
2answers
2k views

R-Tree Implementation Java

I was searching the last few days for a stable implementation of the R-Tree with support of unlimited dimensions (20 or so would be enough). I only found this http://sourceforge.net/projects/jsi/ but ...
1
vote
1answer
557 views

Using R-tree indexes for non-spatial data in MySQL

I'm upgrading an inventory database and would like to speed up the queries. The bulk of the sorting is on 2 columns each of which is a range. For example. SELECT .... WHERE price BETWEEN 10.50 AND ...
1
vote
2answers
174 views

How to detect if a 2-D shape contains another shape with R-tree?

I have a program where a 2D shape is represented by an R-trees. I want to be able to efficiently detect whether a shape is completely contained within another shape. Is this possible with R-tree?
7
votes
1answer
635 views

Any R-Tree implementation in F# (or C#)? [duplicate]

Possible Duplicate: Is there any documented free R-Tree implementation for .NET? Are there any R-Tree implementations in F#? Assumptions are: no need for insertion or deletion, fixed set ...
2
votes
2answers
414 views

Which spatial data structure (algorithm) is best for (searching in) a set of regions (spacial data)?

I have a set of regions (geo-fences) which are polygons. This set of data is fixed; so there is no need for insertion and deletion of data. Which data structure can be used for searching for regions ...
8
votes
2answers
2k views

Java commercial-friendly R-tree implementation?

I need a commercial-friendly (Apache Licence, LGPL, Mozilla Public License etc) R-tree implementation in Java, in order to substitute the geonames Web Service for timezones, as suggested in this ...
1
vote
1answer
247 views

How to traverse Rtree 0.6.0 in Python

Does anyone know how to traverse the whole tree in this Python Rtree library? I've checked all its methods but failed to find a interface for this. Any help would be appreciated.
-1
votes
1answer
89 views

how to calculate r-tree's height?

i have a deep doubt about r'tree's height. if leaf node : N, fanout : m then r'tree's max height : log m (N) - 1 ? why this differs from b'tree?
2
votes
2answers
2k views

Android SQLite R-Tree - How to install module?

http://www.sqlite.org/rtree.html says that the r*tree is "included as part of the amalgamation but is disabled by default" and to enable it "simply compile with the SQLITE_ENABLE_RTREE C-preprocessor ...
1
vote
2answers
397 views

Spatial index in Berkeley DB

Does Berkeley DB have a spatial index such as R-tree?
5
votes
2answers
380 views

how to construct a RTree using given data points

I need to construct a R tree using given data points.I have searched for implementation of R tree.All the implementation i found construct r tree when given coordinates of rectangle as input.I need to ...
3
votes
2answers
583 views

R*-Tree C Implementation? [duplicate]

Possible Duplicate: C++ R - tree implementation wanted I've been hunting just about all evening... Anyone know of a R*-Tree implementation that builds on a modern C compiler? Thanks, ...
2
votes
1answer
253 views

How to construct R Tree(STR Method) with rectangle bounding boxes?

How to construct R Tree based on Sort Tile Recursion Method of rectangle bounding boxes along with searching alone? Totally 12 bounding boxes with (minx, miny) & (maxx , maxy) I don't need to ...
3
votes
2answers
515 views

Implementation of DBSCAN using R Trees

I am trying to implement DBSCAN using R tree.We can store data in the form of R trees.So my question is how can i store real time data in R trees and how should i implement region query to find ...
6
votes
1answer
2k views

What is the R*-Tree algorithm?

Where can I find enough documentation to implement an R*-Tree? Specifically, I need to be able to: Insert nodes Remove nodes Search for K nearest neighbours Find all nearest neighbours within ...
15
votes
3answers
2k views

Could anyone tell me what's the difference between KD-tree and R-tree

I look at the definition of KD-tree and R-tree, it seems that they are almost the same. Could anyone tell me what's the difference between KD-tree and R-tree? Thanks
2
votes
1answer
293 views

Spatial Index/R Tree Support in Perl

Anyone got any good hints for working with an RTree in Perl? Either a pure RTree implementation which is performant or something I could hijack from a GIS project? Or would it be easier to use ...

1 2