<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>Hi Rob,<br><br>order of options is important. Move the parameter --input-fie to the end of the list.<br><br>Gerd<br><br><div>&gt; Date: Tue, 4 Feb 2014 01:35:04 -0800<br>&gt; From: tempest766@yahoo.com<br>&gt; To: mkgmap-dev@lists.mkgmap.org.uk<br>&gt; Subject: [mkgmap-dev] can't make routing work any more<br>&gt; <br>&gt; A couple of weeks ago I downloaded the pennsylvania-latest.osm.pbf OSM dataset and was able to use osmosis to grab a bounding box and then use mkgmap to create a gmapsupp.img file that allowed automotive routing in the selected region.  I didn't write down the mkgmap options that I used but they were simple and trivial...that I do remember.  It is possible that I used .osm.bz2 XML file instead of the .osm.pbf file but I don't remember for sure.<br>&gt; <br>&gt; Now I simply cannot reproduce the process using either file.  I've created a shell script to try to automate the process and no matter what mkgmap options I used the resulting img file tells me no routable roads in my area when I upload it to the GPS and try to route to a road somewhere.<br>&gt; <br>&gt; I can create an osm xml file using osmosis that contains the correct bounding box but the final img file loaded into the Oregon 450 GPS seems to not contain any routeable data, no matter what options I use.<br>&gt; <br>&gt; I'm doing ./make_gmapsupp left=-80.25 top=42.5 bottom=39.25 right=-78.75 as limits to my script.<br>&gt; <br>&gt; This is the script:<br>&gt; <br>&gt; --------------------------------------------------------------------------------<br>&gt; <br>&gt; #! /bin/sh<br>&gt; <br>&gt; PATH=$PATH:./bin <br>&gt; <br>&gt; #bpffile=north-america-latest.osm.pbf<br>&gt; pbffile=pennsylvania-latest.osm.pbf<br>&gt; <br>&gt; tmp=`mktemp`<br>&gt; <br>&gt; check_exit() {<br>&gt;     if [ $1 -ne 0 ]; then<br>&gt;         echo "error code=$1"<br>&gt;         rm $tmp<br>&gt;         exit<br>&gt;     fi<br>&gt; <br>&gt; }<br>&gt; <br>&gt; echo ""<br>&gt; echo ""<br>&gt; echo "processing bounding box..."<br>&gt; osmosis --read-pbf file=$pbffile --bounding-box $* --write-xml file=$tmp<br>&gt; check_exit $?<br>&gt; <br>&gt; echo ""<br>&gt; echo ""<br>&gt; echo "making gmapsupp.img..."<br>&gt; java -jar mkgmap.jar \<br>&gt;     --input-file=$tmp \<br>&gt;     --route \<br>&gt;     --index \<br>&gt;     --tdbfile \<br>&gt;     --housenumbers \<br>&gt;     --gmapsupp<br>&gt;     <br>&gt; check_exit $?<br>&gt; rm $tmp<br>&gt; <br>&gt; echo "Done!"<br>&gt; <br>&gt; --------------------------------------------------------------------<br>&gt; What mkgmap options should I be using to generate routeable data?  Also, the family-name and series-name options no longer seem to work.  I've tried r2957 and r2998 with equally dismal results.<br>&gt; <br>&gt; <br>&gt; _______________________________________________<br>&gt; mkgmap-dev mailing list<br>&gt; mkgmap-dev@lists.mkgmap.org.uk<br>&gt; http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev<br></div>                                               </div></body>
</html>