vote up 0 vote down star

Given a set of points (2D) representing a tracklog (i.e. a sequence of locations in a map, a GPS recording for instance) I am unsure which would be the most efficient way to index it, in order to quickly select those contained in a given rectangle for rendering.

Basically the two options I was considering were:

  • A R-Tree containing the tracklog represented as a set of edges (each edge being a pair of consecutive points, those points being also the MBR)
  • A K2-Tree containing the tracklog represented as a set of points (each point being a node in the tree).

All these structures will be stored in memory only, and although the tracklogs usually aren't big (approx. a couple thousands points) this will run in an embedded system, so both execution performance and memory footprint are critical.

The tracklog is already given in advance, so all access is to be read-only.

I'd appreciate any thoughts about the two options I mentioned, or better alternatives.

flag

1 Answer

vote up 0 vote down

An algorithm which just goes through the point list and determines if each point is in the rectangle will be O(N), so lets assume that's the performance you're trying to beat. Assuming you're doing many comparisons compared to the number of inserts of data into the data set, we can discount the performance of setting up your data structure and just look at query performance. It seems like creating two lists, one sorted by X coordinates and one sorted by Y coordinates would allow you to find the range of points matching your criteria in O(log N). Assuming you use a constant time container to store the points from each list and find their union you should be able to maintain O(log N) overall.

link|flag
One thing I forgot to mention, the tracklog will be read-only, so you don't need to consider insertion cases. I'm updating the question now. – Fabio Ceconello Oct 31 at 22:39
About the creation of two lists, notice that in the case in which the tracklog is too "horizontal" or too "vertical" the range in one of the lists would get all of the points, and you'd degenerate to O(N) time. – Fabio Ceconello Oct 31 at 22:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.