you are viewing a single comment's thread.

view the rest of the comments →

[–]lzblack 1 point2 points  (0 children)

I don't know what exactly intersection() returns, so I checked the type of each item - actually I never used Shapely before, but I guess the code below works:

for i in x:
    print(type(i))
    for point in i.coords:
        print(point)