Ugly hack on polygon discontinuity

This commit is contained in:
XANTRONIX 2025-03-16 01:15:55 -04:00
parent de2e3aed9b
commit 12442ad084

View file

@ -78,9 +78,7 @@ def each_poly(parts: list[str]):
for part in parts:
if part == '99999999':
points.append(points[0])
yield shapely.Polygon(points)
points = list()
continue
else:
points.append(parse_coord(part))