Skip to content

Fix mask geometry to ensure consistent MultiPolygon output across Python version #1978

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,13 @@ def geometry(self) -> Dict[str, Tuple[int, int, int]]:
if not holes.is_valid:
holes = holes.buffer(0)

return external_polygons.difference(holes).__geo_interface__
result = external_polygons.difference(holes)

# Ensure consistent MultiPolygon output across Python versions
if hasattr(result, "geom_type") and result.geom_type == "Polygon":
result = MultiPolygon([result])

return result.__geo_interface__

def draw(
self,
Expand Down
Loading