-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_multipoint.py
73 lines (55 loc) · 2.61 KB
/
test_multipoint.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
from . import unittest, numpy
from shapely.geometry import Point, MultiPoint, asMultiPoint
from shapely.geometry.base import dump_coords
class MultiPointTestCase(unittest.TestCase):
def test_multipoint(self):
# From coordinate tuples
geom = MultiPoint(((1.0, 2.0), (3.0, 4.0)))
self.assertEqual(len(geom.geoms), 2)
self.assertEqual(dump_coords(geom), [[(1.0, 2.0)], [(3.0, 4.0)]])
# From points
geom = MultiPoint((Point(1.0, 2.0), Point(3.0, 4.0)))
self.assertEqual(len(geom.geoms), 2)
self.assertEqual(dump_coords(geom), [[(1.0, 2.0)], [(3.0, 4.0)]])
# From another multi-point
geom2 = MultiPoint(geom)
self.assertEqual(len(geom2.geoms), 2)
self.assertEqual(dump_coords(geom2), [[(1.0, 2.0)], [(3.0, 4.0)]])
# Sub-geometry Access
self.assertIsInstance(geom.geoms[0], Point)
self.assertEqual(geom.geoms[0].x, 1.0)
self.assertEqual(geom.geoms[0].y, 2.0)
with self.assertRaises(IndexError): # index out of range
geom.geoms[2]
# Geo interface
self.assertEqual(geom.__geo_interface__,
{'type': 'MultiPoint',
'coordinates': ((1.0, 2.0), (3.0, 4.0))})
# Adapt a coordinate list to a line string
coords = [[5.0, 6.0], [7.0, 8.0]]
geoma = asMultiPoint(coords)
self.assertEqual(dump_coords(geoma), [[(5.0, 6.0)], [(7.0, 8.0)]])
@unittest.skipIf(not numpy, 'Numpy required')
def test_numpy(self):
from numpy import array, asarray
from numpy.testing import assert_array_equal
# Construct from a numpy array
geom = MultiPoint(array([[0.0, 0.0], [1.0, 2.0]]))
self.assertIsInstance(geom, MultiPoint)
self.assertEqual(len(geom.geoms), 2)
self.assertEqual(dump_coords(geom), [[(0.0, 0.0)], [(1.0, 2.0)]])
# Geo interface (cont.)
geom = MultiPoint((Point(1.0, 2.0), Point(3.0, 4.0)))
assert_array_equal(array(geom), array([[1., 2.], [3., 4.]]))
# Adapt a Numpy array to a multipoint
a = array([[1.0, 2.0], [3.0, 4.0]])
geoma = asMultiPoint(a)
assert_array_equal(geoma.context, array([[1., 2.], [3., 4.]]))
self.assertEqual(dump_coords(geoma), [[(1.0, 2.0)], [(3.0, 4.0)]])
# Now, the inverse
self.assertEqual(geoma.__array_interface__,
geoma.context.__array_interface__)
pas = asarray(geoma)
assert_array_equal(pas, array([[1., 2.], [3., 4.]]))
def test_suite():
return unittest.TestLoader().loadTestsFromTestCase(MultiPointTestCase)