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.
