<div>Daniel</div>
<div>&nbsp;</div>
<div>what type of measure returns the function length()?, my result was:0.00208418695629</div>
<div>&nbsp;</div>
<div id="result_box" dir="ltr" style="TEXT-ALIGN: left">I have the SPEED field, you know how I can give instructions such as turn right or left?</div>
<div>&nbsp;</div>
<div>RG<br><br></div>
<div class="gmail_quote">2009/2/5 Daniel Kastl <span dir="ltr">&lt;<a href="mailto:kastl@orkney.co.jp">kastl@orkney.co.jp</a>&gt;</span><br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Valeria,<br><br>This depends on your data. Distance might be your current cost already.<br>You can get the total distance with SELECT sum(length(rt.the_geom)) ... .<br>
<br>If you want to have time you might need a &quot;speed&quot; attribute for your<br>road link table.<br><br>Daniel<br><br><br>Valeria Muņoz schrieb:<br>
<div class="Ih2E3d">&gt;<br>&gt; &nbsp; how can i get the distance,time, if you have to turn right o to turn<br>&gt; left??<br>&gt;<br>&gt; RG<br>&gt;<br>&gt;<br></div>&gt; 2009/2/4 Valeria Muņoz &lt;<a href="mailto:valemunoz@gmail.com">valemunoz@gmail.com</a> &lt;mailto:<a href="mailto:valemunoz@gmail.com">valemunoz@gmail.com</a>&gt;&gt;<br>

<div class="Ih2E3d">&gt;<br>&gt; &nbsp; &nbsp; Stephen you are right i change to :<br>&gt;<br>&gt;<br>&gt; &nbsp; &nbsp; SELECT assign_vertex_id(&#39;edges&#39;, 0.000001, &#39;the_geom&#39;, &#39;gid&#39;);<br>&gt; &nbsp; &nbsp; &nbsp;and works!!! thanks!!<br>
&gt;<br>&gt;<br>&gt;<br>&gt; &nbsp; &nbsp; 2009/2/4 Stephen Woodbridge &lt;<a href="mailto:woodbri@swoodbridge.com">woodbri@swoodbridge.com</a><br></div>&gt; &nbsp; &nbsp; &lt;mailto:<a href="mailto:woodbri@swoodbridge.com">woodbri@swoodbridge.com</a>&gt;&gt;<br>

<div class="Ih2E3d">&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; Valeria,<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; What projection is your shapefile in? it looks like WGS84 or<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; NAD83 from your coordinates below. So when you did:<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; SELECT assign_vertex_id(&#39;edges&#39;, 0.001, &#39;the_geom&#39;, &#39;gid&#39;);<br>
&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; you should probably have done:<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; SELECT assign_vertex_id(&#39;edges&#39;, 0.000001, &#39;the_geom&#39;, &#39;gid&#39;);<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; The tolerance needs to be in the units of your data. This will<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; probably give better results.<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; You should probably drop the database and start over with a<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; new load and use the statement above when you get to that step.<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; -Steve<br>
&gt;<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; Valeria Muņoz wrote:<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Hi<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;I followed a little tutorial works perfectly with the<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; shapefile from the example, but to use mine the result is<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; not expected, generating lines are not continuous, I think<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; I missing some coordinates or something to work with my<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; shapefile.<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;tutorial url<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.utdallas.edu/~ama054000/rt_tutorial.html" target="_blank">http://www.utdallas.edu/~ama054000/rt_tutorial.html</a><br>
</div>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;<a href="http://www.utdallas.edu/~ama054000/rt_tutorial.html" target="_blank">http://www.utdallas.edu/%7Eama054000/rt_tutorial.html</a>&gt;<br>
<div>
<div></div>
<div class="Wj3C7c">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;query:<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;the query is optimal path between 887 y 852. :<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SELECT rt.gid, AsText(rt.the_geom) AS wkt,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; length(rt.the_geom) AS length, calle.gid<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FROM calle,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(SELECT gid, the_geom<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;FROM dijkstra_sp_delta(<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&#39;calle&#39;,<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;887,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;852,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;3000)<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ) as rt<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;WHERE calle.gid=rt.gid;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; result:<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;gid&quot;;&quot;wkt&quot;;&quot;length&quot;;&quot;gid&quot;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 4389;&quot;MULTILINESTRING((-71.1951327440651<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -30.5911350429583,-71.1957462426904<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -30.5912128948402,-71.1957861853043<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -30.591219747929,-71.1958400125164<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -30.591211719682))&quot;;0.000713367403530106;4389<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 4603;&quot;MULTILINESTRING((-71.1939954028678<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -30.5921681162637,-71.1939834234752<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -30.5922241673576,-71.1938231446269<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -30.5925509466888))&quot;;0.000421286769021393;4603<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 4331;&quot;MULTILINESTRING((-71.1950174992082<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -30.5919506007811,-71.1950526139385<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -30.5916919152203))&quot;;0.000261057969957178;4331<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 4608;&quot;MULTILINESTRING((-71.1938231446269<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -30.5925509466888,-71.1937648360013<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -30.5926358138883))&quot;;0.00010296765211197;4608<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; RG<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; attached image.<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;please help!!..<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ------------------------------------------------------------------------<br>
&gt;<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ------------------------------------------------------------------------<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _______________________________________________<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Pgrouting-users mailing list<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="mailto:Pgrouting-users@lists.postlbs.org">Pgrouting-users@lists.postlbs.org</a><br></div></div>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;mailto:<a href="mailto:Pgrouting-users@lists.postlbs.org">Pgrouting-users@lists.postlbs.org</a>&gt;<br>

<div>
<div></div>
<div class="Wj3C7c">&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://lists.postlbs.org/mailman/listinfo/pgrouting-users" target="_blank">http://lists.postlbs.org/mailman/listinfo/pgrouting-users</a><br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; ------------------------------------------------------------------------<br>
&gt;<br>&gt; _______________________________________________<br>&gt; Pgrouting-users mailing list<br>&gt; <a href="mailto:Pgrouting-users@lists.postlbs.org">Pgrouting-users@lists.postlbs.org</a><br>&gt; <a href="http://lists.postlbs.org/mailman/listinfo/pgrouting-users" target="_blank">http://lists.postlbs.org/mailman/listinfo/pgrouting-users</a><br>
&gt;<br><br>_______________________________________________<br>Pgrouting-users mailing list<br><a href="mailto:Pgrouting-users@lists.postlbs.org">Pgrouting-users@lists.postlbs.org</a><br><a href="http://lists.postlbs.org/mailman/listinfo/pgrouting-users" target="_blank">http://lists.postlbs.org/mailman/listinfo/pgrouting-users</a><br>
</div></div></blockquote></div><br>