Question

How to select all parcel that faces the main road


Badge

The distance between the road and the plots are not fixed, so we can't use a buffer

Parcel Facing Main road


5 replies

Userlevel 6
Badge +32

One way to do this is:

  • For every parcel, find the closest road. (NeighborFinder, parcels are bases, roads are candidates, find only 1 candidate)
  • Draw the results as lines using closest base x and y and closest candidate x an y. (VertexCreators)
  • Exclude all results where the line overlaps with a parcel other than itself. (SpatialRelator, list, tester.)

 

Badge

Thanks, Dear, Idea looks to be great but the shortest path to the road might not intersect with other parcels but actually the parcel might intersect as shown belowPlot Intersects

Userlevel 6
Badge +32

Thanks, Dear, Idea looks to be great but the shortest path to the road might not intersect with other parcels but actually the parcel might intersect as shown belowPlot Intersects

Yes, Ill admin it is a challenging problem. I created some sample data and tried a few things but I have not a working solution for now.

Userlevel 4
Badge +36

Maybe it helps to set a maximum distance in the Neighborfinder?

Userlevel 4
Badge +36

The community can help you better when you provide some relevant sample data.

Reply