คุณต้องทำซ้ำในระดับหนึ่ง ( อัปเดต : ฉันได้แก้ไขเพื่อลบลูป "สำหรับ" ทั้งหมดยกเว้นความเข้าใจในรายการเดียว)
# imports used throughout this example
from shapely.geometry import Point
from shapely.ops import cascaded_union
from itertools import combinations
# Here are your input shapes (circles A, B, C)
A = Point(3, 6).buffer(4)
B = Point(6, 2).buffer(4)
C = Point(1, 2).buffer(4)
# list the shapes so they are iterable
shapes = [A, B, C]
ก่อนอื่นคุณต้องทำการรวมกลุ่มของการแยกทั้งหมด (ใช้การรวมกันแบบต่อเรียง ) โดยใช้คู่การรวมกันของแต่ละรูปร่าง จากนั้นคุณลบ (ผ่านdifference
) จุดแยกออกจากการรวมกันของรูปร่างทั้งหมด
# All intersections
inter = cascaded_union([pair[0].intersection(pair[1]) for pair in combinations(shapes, 2)])
# Remove from union of all shapes
nonoverlap = cascaded_union(shapes).difference(inter)
นี่คือnonoverlap
ลักษณะ (ผ่านตัวสร้างการทดสอบ JTS):