How best to perform corridor range search over a set of latitude / longitude coordinates - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T17:33:56Z http://stackoverflow.com/feeds/question/445109 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/445109/how-best-to-perform-corridor-range-search-over-a-set-of-latitude-longitude-coor 3 How best to perform corridor range search over a set of latitude / longitude coordinates hooli 2009-01-14T23:35:21Z 2009-01-24T04:02:11Z <p>Hi,</p> <p>What would be the best approach to finding the set of coordinates, from say about 5,00, which lie within a path of points, given a specified width. eg an aircraft following several waypoints.</p> <p>Is there a good way to also sort them in the same order as the route.</p> <p>Calculation speed would be more important than accuracy, since I'm looking at producing a list of suggestions.</p> <p>From what I've looked at, I presume it's not straightforward, and the question is a bit broad, but any suggestions/pointers would be welcome, eg for:</p> <ol> <li>Best way to store lat / long, or use spherical coordinates</li> <li>Having additional clustering info in the coordinate set</li> <li>Can a transform of some kind be use to simplify the range check</li> <li>What is the best way to order the points</li> </ol> <p>Is here a better approach than doing a circular/square check on several equi-distant points along the path.</p> http://stackoverflow.com/questions/445109/how-best-to-perform-corridor-range-search-over-a-set-of-latitude-longitude-coor/445241#445241 1 Answer by Andrei Krotkov for How best to perform corridor range search over a set of latitude / longitude coordinates Andrei Krotkov 2009-01-15T00:47:04Z 2009-01-15T00:47:04Z <p>I assume you know how to calculate the distance between the points and the path. Latitude/Longitude is simple (x,y) data, although with fractional data rather than just integers. </p> <p>5,000 data points really isn't that bad to compute the distance to the path for each point, but if you wish to scale, some kind of relational data structure such as a quadtree would be your best bet to store the points. That way, you can immediately discard the points that are nowhere near your path. </p> http://stackoverflow.com/questions/445109/how-best-to-perform-corridor-range-search-over-a-set-of-latitude-longitude-coor/445291#445291 0 Answer by jdt141 for How best to perform corridor range search over a set of latitude / longitude coordinates jdt141 2009-01-15T01:06:44Z 2009-01-15T01:06:44Z <blockquote> <pre><code> Best way to store lat / long, or use spherical coordinates </code></pre> </blockquote> <p>What are you trying to store? The path, or the point you're searching for? If its the path, then it is fundamentally a list of some kind, as points are ordered. Depending on how/if you will manipulate the path, that will determine your data structure. </p> <blockquote> <p>Having additional clustering info in the coordinate set</p> </blockquote> <p>what information are you trying to store? If, for example, you chose a linked list as your data structure, you could have a linked list of class objects containing whatever information you needed. </p> <blockquote> <p>Can a transform of some kind be use to simplify the range check</p> </blockquote> <p>You can transform Lat/Long into UTM or any other coordinate system. The range between two points will still be the same.</p> <blockquote> <p>What is the best way to order the points</p> </blockquote> <p>If you're storing a path, then the order matters - as in point N-1 -> N -> N+1, and so on...</p> http://stackoverflow.com/questions/445109/how-best-to-perform-corridor-range-search-over-a-set-of-latitude-longitude-coor/445320#445320 2 Answer by Wouter van Nifterick for How best to perform corridor range search over a set of latitude / longitude coordinates Wouter van Nifterick 2009-01-15T01:21:20Z 2009-01-15T01:21:20Z <p>There are many optimisations that you can do:</p> <ul> <li><p>Split your points into fixed sized tiles so you don't have to check every point (first determine which tile you're in, so you can skip all points in other tiles). </p></li> <li><p>When calculating the distance to each point, you'd normally use pythagoras to get the distance. But if you only want to know which point is the closest, you can omit the square root, which is an expensive operation (see example code below). </p></li> <li><p>Use some flat projection instead of working with lat/lon, or approximate calculated distances by just assuming that the earth is flat. For small distances (up until several kilometres) that's usually accurate enough, and way faster and easier than working with WGS84 coordinates. You might have to convert all your coordinates though, but that precalculation is going to save a lot of cpu-cycles in runtime.</p></li> </ul> <p>-</p> <pre><code> // delphi code that would iterate through a set of points to find the index // of the point that is the closest to the provided x/y function TMatcher.GetIndexOfClosest(X,Y:Double):Integer; var i : Integer; Closest:Double; Distance:Double; begin Closest:= MaxInt; Result := -1; for i:=0 to high(Points) do begin // taking the square root is not needed here! Distance :=Sqr(X-Points[I].X)+Sqr(Y-Points[I].Y); if Distance &lt; Closest then begin Closest := Distance; Result := i; end; end; end; </code></pre> http://stackoverflow.com/questions/445109/how-best-to-perform-corridor-range-search-over-a-set-of-latitude-longitude-coor/475460#475460 0 Answer by John McC for How best to perform corridor range search over a set of latitude / longitude coordinates John McC 2009-01-24T04:02:11Z 2009-01-24T04:02:11Z <p>When faced with this type of problem, I'd use <a href="http://postgis.refractions.net/" rel="nofollow">PostGIS</a>. Import the data into the database, then use the spatial SQL functions to create a buffer on the track and select the points that lie inside the buffer. Lot quicker than coding it yourself.</p> <p>PostGIS (and <a href="http://www.postgresql.org/" rel="nofollow">PostgreSQL</a>) are easy to install on Windows/OSX/Linux. They have good documentation and a quick session on Google finds the answer to most questions.</p>