Tagged Questions

0
votes
1answer
15 views

Best way to index a tracklog

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 …
3
votes
5answers
192 views

Best Performance-Critical Algorithm for Solving Nearest Neighbor

We have a list of x,y pairs. Every pair represents a point on a 2D space. I want to find the closest point from this list, to a specific point xq,yq. What is the best performance-critical algorithm …
0
votes
0answers
55 views

Can I create a “Covering, Spatial” index in SQL Server 2008?

I currently have a site with a table that has Lat/Long float columns, and an index over those 2 columns plus another one I need to retrieve. I'm constantly querying this table to get the rows that …
1
vote
2answers
126 views

Error creating spatial index on MySql BLOB column

Hi, I am trying to add a spatial index to a table column named Location of type BLOB. If I try this: ALTER TABLE route ADD SPATIAL INDEX(Location); I get: Error: BLOB/TEXT column 'Location' …