Re: [mkgmap-dev] possible bug? mkgmap freezes with lines only routing style

2011-10-29 Thread Steve Ratcliffe
Hi I would like some opinions please from those that make maps. If you have a style that say sets the name of every path to 'Path' eg: highway=path | highway=footway | highway=track {name 'Path' } or anything similar that results in thousands of roads with the same name, then mkgmap

Re: [mkgmap-dev] possible bug? mkgmap freezes with lines only routing style

2011-10-29 Thread Henning Scholland
Am 29.10.2011 15:57, schrieb Steve Ratcliffe: Hi I would like some opinions please from those that make maps. If you have a style that say sets the name of every path to 'Path' eg: highway=path | highway=footway | highway=track {name 'Path' } or anything similar that results in thousands

[mkgmap-dev] mkgmap ignores --country-abbr?

2011-10-29 Thread Marko Mäkelä
Hi WanMil, In the Geofabrik finland.osm.pbf there are a few Russian place=*. Some of these carry addr:country=RUS. I am invoking mkgmap (among others) with the following options: --country-abbr=FIN --country-name=Finland --location-autofill=nearest I am not using any bounds information. You

Re: [mkgmap-dev] possible bug? mkgmap freezes with lines only routing style

2011-10-29 Thread Thorsten Kukuk
Hi, On Sat, Oct 29, Steve Ratcliffe wrote: If you have a style that say sets the name of every path to 'Path' eg: highway=path | highway=footway | highway=track {name 'Path' } or anything similar that results in thousands of roads with the same name, then mkgmap appears to freeze.

Re: [mkgmap-dev] mkgmap ignores --country-abbr?

2011-10-29 Thread WanMil
Hi WanMil, In the Geofabrik finland.osm.pbf there are a few Russian place=*. Some of these carry addr:country=RUS. I am invoking mkgmap (among others) with the following options: --country-abbr=FIN --country-name=Finland --location-autofill=nearest I am not using any bounds information. You

Re: [mkgmap-dev] possible bug? mkgmap freezes with lines only routing style

2011-10-29 Thread michael lohr
it would make a lot of sense if such names do not find their way into the index. to control that behaviour flagging those ways via the style file feels like the most flexible method. Am 29.10.2011 15:57, schrieb Steve Ratcliffe: Hi I would like some opinions please from those that make maps.

Re: [mkgmap-dev] mkgmap ignores --country-abbr?

2011-10-29 Thread Marko Mäkelä
Hi WanMil, Thank you for the explanation. Your patch did not make any difference: as far as I can see, all places in the problematic tile were still being assigned to Russia, except Rääkkylä, to which I added addr:country=FI. I did not add any addr:region or addr:city information. Some places

[mkgmap-dev] [PATCH] remove macrons from Japanese maps

2011-10-29 Thread Kimon Berlin
This strips macrons (mostly ō and ū) from maps created with code page ms932 (extended Shift-JIS, Japanese chars) because they do not exist in that code page. Rather than butcher TableTransliterator.java, I created SparseTransliterator.java for the few char conversions I needed. Index:

[mkgmap-dev] [PATCH] avoid redundant warnings for same cause

2011-10-29 Thread Kimon Berlin
This reduces the warnings for FIXME - too many POIs in group and point number too big to one per source map. Kimon Index: src/uk/me/parabola/mkgmap/combiners/MdrBuilder.java === ---