<div dir="ltr"><div>thanks Stephen,</div><div>I will give it a try ;)</div></div><div class="gmail_extra"><br><div class="gmail_quote">2015-01-14 14:41 GMT+01:00 Stephen Woodbridge <span dir="ltr"><<a href="mailto:woodbri@swoodbridge.com" target="_blank">woodbri@swoodbridge.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On 1/14/2015 5:36 AM, Peer Krueger wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;padding-left:1ex;border-left-color:rgb(204,204,204);border-left-width:1px;border-left-style:solid">
Dear pgrouting-users,<br>
<br>
I am looking for users who already made some experience with<br>
closest-facility-functions in pgrouting.<br>
I want to use this funcionality but even if a function "drivingdistance"<br>
exists there does not seem to be a closest facility-function implemented<br>
yet.<br>
Perhaps kdykstra would be a starting-point to build such a function.<br>
Has anyone yet tried to implement this before or can give me some hints<br>
where to start?<br>
best whishes,<br>
Peer<br>
</blockquote>
<br></div></div>
Peer,<br>
<br>
I would do something like:<br>
<br>
select * from kdijkstraCost('select * from edges', source, targets[], directed, has_rcost) where cost>0 order by cost asc limit 1;<br>
<br>
id1 - will be the start node<br>
id2 - will be the destination node<br>
cost - will be the cost from id1 to id2<br>
<br>
Make source your current location, and targets[] is an array of facilities to consider.<br>
<br>
-Steve<br>
______________________________<u></u>_________________<br>
Pgrouting-users mailing list<br>
<a href="mailto:Pgrouting-users@lists.osgeo.org" target="_blank">Pgrouting-users@lists.osgeo.<u></u>org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/pgrouting-users" target="_blank">http://lists.osgeo.org/<u></u>mailman/listinfo/pgrouting-<u></u>users</a><br>
</blockquote></div><br></div>