Hi Dave,<div><br></div><div>Not sure I&#39;m understanding your problem correctly. But if you can&#39;t exclude data in your query already (Steve&#39;s proposal) you usually do it by modifying costs.</div><div>For example if you have points that indicate dangerous spots, you can create a buffer around these points, select road links within these buffers and increase the costs.</div>

<div><br></div><div>Daniel</div><div><br><br><div class="gmail_quote">On Wed, Apr 11, 2012 at 5:22 PM, Dave Potts <span dir="ltr">&lt;<a href="mailto:dave.potts@pinan.co.uk">dave.potts@pinan.co.uk</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Steve,<br>
<br>
Thats useful but its not quite what I am looking for.<br>
<br>
I can not make a preselection before I start routing, what I am actual<br>
after is a &#39;rule based selection&#39;<br>
<br>
for example before selecting the next node to consider when selecting the<br>
shortest path,  I like to apply a set of rules.<br>
<br>
<br>
Whats the shortest path if I consider this dangerous node.<br>
Whats the shortest path if I consider what to go near this node etc<br>
<br>
There are many reasons why should you choose to go near nodes, some may be<br>
more danegrous that others.  I can just screen out all the nodes before I<br>
start out.<br>
<br>
Dave.<br>
Stephen Woodbridge wrote:<br>
&gt; On 4/10/2012 7:22 AM, Dave Potts wrote:<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Hi<br>
&gt;&gt;<br>
&gt;&gt; Normally routing problems such as dijkstra/TSP always select the best<br>
&gt;&gt; route by the length of the route.<br>
&gt;&gt;<br>
&gt;&gt; Does anybody known a version that selects the route choosen by the node<br>
&gt;&gt; type as well as the distance covered?  The reason that I ask, in cases<br>
&gt;&gt; the<br>
&gt;&gt; select of the node type is important for example<br>
&gt;&gt;<br>
&gt;&gt; I am trying to get from node A to F,<br>
&gt;&gt;<br>
&gt;&gt; I have to possible routes A B C F  , A E to F or A D F.<br>
&gt;&gt;<br>
&gt;&gt; The route  A D E is the shortest one, but D is noted number of highway<br>
&gt;&gt; men/gunfighters living in town.<br>
&gt;&gt;<br>
&gt;&gt; I am a careful man and would prefer to travel the safest fast route.  Is<br>
&gt;&gt; there a generic solution to this type of problem other than removing D<br>
&gt;&gt; from the input list of nodes to compare?<br>
&gt;&gt;<br>
&gt;&gt; Can anybody suggest a different news group where this type of issue<br>
&gt;&gt; could<br>
&gt;&gt; be raised?<br>
&gt;<br>
&gt; In pgRouting it is trivial to do this by putting a filter on the edges<br>
&gt; to remove edges or nodes of a particular class(es). Something like:<br>
&gt;<br>
&gt; select * from edges where etype != &#39;dangerous&#39;;<br>
&gt;<br>
&gt; select * from edges a, nodes b where a.source=<a href="http://b.id" target="_blank">b.id</a> or a.target=<a href="http://b.id" target="_blank">b.id</a> and<br>
&gt; b.ntype not in (&#39;dangerous&#39;, &#39;dirty&#39;);<br>
&gt;<br>
&gt; -Steve<br>
&gt; _______________________________________________<br>
&gt; pgrouting-dev mailing list<br>
&gt; <a href="mailto:pgrouting-dev@lists.osgeo.org">pgrouting-dev@lists.osgeo.org</a><br>
&gt; <a href="http://lists.osgeo.org/mailman/listinfo/pgrouting-dev" target="_blank">http://lists.osgeo.org/mailman/listinfo/pgrouting-dev</a><br>
&gt;<br>
<span class="HOEnZb"><font color="#888888"><br>
<br>
--<br>
<br>
<br>
_______________________________________________<br>
pgrouting-dev mailing list<br>
<a href="mailto:pgrouting-dev@lists.osgeo.org">pgrouting-dev@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/pgrouting-dev" target="_blank">http://lists.osgeo.org/mailman/listinfo/pgrouting-dev</a><br>
</font></span></blockquote></div><br><br clear="all"><div><br></div>-- <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>