Merge Overlapping Polygons
Combines overlapping polygons on the same layer into single, non-overlapping polygons.
When to Use
- To simplify geometry before export
- To create clean outlines from overlapping fills
- Before de-embed or hole extraction operations
Options
| Option | Description | Default |
|---|---|---|
| Selected layers only | Process only selected layers | Off |
How It Works
- Groups polygons by layer
- Computes the union of all overlapping polygons within each layer
- Replaces the originals with the merged result
Before:
After:
Technical Notes
- Non-overlapping polygons on the same layer are left unchanged
- The merge operation preserves the layer assignment
- This is equivalent to a boolean OR (union) per layer
- Processing time depends on the number of polygons and their complexity