Skip to main content
Solved

Find lines in the Polygonal border

  • November 30, 2017
  • 3 replies
  • 14 views

Forum|alt.badge.img

I have polygons admin division and streets lines, I would like to find lines (streets) in the borders, The orange lines.

Blue Squares = Polygonal Admin border

Yellow, Green, Orange = Street lines

Target = Orange lines

Best answer by erik_jan

I would convert the borders to lines (GeometryCoercer) and then use a LineonLineOverlayer to get the overlaying parts (only use overlaying lines that have attributes from borders and streets to avoid border/border overlaps and lines longer than 0 to avoid intersections).

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.

3 replies

erik_jan
Contributor
Forum|alt.badge.img+22
  • Contributor
  • 2179 replies
  • Best Answer
  • November 30, 2017

I would convert the borders to lines (GeometryCoercer) and then use a LineonLineOverlayer to get the overlaying parts (only use overlaying lines that have attributes from borders and streets to avoid border/border overlaps and lines longer than 0 to avoid intersections).


takashi
Celebrity
  • 7843 replies
  • November 30, 2017

Hi @josesauz, the Clipper might help you.


Forum|alt.badge.img
  • Author
  • 4 replies
  • December 4, 2017

Thanks @erik_jan and @takashi for your responses