File: make_valid_methods.py

package info (click to toggle)
python-shapely 2.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 2,564 kB
  • sloc: python: 18,650; ansic: 6,615; makefile: 88; sh: 62
file content (57 lines) | stat: -rw-r--r-- 1,757 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from matplotlib import pyplot as plt
import shapely
from shapely.plotting import plot_points, plot_polygon, plot_line

from figures import BLUE, GRAY, RED

input = shapely.MultiPolygon(
    [
        shapely.Polygon(
            [
                (2, 0),
                (2, 12),
                (7, 12),
                (7, 10),
                (7, 12),
                (10, 12),
                (8, 12),
                (8, 0),
                (2, 0),
            ],
            [[(3, 10), (5, 10), (5, 12), (3, 12), (3, 10)]],
        ),
        shapely.Polygon(
            [(4, 2), (4, 8), (12, 8), (12, 2), (4, 2)],
            [[(6, 4), (10, 4), (10, 6), (6, 6), (6, 4)]],
        ),
    ]
)

fig, ax = plt.subplots(1, 3, sharex=True, sharey=True, figsize=(11, 4), dpi=90)
plot_polygon(input, ax=ax[0], add_points=False, color=BLUE)
plot_points(input, ax=ax[0], color=GRAY, alpha=0.7)
ax[0].set_title("invalid input")
ax[0].set_aspect("equal")

# Structure makevalid
valid_structure = shapely.make_valid(input, method="structure", keep_collapsed=True)
plot_polygon(valid_structure, ax=ax[1], add_points=False, color=BLUE)
plot_points(valid_structure, ax=ax[1], color=GRAY, alpha=0.7)

ax[1].set_title("make_valid - structure")
ax[1].set_aspect("equal")

# Linework makevalid
valid_linework = shapely.make_valid(input)
for geom in valid_linework.geoms:
    if isinstance(geom, shapely.MultiPolygon):
        plot_polygon(geom, ax=ax[2], add_points=False, color=BLUE)
        plot_points(geom, ax=ax[2], color=GRAY, alpha=0.7)
    else:
        plot_line(geom, ax=ax[2], color=RED, linewidth=1)
        plot_points(geom, ax=ax[2], color=GRAY, alpha=0.7)
ax[2].set_title("make_valid - linework")
ax[2].set_aspect("equal")

fig.tight_layout()
plt.show()