Hi Daniel,<div><br></div><div>Thanks for your reply.  I checked, and it appears that I have that wrapper function installed.  Here is what my pgrouting install dir looks like:</div><div><br></div><div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">$ pwd</font></div>
<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">/usr/local/pgrouting-1.05/extra/driving_distance/sql</font></div><div><br></div><div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">$ ll</font></div>
<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">total 36</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">drwxr-xr-x 3 15036 users 4096 2010-12-21 15:58 ./</font></div>
<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">drwxr-xr-x 5 15036 users 4096 2010-12-21 15:58 ../</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">drwxr-xr-x 2 root  root  4096 2010-12-21 15:58 CMakeFiles/</font></div>
<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">-rw-r--r-- 1 root  root  1811 2010-12-21 15:58 cmake_install.cmake</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">-rw-r--r-- 1 15036 users  134 2010-11-16 18:42 CMakeLists.txt</font></div>
<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">-rw-r--r-- 1 root  root  5540 2010-12-21 15:58 Makefile</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">-rw-r--r-- 1 15036 users 1757 2010-11-16 18:42 routing_dd.sql</font></div>
<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">-rw-r--r-- 1 15036 users 3790 2010-11-16 18:42 routing_dd_wrappers.sql</font></div></div><div><br></div><div>And I did make sure to run both SQL files against the database my roads are stored in.</div>
<div><br></div><div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">  482  psql -d eligibility -f routing_dd.sql</font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">  483  psql -d eligibility -f routing_dd_wrappers.sql </font></div>
<div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">  490  psql -d eligibility -f routing_tsp.sql </font></div><div><font class="Apple-style-span" face="&#39;courier new&#39;, monospace">  491  psql -d eligibility -f routing_tsp_wrappers.sql </font></div>
</div><div><br></div><div>I will review your usage instructions and see if I&#39;m missing anything.</div><div><br></div><div>Roger</div><div>--</div><br><div class="gmail_quote">On Tue, Dec 21, 2010 at 5:51 PM, Daniel Kastl <span dir="ltr">&lt;<a href="mailto:daniel@georepublic.de">daniel@georepublic.de</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hi Roger,<div><br></div><div>You&#39;re using the &quot;core&quot; function, I think.</div><div>You could use the driving_distance wrapper function, which will return you a polyogon.</div>
<div>For that you need to load this SQL: <a href="https://github.com/pgRouting/pgrouting/blob/master/extra/driving_distance/sql/routing_dd_wrappers.sql" target="_blank">https://github.com/pgRouting/pgrouting/blob/master/extra/driving_distance/sql/routing_dd_wrappers.sql</a></div>


<div>You can also find it in the directory where the other pgRouting SQL files are.</div><div><br></div><div>The function will take these parameters then:</div><div><br></div><div><div>driving_distance(table_name varchar, x double precision, y double precision,</div>


<div>        distance double precision, cost varchar, reverse_cost varchar, directed boolean, has_reverse_cost boolean)</div></div><div><br></div><div>X,Y are the coordinates you take as a center point.</div><div>You can take the returned polygon then and do other spatial queries.</div>


<div><br></div><div>Best regards,</div><div>Daniel</div><div><br></div><div><br><br><div class="gmail_quote">2010/12/22 Roger André <span dir="ltr">&lt;<a href="mailto:randre@gmail.com" target="_blank">randre@gmail.com</a>&gt;</span><br>


<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div></div><div class="h5">Hi All,<br><br>I need to generate some maps that show all of the road segments that are within a certain distance of specific points.  I have been able to generate some answers using the driving_distance function, but am not sure what to do with them.  Here&#39;s what I get:<br>



<br><span style="font-family:courier new,monospace"># SELECT * FROM driving_distance(&#39;SELECT gid AS id, source, target, length::double precision AS cost FROM edges&#39;,49,2000,false,false);</span><br style="font-family:courier new,monospace">



<span style="font-family:courier new,monospace"> vertex_id | edge_id |       cost       </span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">-----------+---------+------------------</span><br style="font-family:courier new,monospace">



<span style="font-family:courier new,monospace">        15 |       9 | 1854.34547361565</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">        20 |     104 | 1549.85630678904</span><br style="font-family:courier new,monospace">



<span style="font-family:courier new,monospace">        22 |      68 | 858.367668935802</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">        23 |     125 | 1466.02479201359</span><br style="font-family:courier new,monospace">



<span style="font-family:courier new,monospace">        24 |      75 | 801.137871846872</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">        25 |     125 | 1169.02817170106</span><br style="font-family:courier new,monospace">



<span style="font-family:courier new,monospace">        26 |     106 | 1296.98197602289</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">        48 |      71 | 902.595810873304</span><br style="font-family:courier new,monospace">



<span style="font-family:courier new,monospace">        49 |     106 |                0</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">        51 |      74 | 1948.07551810288</span><br style="font-family:courier new,monospace">



<span style="font-family:courier new,monospace">        52 |      75 | 1620.93404864578</span><br style="font-family:courier new,monospace"><span style="font-family:courier new,monospace">(11 rows)</span><br><br>These answers seem legit, but I&#39;m not sure what to do with them.  Ultimately, I need to show both the minimum enclosing polygon that &quot;surrounds&quot; all of the road segments, as well as the road segments themselves.  Can someone please give me some pointers as to what I can do to accomplish this?<br>



<br>Thanks,<br><br>Roger<br><font color="#888888">--<br>
</font><br></div></div>_______________________________________________<br>
Pgrouting-users mailing list<br>
<a href="mailto:Pgrouting-users@lists.osgeo.org" target="_blank">Pgrouting-users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/pgrouting-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/pgrouting-users</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br><span style="font-family:arial, sans-serif;font-size:13px;border-collapse:collapse">Georepublic UG &amp; Georepublic Japan<br>eMail: <a href="mailto:daniel.kastl@georepublic.de" style="color:rgb(66, 99, 171)" target="_blank">daniel.kastl@georepublic.de</a><br>


Web: <a href="http://georepublic.de/" style="color:rgb(66, 99, 171)" target="_blank">http://georepublic.de</a></span><br>
</div>
<br>_______________________________________________<br>
Pgrouting-users mailing list<br>
<a href="mailto:Pgrouting-users@lists.osgeo.org">Pgrouting-users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/pgrouting-users" target="_blank">http://lists.osgeo.org/mailman/listinfo/pgrouting-users</a><br>
<br></blockquote></div><br></div>