Re: [mkgmap-dev] Command to transliterate Characters/Cyrillic/Greek into latin1 even for Unicode maps?

2014-08-21 Thread Steve Ratcliffe

Hi

Yes, I have created a map of Greece with the patch and your rule
inserted just before the  in the lines file.

It seems to work as expected.

..Steve

On 19/08/14 18:31, Felix Hartmann wrote:

Any News Steve or Andrzej? Is the patch actually working for you?


On 14 August 2014 13:34, Felix Hartmann mailto:extremecar...@gmail.com>> wrote:

ups, that was just a typo in the email, not in my style...

Would be cool if you could check later.

On 14.08.2014 13:24, Steve Ratcliffe wrote:

On 13/08/14 15:40, Felix Hartmann wrote:

Am I doing something wrong?

name:int!=* & name=* {set name='${name|ascii:} ${name}'


Apart from the missing close '}' it looks OK to me.

I can investigate more later.

..Steve


--
keep on biking and discovering new trails

Felix
openmtbmap.org  & www.velomap.org





--
Felix Hartman - Openmtbmap.org & VeloMap.org
Floragasse 9/11
1040 Wien
Austria - Österreich


___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev



___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev


Re: [mkgmap-dev] MIssing public transport stops in default style

2014-08-21 Thread Marko Mäkelä

On Wed, Aug 20, 2014 at 11:04:02PM +0200, Carlos Dávila wrote:
According to OSM wiki bus stops can be tagged as bus_stop=yes or as 
public_transport=platform + bus=yes (or both ways), but current 
default style only catches the first case. The same can be said about 
tram stops. Attached patch adds rules for the second way of tagging.


Thanks! I think that this can be simplified a little:

( public_transport=platform & (bus=yes | tram=yes) ) | 
(highway=bus_stop | railway=tram_stop | railway=halt | railway=station)


I do not think that we need the & (bus=yes | tram=yes) here. These rules 
are only setting the name for any kind of stop. They are not yet 
creating the POI.



-highway=bus_stop [0x2f17 resolution 24]
+( public_transport=platform & bus=yes ) | highway=bus_stop [0x2f17 resolution 
24]


I would just group bus and tram stops together here, but move the rule 
after railway=* so that the railway-specific rules would fire first:



@@ -226,7 +226,7 @@

railway=halt [0x2f08 resolution 23]
railway=station [0x2f08 resolution 22]
-railway=tram_stop [0x2f17 resolution 24]
+( public_transport=platform & tram=yes ) | railway=tram_stop [0x2f17 
resolution 24]


Here, I would remove your + line and instead write:

public_transform=platform & rail=yes [0x2f08...]
highway=bus_stop|highway=tram_stop|public_transport=platform [0x2f17...]

I did not check if rail=yes is a valid tag.

In this way, if a public_transport=platform is not rail=yes, it will be 
assigned the type 0x2f17. All railway stops would be 0x2f08, except tram 
stops which are 0x2f17.


Can you submit a revised patch for this?

Marko
___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev


Re: [mkgmap-dev] MIssing public transport stops in default style

2014-08-21 Thread Carlos Dávila

El 20/08/14 23:03, Steve Sgalowski escribió:

dont worry about the style as much
why not make your own poi list like i have done
and it works for me

stephen



On Thu, Aug 21, 2014 at 7:04 AM, Carlos Dávilawrote:

According to OSM wiki bus stops can be tagged as bus_stop=yes or
as public_transport=platform + bus=yes (or both ways), but current
default style only catches the first case. The same can be said
about tram stops. Attached patch adds rules for the second way of
tagging.

I also use my own style since a very long time ago. I don't understand 
why you don't like if we try to improve default style, a general purpose 
one used by many people. That's what collaborative projects are for, 
isn't it?
___
mkgmap-dev mailing list
mkgmap-dev@lists.mkgmap.org.uk
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev