Answers for "union shapely with gaps"

0

union shapely with gaps

from shapely.geometry import JOIN_STYLE
eps = 0.00001
africa3 = africa.buffer(eps, 1, join_style=JOIN_STYLE.mitre).buffer(-eps, 1, join_style=JOIN_STYLE.mitre)
Posted by: Guest on April-12-2022

Browse Popular Code Answers by Language