I have 2 list of Polygon as below:
list1 = [p1, p2, p3]
list2 = [pa, pb, pc]
I want to check if p1 overlaps pa, p2 overlaps pb, and p3 overlaps pc. I used shapely.intersects
to check whether they overlap with each other. But I don't know how to choose exactly p1 vs pa, p2 vs pb, p3 vs pc. How can I do that?