<div dir="ltr"><div>Hi Emden, I just tried your route locally with the texas pbf file and I get same road as on <a href="http://graphhopper.com">graphhopper.com</a><br><br></div><div class="gmail_extra">Can you send the code you are using to call GH?<br>
<br>Here is the code I used to test it:<br></div><div class="gmail_extra"><br>public void testMe() throws Exception{<br> test("../../../maps/texas-latest.osm.pbf",<br> new GHPlace(32.71201241907505, -96.92441816057254),<br>
new GHPlace(32.67352373055029, -97.02611101550494));<br> <br> <br> }<br> <br> <br> public void test(String osmFile,GHPlace from,GHPlace to) throws Exception{<br> GraphHopper graphHopper=new GraphHopper();<br>
graphHopper.setInMemory(true)<br> .setGraphHopperLocation("/tmp/ghosm2-test")<br> .setOSMFile(osmFile)<br>// .disableCHShortcuts()<br> .setEncodingManager(new EncodingManager("car"));<br>
graphHopper.importOrLoad();<br> GHRequest request=new GHRequest(from, to);<br> GHResponse response= graphHopper.route(request);<br><br>...<br></div><div class="gmail_extra"><br><br>Bruno<br><br><br>
<br><br><div class="gmail_quote">On Wed, Jun 18, 2014 at 6:20 PM, Emden R. Gansner <span dir="ltr"><<a href="mailto:erg@research.att.com" target="_blank">erg@research.att.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
I am only using the routing aspects of 0.3 graphhopper. I am using docs/core/<a href="http://routing.md" target="_blank">routing.md</a> as a template. For the OSM file,<br>
I am using a downloaded version of <a href="http://download.geofabrik.de/north-america/us/texas-latest.osm.pbf" target="_blank">http://download.geofabrik.de/<u></u>north-america/us/texas-latest.<u></u>osm.pbf</a>, and for the lat-lon<br>
endpoints I use S=(32.71201241907505 -96.92441816057254) and T=(32.67352373055029 -97.02611101550494). The resulting route<br>
starts close to S, but the last point is about 6.5km from T. When I compare my route from what I see when using<br>
<a href="http://graphhopper.com/maps/" target="_blank">http://graphhopper.com/maps/</a>, the starts of both routes are identical, but the route I get is truncated about half way along.<br>
<br>
I would appreciate any help in pointing out what I am doing wrong? Thanks.<br>
<br>
Emden<br>
<br>
<br>
______________________________<u></u>_________________<br>
GraphHopper mailing list<br>
<a href="mailto:GraphHopper@openstreetmap.org" target="_blank">GraphHopper@openstreetmap.org</a><br>
<a href="https://lists.openstreetmap.org/listinfo/graphhopper" target="_blank">https://lists.openstreetmap.<u></u>org/listinfo/graphhopper</a><br>
</blockquote></div><br></div></div>