ArcPro 2.8.3. Apologies if this is an easy problem, but I want to identify parcels in my city that have two street frontages (corner lots, typically). I have a ParcelPolygons layer...
... and a ParcelLines layer:
Using Select by Attributes I created a new layer consisting of ParcelLines that are StreetROW lines, but I don't know where to go from there. How do I choose ParcelPolygons that touch/intersect with two StreetROW lines?
Thanks!
Solved! Go to Solution.
intersect your streets to get the intersection points,
use Near to find the parcels with a distance of zero (if the lots bound the points) or sort by distance and select those with those less than a threshold distance.
A map or a typical lot/road situation would help narrow down some possibilities
Spatial Join tool might work - join the parcel polygons with the selected streets using the Intersect match option and join one to one. The parcel polygons with Joint_Count field value 2 in the output would be what you need.
You could do it in two steps, though I'm not certain it will work completely.
I don't have the data to test it out, unfortunately, but see if that works for you.
intersect your streets to get the intersection points,
use Near to find the parcels with a distance of zero (if the lots bound the points) or sort by distance and select those with those less than a threshold distance.
A map or a typical lot/road situation would help narrow down some possibilities
Spatial Join tool might work - join the parcel polygons with the selected streets using the Intersect match option and join one to one. The parcel polygons with Joint_Count field value 2 in the output would be what you need.