On Wed, Mar 23, 2011 at 23:51, Boris Cornet <[email protected]> wrote:

>
>
Is there a way to set a filter to show only the nodes (i.e find the
> housenumber references that are not a building)?
>

You have to inverse the reasoning to filter out what is not what you want,
so, a filter like:

not ([addr:housenumber] is * and Type is Node)

will allow you to manipulate all items which are not what you want to see,
e.g. hide them.


>
> And is there a way to find all nodes tagged with addr:housenumber that
> are part of a way that is tagged with building=* ?
>

That would be:

 [addr:housenumber] is * and Type is Node and Parent([building] is *)     to
find
not ( [addr:housenumber] is * and Type is Node and Parent([building] is
*))    to filter

Regards
- Chris -
_______________________________________________
Merkaartor mailing list
[email protected]
http://lists.openstreetmap.org/listinfo/merkaartor

Reply via email to