Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
833 views

Is there any documented free R-Tree implementation for .NET?

I found some open source R-Tree implementations in C#, but none with documentation nor signs of being used by someone else than the developer.
8
votes
2answers
236 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 ...
7
votes
1answer
234 views

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

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 ...
5
votes
2answers
571 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
4
votes
1answer
678 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 ...
4
votes
3answers
1k views

C++ R - tree implementation wanted

Does anyone know good and simple to use in production code R-tree (actually, any implementations - R*, R+ or PR-tree would be great)? It doesn't matter if it is a template or library implementation, ...
3
votes
2answers
336 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 ...
3
votes
1answer
106 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
1answer
192 views

Can R-Trees maintain z-order when using 2 dimensions?

I'm writing an implementation of an R-Tree based on Guttman's original paper. I was thinking about using an R-Tree for a program I'm writing that involves a lot of rectangles on the screen that can be ...
3
votes
1answer
800 views

Similarity search between time series in Matlab. Possible ? I cant find R-tree implementation in matlab

I would like to implement similarity search in matlab. I wanna to know is it possible ? My plan is to do use 2 popular similarity measurement which are Euclidean Distance and Dynamic Time Warping. ...
3
votes
2answers
518 views

R Tree 50,000 foot overview?

I'm working on a school project that involves taking a lat/long point and finding the top five closest points in a known list of places. The list is to be stored in memory, with the caveat that we ...
2
votes
2answers
151 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 ...
2
votes
2answers
645 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 ...
2
votes
2answers
195 views

R*-Tree C Implementation?

I've been hunting just about all evening... Anyone know of a R*-Tree implementation that builds on a modern C compiler? Thanks, Chenz
2
votes
1answer
109 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 ...
2
votes
1answer
199 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 ...
2
votes
4answers
313 views

Which applications use R-Trees?

Besides GIS applications, which other applications or libraries use R-trees and its variants?
1
vote
2answers
50 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
35 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 ...
1
vote
2answers
61 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?
1
vote
2answers
254 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 ...
1
vote
1answer
504 views

How to use R-Tree for plotting large number of map markers on google maps

After searching SO and multiple articles I haven't found a solution to my problem. What I am trying to achieve is to load 20,000 markers on Google Maps. R-Tree seems like a good approach but it's ...
1
vote
1answer
92 views

Intersecting boundaries with lucene

I'm using Lucene, and I'm trying to find a way to index and retrieve documents that have a ranged property. For example I have: Document 1: Price:[30 TO 50] Document 2: Price:[45 TO 60] Document 3: ...
1
vote
1answer
189 views

How to start with an R-tree index in IBM Informix

I have an assignment in which I need to build R-tree indexes on a table and query them. But I am not getting proper tutorial or guide which specifically deals with R-tree in IBM Informix and querying ...
0
votes
1answer
111 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 ...
0
votes
1answer
73 views

How to traverse the python implemented Rtree 0.6.0

Did anyone use the Rtree library? Do you guys know whether there is a way to traverse the whole tree? I've checked all its methods but failed to find a interface for this. Any suggestion will be ...
0
votes
2answers
183 views

Spatial index in Berkeley DB

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

Decent (r-tree, quad-tree or similar) library in ruby for searching spatial data

I have a database of 20k+ cities with latitude and longitude and I need to make lot of nearest point queries (which city is the nearest to certain lat,long point) against this dataset. I guess an ...
0
votes
2answers
982 views

R-tree implementation in matlab

please, any one tell me how we can implement the R-tree structure in matlab to speed the image retrieval system , I would like to inform you that my database space a feature vector of Color Histogram ...
-1
votes
1answer
47 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?