Skip to main content
Question

how can I make a difference between streets that have even/uneven housenumbers seperate or mixed along either side of the street? I would like to use the BAG as a source. Could I calculate the length of the route between housenumbers to find out?

  • February 17, 2017
  • 1 reply
  • 26 views
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

1 reply

erik_jan
Contributor
Forum|alt.badge.img+26
  • Contributor
  • February 17, 2017

I would try this:

Take the road (lines) and buffer using a Bufferer transformer (cap type none, size up to you).

Then split the buffered area into left and right using the LineonAreaOverlayer and output Area.

Then use the PointonAreaOverlayer to list the address points inside the buffered areas.

If those address points are only even or odd you have no mix, else they are mixed.

Hope this helps you get started.