<div dir="ltr"><font face="Helvetica, Arial, sans-serif">Hi,<br>
  <br>
I use <a href="http://osm2mp.pl">osm2mp.pl</a> (latest from <a href="https://github.com/liosha/osm2mp">https://github.com/liosha/osm2mp</a>) to 
convert from OSM to Polish format. Before converting, I use splitter to 
split the big OSM file into smaller tiles.<br>
  <br>
The whole process really works fine, including routing over tiles, 
except that my my map includes several different countries. That is why I
 cannot use a Default Country and Default Region. Unfortunately, address
 search on Nuvi does not work (Mapsource is fine) due to missing 
CountryName= at my POI descriptions. This is how a POI is converted from OSM to MP:<br>
  <br>
; NodeID = 3307527863<br>
; place = hamlet<br>
[POI]<br>
Data0=(27.6784496,85.2754185)<br>
EndLevel=2<br>
Type=0x0C00<br>
Label=Jhwah-cha<br>
City=Y<br>
CityName=Jhwah-cha<br>
RegionName=Central Development Region<br>
[END]<br>
  <br>
As you can see CityName and RegionName are added perfectly, but CountryName= is missing... I found this code in lib/GarminTools.pl the following (line 50):<br>
  <br>
if ( $address-&gt;{country} ) {<br>
#        $mp_address{country} = rename_country( $address-&gt;{country} );<br>
        $mp_address{country} = $address-&gt;{country};<br>
}<br>
  <br>
I think it should add the country, but it seems not to work.<br>
  <br>
This is how I invoke osm2mp: <br>
  <br>
osm2pl --default-lang en --target-lang en --translit --header id=80000358 --header name=80000358 --header FID=8000 -o <a href="http://80000358.mp">80000358.mp</a> 80000358.osm<br>
  <br>
</font><br>
<font face="Helvetica, Arial, sans-serif"><font face="Helvetica, Arial, sans-serif">Anybody can help? I put my sample files to: <a href="http://www.schlenn.net/download/temp/">http://www.schlenn.net/download/temp/</a><br>
    <br>
  </font>Thanks,<br>
Michael<br></font></div>