[mkgmap-dev] Some options from -c not applied

2010-11-18 Thread Carlos Dávila
I'm using the args file attached below with -c option, having two problems: 1: area name in the resulting map is Morocco for all tiles (MapSource). 2: SPAIN-18.TYP is correctly applied to Spain tiles, but MOROC-19.TYP is not applied to Morroco's map. Do you know what I'm doing wrong? Isn't it

Re: [mkgmap-dev] 2 pois for a single polygon/multipolygon

2010-11-18 Thread WanMil
The mp is tagged wrong. http://wiki.openstreetmap.org/wiki/Multipolygon#Tagging points out that the tags are taken from the relation if it has at least one tag beside type=multipolygon. mkgmap follows this rule strictly since r1711. The relation is tagged with name=Manila City Hall so the

Re: [mkgmap-dev] ! not working -- problem with conditions in style-file.

2010-11-18 Thread Torsten Leistikow
Felix Hartmann schrieb am 17.11.2010 22:30: Below is the outcome I want to have for tracktype=1 and respectively tracktype=5 if tracktypeadded=yes THEN build 0x07 (no matter if tracktype exists, and no matter which value it has). if tracktype=5 THEN do build 0x07 (if tracktype does not

Re: [mkgmap-dev] ! not working -- problem with conditions in style-file.

2010-11-18 Thread Felix Hartmann
On 18.11.2010 16:52, Torsten Leistikow wrote: Felix Hartmann schrieb am 17.11.2010 22:30: Below is the outcome I want to have for tracktype=1 and respectively tracktype=5 if tracktypeadded=yes THEN build 0x07 (no matter if tracktype exists, and no matter which value it has). if tracktype=5

Re: [mkgmap-dev] ! not working -- problem with conditions in style-file.

2010-11-18 Thread Torsten Leistikow
Felix Hartmann schrieb am 18.11.2010 17:18: table should look like this for tracktype!4 tracktype -build 0x07 not set yes 1 no 1 no 2 no 3 no 4 no 5 yes 5yes any

Re: [mkgmap-dev] Sea generation

2010-11-18 Thread WanMil
I have created a new branch coast. As a first step I have committed a new option --coastlinefile that allows to define one or more osm files containing coastlines. I don't know what I have to do to publish the branch build to the webpage. Steve? Can you help? WanMil Hi all, I have started

Re: [mkgmap-dev] Some options from -c not applied

2010-11-18 Thread Ralf Kleineisel
On 11/18/2010 02:05 PM, Carlos Dávila wrote: I'm using the args file attached below with -c option, having two problems: 1: area name in the resulting map is Morocco for all tiles (MapSource). 2: SPAIN-18.TYP is correctly applied to Spain tiles, but MOROC-19.TYP is not applied to Morroco's

Re: [mkgmap-dev] Sea generation

2010-11-18 Thread Steve Ratcliffe
Hi I don't know what I have to do to publish the branch build to the webpage. Steve? Can you help? Its entirely automatic... but wasn't using ant-1.7 so it was not building fully. It is there now and should never be more than about half an hour out of date. ..Steve

Re: [mkgmap-dev] Some options from -c not applied

2010-11-18 Thread Carlos Dávila
El 18/11/10 19:54, Ralf Kleineisel escribió: On 11/18/2010 02:05 PM, Carlos Dávila wrote: I'm using the args file attached below with -c option, having two problems: 1: area name in the resulting map is Morocco for all tiles (MapSource). 2: SPAIN-18.TYP is correctly applied to Spain

Re: [mkgmap-dev] ! not working -- problem with conditions in style-file.

2010-11-18 Thread Steve Ratcliffe
Hi I think inventing such an operator would be a bad idea. It would be much easier to have a genenral negation i.e. !(expression) The style rules already allow general negation. If I've understood the conversation, then: !(tracktype 5) does exactly what Felix wants it to do. ..Steve

Re: [mkgmap-dev] ! not working -- problem with conditions in style-file.

2010-11-18 Thread Steve Ratcliffe
Hi However I think something like this won't work So would(!(tracktype5)|condition2=yes)work? Meaning either tracktype not equal smaller 5 or condition2=yes - one of the two has to match for it to not stop the action. Yes it would work. Here is an example, only WAY 2 is not