<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>
<div>Hi, Gerd,</div>

<div>&nbsp;</div>

<div>glad to hear it) Thank you</div>

<div>&nbsp;</div>

<div>Max</div>

<div>&nbsp;
<div name="quote" style="margin:10px 5px 5px 10px; padding: 10px 0 10px 10px; border-left:2px solid #C3D9E5; word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;">
<div style="margin:0 0 10px 0;"><b>Gesendet:</b>&nbsp;Freitag, 30. Januar 2015 um 16:35 Uhr<br/>
<b>Von:</b>&nbsp;GerdP &lt;gpetermann_muenchen@hotmail.com&gt;<br/>
<b>An:</b>&nbsp;mkgmap-dev@lists.mkgmap.org.uk<br/>
<b>Betreff:</b>&nbsp;Re: [mkgmap-dev] Patch: New filter &quot;not-contained&quot;</div>

<div name="quoted-content">Hi Max,<br/>
<br/>
okay, thanks for the explanation. I think I understand now.<br/>
I think we can say that your patch is also a correction and<br/>
the &quot;side effect&quot; is in fact the better solution.<br/>
<br/>
I&#39;ve committed the patch with r3422.<br/>
<br/>
Gerd<br/>
<br/>
<br/>
<br/>
&amp;quot;Maxim D&uuml;ster&amp;quot; wrote<br/>
&gt; Hi, Gerd,<br/>
&gt;<br/>
&gt; &amp;nbsp;<br/>
&gt;<br/>
&gt; well, it&amp;#39;s indeed not so easy to find an example. In most cases you<br/>
&gt; won&amp;#39;t see any difference because almost no existent filter uses the<br/>
&gt; second parameter in the filter()/doFilter() method. The only one using it,<br/>
&gt; besides the proposed new filter, is the &amp;#39;not-equal&amp;#39; filter. The<br/>
&gt; example I found for using it inside the apply{} block is a bit artificial<br/>
&gt; and probably not really meaningful, but I hope, it gives the idea.<br/>
&gt;<br/>
&gt; Assume, you want to find and visualize a specifical type of errors in<br/>
&gt; data, namely streets being part of an associatedStreet relation but having<br/>
&gt; a different name than the relation itself. To get this, you could do in<br/>
&gt; relations file something like:<br/>
&gt;<br/>
&gt; &amp;nbsp;<br/>
&gt;<br/>
&gt; type=associatedStreet &amp;amp; name=* {<br/>
&gt; &amp;nbsp;&amp;nbsp; &amp;nbsp;apply {<br/>
&gt; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;set<br/>
&gt; nameInRelation=&amp;#39;&amp;#36;{name&amp;#124;not-equal:name}&amp;#39;;<br/>
&gt; &amp;nbsp;&amp;nbsp; &amp;nbsp;}<br/>
&gt; }<br/>
&gt;<br/>
&gt; &amp;nbsp;<br/>
&gt;<br/>
&gt; where you want to compare the relation&amp;#39;s name with the street&amp;#39;s<br/>
&gt; name and to remember the relation&amp;#39;s name if it&amp;#39;s different.<br/>
&gt;<br/>
&gt; Then, in lines file, you could write something like<br/>
&gt;<br/>
&gt; &amp;nbsp;<br/>
&gt;<br/>
&gt;<br/>
&gt; highway=* &amp;amp; nameInRelation=* [...]<br/>
&gt;<br/>
&gt; &amp;lt;finalize&amp;gt;<br/>
&gt; name=* { name &amp;#39;&amp;#36;{name}/&amp;#36;{nameInRelation}&amp;#39; }<br/>
&gt;<br/>
&gt; &amp;nbsp;<br/>
&gt;<br/>
&gt; to highlight the differences. So, and now, with the current mkgmap code<br/>
&gt; both &amp;quot;name&amp;quot;s referenced in the &amp;#39;set&amp;#39; command are the<br/>
&gt; same, namely it&amp;#39;s the name of the relation. You cannot pass the<br/>
&gt; current street&amp;#39;s name to the filter. After running mkgmap you get a<br/>
&gt; map without any street as for every street holds name=name and so<br/>
&gt; nameInRelation is not set.<br/>
&gt;<br/>
&gt; &amp;nbsp;<br/>
&gt;<br/>
&gt; You could also try to pass a differently named tag to the filter by saving<br/>
&gt; the street&amp;#39;s name in a temporary tag, like:<br/>
&gt;<br/>
&gt; &amp;nbsp;<br/>
&gt;<br/>
&gt; type=associatedStreet &amp;amp; name=* {<br/>
&gt; &amp;nbsp;&amp;nbsp; &amp;nbsp;apply {<br/>
&gt;<br/>
&gt; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;set myname=&amp;#39;&amp;#36;(name)&amp;#39;;<br/>
&gt; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;set<br/>
&gt; nameInRelation=&amp;#39;&amp;#36;{name&amp;#124;not-equal:myname}&amp;#39;;<br/>
&gt; &amp;nbsp;&amp;nbsp; &amp;nbsp;}<br/>
&gt; }<br/>
&gt;<br/>
&gt;<br/>
&gt;<br/>
&gt; &amp;nbsp;<br/>
&gt;<br/>
&gt; But in this case, the tag &amp;#39;myname&amp;#39; would also be looked for in the<br/>
&gt; relation, not in the street&amp;#39;s tags, and as the relation doesn&amp;#39;t<br/>
&gt; have such a tag, nameInRelation is always set to the relation&amp;#39;s name<br/>
&gt; and so you see in your map all the streets, not only the erroneous ones.<br/>
&gt; So, either all or no at all.<br/>
&gt;<br/>
&gt; &amp;nbsp;<br/>
&gt;<br/>
&gt; With the proposed change, however, the filter gets a local element as a<br/>
&gt; second parameter in doFilter(), so in both cases the name of the relation<br/>
&gt; would be compared to the (local) tags of the current street (either name<br/>
&gt; or myname) and you would get only streets with errors in the map.<br/>
&gt;<br/>
&gt; The new filter is specifically designed for using in the apply{} block, so<br/>
&gt; it necessarily needs an access to the local object.<br/>
&gt;<br/>
&gt; &amp;nbsp;<br/>
&gt;<br/>
&gt; So, to summarize my reasoning: the functionality of no existent filter<br/>
&gt; would break after the patch (almost all filters would not see any<br/>
&gt; difference, one would potentially benefit from the change and one requires<br/>
&gt; it). Writers of new filters would not, in my opinion, have any troubles<br/>
&gt; with it, too. If they would need a local element, they get it for free. If<br/>
&gt; they would need a global element, one can always save global tags in the<br/>
&gt; local element and then call the filter with the local element.<br/>
&gt;<br/>
&gt; &amp;nbsp;<br/>
&gt;<br/>
&gt; What do you think about it now? Could I convince you? :)<br/>
&gt;<br/>
&gt; &amp;nbsp;<br/>
&gt;<br/>
&gt; Max<br/>
&gt;<br/>
&gt; &amp;nbsp;<br/>
&gt;<br/>
&gt;<br/>
&gt; Gesendet:&amp;nbsp;Donnerstag, 29. Januar 2015 um 23:31 Uhr<br/>
&gt; Von:&amp;nbsp;GerdP &amp;lt;<br/>
<br/>
&gt; gpetermann_muenchen@<br/>
<br/>
&gt; &amp;gt;<br/>
&gt; An:&amp;nbsp;<br/>
<br/>
&gt; mkgmap-dev@.org<br/>
<br/>
&gt;<br/>
&gt; Betreff:&amp;nbsp;Re: [mkgmap-dev] Patch: New filter &amp;quot;not-contained&amp;quot;<br/>
&gt;<br/>
&gt; Hi Maxim,<br/>
&gt;<br/>
&gt; I tried to find out if the patch has a side effect, but<br/>
&gt; I failed. From your description I understand that<br/>
&gt; I should be able to produce different results (not<br/>
&gt; using the new filter, just something that workded before)<br/>
&gt;<br/>
&gt; Can you give an example where I should find a difference?<br/>
&gt;<br/>
&gt; Gerd<br/>
&gt;<br/>
&gt;<br/>
&gt; &amp;amp;quot;Maxim D&amp;uuml;ster&amp;amp;quot; wrote<br/>
&gt; &amp;gt; Hi, Gerd,<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;nbsp;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; I think, there shouldn&amp;amp;#39;t be a problem. Actually, if you are<br/>
&gt; using a<br/>
&gt; &amp;gt; filter inside of the apply{} block, you would presumably like to be<br/>
&gt; able<br/>
&gt; &amp;gt; to access the current element from the filter. At the moment you<br/>
&gt; don&amp;amp;#39;t<br/>
&gt; &amp;gt; have such a possibility at all.<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; If though there will be need to pass a tag from the global relation<br/>
&gt; to the<br/>
&gt; &amp;gt; filter, one can always assign a global tag to a temporary local tag<br/>
&gt; before<br/>
&gt; &amp;gt; calling the filter with this local tag.<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; So, in my mind, nothing should go wrong here. Perhaps someone else<br/>
&gt; can say<br/>
&gt; &amp;gt; something more regarding this issue.<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;nbsp;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; Max<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;nbsp;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; Gesendet:&amp;amp;nbsp;Donnerstag, 29. Januar 2015 um 18:30 Uhr<br/>
&gt; &amp;gt; Von:&amp;amp;nbsp;GerdP &amp;amp;lt;<br/>
&gt;<br/>
&gt; &amp;gt; gpetermann_muenchen@<br/>
&gt;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; An:&amp;amp;nbsp;<br/>
&gt;<br/>
&gt; &amp;gt; mkgmap-dev@.org<br/>
&gt;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; Betreff:&amp;amp;nbsp;Re: [mkgmap-dev] Patch: New filter<br/>
&gt; &amp;amp;quot;not-contained&amp;amp;quot;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; Hi Max,<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; not sure. What will happen if one uses another filter in the<br/>
&gt; relations<br/>
&gt; &amp;gt; file?<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; Gerd<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;amp;quot;Maxim D&amp;amp;uuml;ster&amp;amp;amp;quot; wrote<br/>
&gt; &amp;gt; &amp;amp;gt; Hi, Gerd,<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;nbsp;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; the change is caused by the fact that the filter was thought<br/>
&gt; &amp;gt; primarily for<br/>
&gt; &amp;gt; &amp;amp;gt; working in relations file inside of the apply{} block and<br/>
&gt; needs that<br/>
&gt; &amp;gt; the<br/>
&gt; &amp;gt; &amp;amp;gt; tag given as last parameter is a local tag of the element<br/>
&gt; being<br/>
&gt; &amp;gt; processed<br/>
&gt; &amp;gt; &amp;amp;gt; (e.g. a way). But the old code line says:<br/>
&gt; &amp;amp;amp;quot;value =<br/>
&gt; &amp;gt; &amp;amp;gt; filter.filter(tagval,el);&amp;amp;amp;quot;,<br/>
&gt; &amp;amp;amp;#39;el&amp;amp;amp;#39; being the<br/>
&gt; &amp;gt; parent relation<br/>
&gt; &amp;gt; &amp;amp;gt; the way is in. That is, in the filter I only have an access<br/>
&gt; to the<br/>
&gt; &amp;gt; &amp;amp;gt; (global) relation&amp;amp;amp;#39;s tags, but what I actually<br/>
&gt; need are the<br/>
&gt; &amp;gt; tags of the<br/>
&gt; &amp;gt; &amp;amp;gt; (local) element being currently processed.<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; While applying filters to &amp;amp;amp;quot;plain&amp;amp;amp;quot;<br/>
&gt; elements (those<br/>
&gt; &amp;gt; not inside a<br/>
&gt; &amp;gt; &amp;amp;gt; relation, e.g. in points or lines files),<br/>
&gt; &amp;amp;amp;#39;local_el&amp;amp;amp;#39;<br/>
&gt; &amp;gt; and<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;#39;el&amp;amp;amp;#39; are equal, so my change should<br/>
&gt; not corrupt<br/>
&gt; &amp;gt; anything.<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;nbsp;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; Max<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;nbsp;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; Gesendet:&amp;amp;amp;nbsp;Donnerstag, 29. Januar 2015 um 11:20<br/>
&gt; Uhr<br/>
&gt; &amp;gt; &amp;amp;gt; Von:&amp;amp;amp;nbsp;&amp;amp;amp;quot;Gerd Petermann&amp;amp;amp;quot;<br/>
&gt; &amp;amp;amp;lt;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; gpetermann_muenchen@<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; An:&amp;amp;amp;nbsp;&amp;amp;amp;quot;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; mkgmap-dev@.org<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;quot; &amp;amp;amp;lt;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; mkgmap-dev@.org<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; Betreff:&amp;amp;amp;nbsp;Re: [mkgmap-dev] Patch: New filter<br/>
&gt; &amp;gt; &amp;amp;amp;quot;not-contained&amp;amp;amp;quot;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; Hi Maxim,<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; please can you explain the reason for the change in<br/>
&gt; ValueItem?<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; Gerd<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;nbsp;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; From:<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; maxc@<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; To:<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; mkgmap-dev@.org<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; Date: Wed, 28 Jan 2015 12:12:25 +0100<br/>
&gt; &amp;gt; &amp;amp;gt; Subject: [mkgmap-dev] Patch: New filter<br/>
&gt; &amp;gt; &amp;amp;amp;quot;not-contained&amp;amp;amp;quot;<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;nbsp;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; Hello!<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;nbsp;<br/>
&gt; &amp;gt; &amp;amp;gt; I&amp;amp;amp;#39;ve attached a patch with a new filter that<br/>
&gt; helps while<br/>
&gt; &amp;gt; processing,<br/>
&gt; &amp;gt; &amp;amp;gt; for example, public transport relations. The reason: there<br/>
&gt; can be<br/>
&gt; &amp;gt; multiple<br/>
&gt; &amp;gt; &amp;amp;gt; route relations with the same ref attribute (for example,<br/>
&gt; one for the<br/>
&gt; &amp;gt; &amp;amp;gt; forward direction, one for the return direction), combined<br/>
&gt; to a<br/>
&gt; &amp;gt; &amp;amp;gt; route_master relation.<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; If you want a name for a way to contain the refs of all of<br/>
&gt; the routes<br/>
&gt; &amp;gt; &amp;amp;gt; going through that way, you have a problem that some refs<br/>
&gt; will be<br/>
&gt; &amp;gt; present<br/>
&gt; &amp;gt; &amp;amp;gt; more than once, similar to<br/>
&gt; &amp;amp;amp;quot;1,1,2,2,2&amp;amp;amp;quot; (if we<br/>
&gt; &amp;gt; assume that route<br/>
&gt; &amp;gt; &amp;amp;gt; 1 has two instances, and route 2 - three instances).<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; The new filter helps to circumvent this. It takes 2<br/>
&gt; parameters: a<br/>
&gt; &amp;gt; &amp;amp;gt; delimiter (a comma in the example above) and the name of a<br/>
&gt; tag<br/>
&gt; &amp;gt; containg<br/>
&gt; &amp;gt; &amp;amp;gt; the list. The filter works a bit like the<br/>
&gt; &amp;gt; &amp;amp;amp;quot;not-equal&amp;amp;amp;quot; filter,<br/>
&gt; &amp;gt; &amp;amp;gt; but it doesn&amp;amp;amp;#39;t just compare two values; instead<br/>
&gt; it looks if<br/>
&gt; &amp;gt; the<br/>
&gt; &amp;gt; &amp;amp;gt; tag&amp;amp;amp;#39;s value (to which the filter is being<br/>
&gt; applied) is<br/>
&gt; &amp;gt; contained in the<br/>
&gt; &amp;gt; &amp;amp;gt; list from the (other) given tag. If it is not the case, the<br/>
&gt; value can<br/>
&gt; &amp;gt; be<br/>
&gt; &amp;gt; &amp;amp;gt; added to the list, otherwise the tag is considered unset.<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;nbsp;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; Simple example for relations file:<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;nbsp;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; type=route &amp;amp;amp;amp; route=bus &amp;amp;amp;amp; ref=* {<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;nbsp;&amp;amp;amp;nbsp; apply {<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;amp;amp;nbsp;&amp;amp;amp;nbsp;&amp;amp;amp;nbsp;&amp;amp;amp;nbsp;&amp;amp;amp;nbsp; set<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt;<br/>
&gt; route_ref=&amp;amp;amp;#39;&amp;amp;amp;#36;(route_ref),&amp;amp;amp;#36;{ref&amp;amp;amp;#124;not-contained:,:route_ref}&amp;amp;amp;#39;<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;#124;<br/>
&gt; &amp;amp;amp;#39;&amp;amp;amp;#36;(route_ref)&amp;amp;amp;#39; &amp;amp;amp;#124;<br/>
&gt; &amp;gt; &amp;amp;amp;#39;&amp;amp;amp;#36;{ref}&amp;amp;amp;#39;;<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;nbsp;&amp;amp;amp;nbsp; }<br/>
&gt; &amp;gt; &amp;amp;gt; }<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;nbsp;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; Here, ref value is only added to route_ref if it is not<br/>
&gt; already<br/>
&gt; &amp;gt; contained<br/>
&gt; &amp;gt; &amp;amp;gt; in that list (with separator &amp;amp;amp;#39;,&amp;amp;amp;#39;).<br/>
&gt; Otherwise, the<br/>
&gt; &amp;gt; value of<br/>
&gt; &amp;gt; &amp;amp;gt; route_ref is unchanged.<br/>
&gt; &amp;gt; &amp;amp;gt; &amp;amp;amp;nbsp;<br/>
&gt; &amp;gt; &amp;amp;gt; Cheers!<br/>
&gt; &amp;gt; &amp;amp;gt; Max<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; _______________________________________________ mkgmap-dev<br/>
&gt; mailing<br/>
&gt; &amp;gt; list<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; mkgmap-dev@.org<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; <a href="http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev" target="_blank">http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev</a><br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; _______________________________________________ mkgmap-dev<br/>
&gt; mailing<br/>
&gt; &amp;gt; list<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; mkgmap-dev@.org<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; <a href="http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev" target="_blank">http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev</a><br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; _______________________________________________<br/>
&gt; &amp;gt; &amp;amp;gt; mkgmap-dev mailing list<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; mkgmap-dev@.org<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; &amp;amp;gt; <a href="http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev" target="_blank">http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev</a><br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; --<br/>
&gt; &amp;gt; View this message in context:<br/>
&gt; &amp;gt;<br/>
&gt; <a href="http://gis.19327.n5.nabble.com/Patch-New-filter-not-contained-tp5831668p5831841.html" target="_blank">http://gis.19327.n5.nabble.com/Patch-New-filter-not-contained-tp5831668p5831841.html</a><br/>
&gt; &amp;gt; Sent from the Mkgmap Development mailing list archive at Nabble.com.<br/>
&gt; &amp;gt; _______________________________________________<br/>
&gt; &amp;gt; mkgmap-dev mailing list<br/>
&gt;<br/>
&gt; &amp;gt; mkgmap-dev@.org<br/>
&gt;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; <a href="http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev" target="_blank">http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev</a><br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt;<br/>
&gt; &amp;gt; _______________________________________________<br/>
&gt; &amp;gt; mkgmap-dev mailing list<br/>
&gt;<br/>
&gt; &amp;gt; mkgmap-dev@.org<br/>
&gt;<br/>
&gt; &amp;gt; <a href="http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev" target="_blank">http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev</a><br/>
&gt;<br/>
&gt;<br/>
&gt;<br/>
&gt;<br/>
&gt;<br/>
&gt; --<br/>
&gt; View this message in context:<br/>
&gt; <a href="http://gis.19327.n5.nabble.com/Patch-New-filter-not-contained-tp5831668p5831869.html" target="_blank">http://gis.19327.n5.nabble.com/Patch-New-filter-not-contained-tp5831668p5831869.html</a><br/>
&gt; Sent from the Mkgmap Development mailing list archive at Nabble.com.<br/>
&gt; _______________________________________________<br/>
&gt; mkgmap-dev mailing list<br/>
<br/>
&gt; mkgmap-dev@.org<br/>
<br/>
&gt;<br/>
&gt; <a href="http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev" target="_blank">http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev</a><br/>
&gt;<br/>
&gt;<br/>
&gt;<br/>
&gt;<br/>
&gt; _______________________________________________<br/>
&gt; mkgmap-dev mailing list<br/>
<br/>
&gt; mkgmap-dev@.org<br/>
<br/>
&gt; <a href="http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev" target="_blank">http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev</a><br/>
<br/>
<br/>
<br/>
<br/>
<br/>
--<br/>
View this message in context: <a href="http://gis.19327.n5.nabble.com/Patch-New-filter-not-contained-tp5831668p5831947.html" target="_blank">http://gis.19327.n5.nabble.com/Patch-New-filter-not-contained-tp5831668p5831947.html</a><br/>
Sent from the Mkgmap Development mailing list archive at Nabble.com.<br/>
_______________________________________________<br/>
mkgmap-dev mailing list<br/>
mkgmap-dev@lists.mkgmap.org.uk<br/>
<a href="http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev" target="_blank">http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev</a></div>
</div>
</div>
</div></div></body></html>