-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_ndarrays.py
54 lines (43 loc) · 1.56 KB
/
test_ndarrays.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Tests of support for Numpy ndarrays. See
# https://github.com/sgillies/shapely/issues/26 for discussion.
# Requires numpy.
import sys
if sys.version_info[0] >= 3:
from functools import reduce
from . import unittest
from shapely import geometry
try:
import numpy
except ImportError:
numpy = False
class TransposeTestCase(unittest.TestCase):
@unittest.skipIf(not numpy, 'numpy not installed')
def test_multipoint(self):
a = numpy.array([[1.0, 1.0, 2.0, 2.0, 1.0], [3.0, 4.0, 4.0, 3.0, 3.0]])
t = a.T
s = geometry.asMultiPoint(t)
coords = reduce(lambda x, y: x + y, [list(g.coords) for g in s])
self.assertEqual(
coords,
[(1.0, 3.0), (1.0, 4.0), (2.0, 4.0), (2.0, 3.0), (1.0, 3.0)]
)
@unittest.skipIf(not numpy, 'numpy not installed')
def test_linestring(self):
a = numpy.array([[1.0, 1.0, 2.0, 2.0, 1.0], [3.0, 4.0, 4.0, 3.0, 3.0]])
t = a.T
s = geometry.asLineString(t)
self.assertEqual(
list(s.coords),
[(1.0, 3.0), (1.0, 4.0), (2.0, 4.0), (2.0, 3.0), (1.0, 3.0)]
)
@unittest.skipIf(not numpy, 'numpy not installed')
def test_polygon(self):
a = numpy.array([[1.0, 1.0, 2.0, 2.0, 1.0], [3.0, 4.0, 4.0, 3.0, 3.0]])
t = a.T
s = geometry.asPolygon(t)
self.assertEqual(
list(s.exterior.coords),
[(1.0, 3.0), (1.0, 4.0), (2.0, 4.0), (2.0, 3.0), (1.0, 3.0)]
)
def test_suite():
return unittest.TestLoader().loadTestsFromTestCase(TransposeTestCase)