-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtest_multipolygon.py
37 lines (28 loc) · 1.01 KB
/
test_multipolygon.py
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
from postgis import MultiPolygon, Polygon
MULTI = (
(
((35, 10), (45, 45), (15, 40), (10, 20), (35, 10)),
((20, 30), (35, 35), (30, 20), (20, 30))
),
(
((36, 10), (46, 45), (16, 40), (16, 20), (36, 10)),
((21, 30), (36, 35), (36, 20), (21, 30))
),
)
def test_multilinestring_geojson():
multi = MultiPolygon(MULTI)
assert multi.geojson == {
"type": "MultiPolygon",
"coordinates": MULTI
}
def test_geom_should_compare_with_coords():
assert MULTI == MultiPolygon(MULTI)
def test_multipolygon_get_item():
multi = MultiPolygon(MULTI)
assert multi[0] == Polygon(MULTI[0])
def test_multipolygon_wkt():
multi = MultiPolygon(MULTI)
wkt = multi.wkt
wkt = wkt.replace('.0','')
wkt = wkt.replace(', ',',')
assert wkt == 'MULTIPOLYGON(((35 10,45 45,15 40,10 20,35 10),(20 30,35 35,30 20,20 30)),((36 10,46 45,16 40,16 20,36 10),(21 30,36 35,36 20,21 30)))'