-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_transform.py
84 lines (67 loc) · 2.95 KB
/
test_transform.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
74
75
76
77
78
79
80
81
82
83
84
from . import unittest
from shapely import geometry
from shapely.ops import transform
class IdentityTestCase(unittest.TestCase):
"""New geometry/coordseq method 'xy' makes numpy interop easier"""
def func(self, x, y, z=None):
return tuple([c for c in [x, y, z] if c])
def test_empty(self):
g = geometry.Point()
h = transform(self.func, g)
self.assertTrue(h.is_empty)
def test_point(self):
g = geometry.Point(0, 1)
h = transform(self.func, g)
self.assertEqual(h.geom_type, 'Point')
self.assertEqual(list(h.coords), [(0, 1)])
def test_line(self):
g = geometry.LineString(((0, 1), (2, 3)))
h = transform(self.func, g)
self.assertEqual(h.geom_type, 'LineString')
self.assertEqual(list(h.coords), [(0, 1), (2, 3)])
def test_linearring(self):
g = geometry.LinearRing(((0, 1), (2, 3), (2, 2), (0, 1)))
h = transform(self.func, g)
self.assertEqual(h.geom_type, 'LinearRing')
self.assertEqual(list(h.coords), [(0, 1), (2, 3), (2, 2), (0, 1)])
def test_polygon(self):
g = geometry.Point(0, 1).buffer(1.0)
h = transform(self.func, g)
self.assertEqual(h.geom_type, 'Polygon')
self.assertAlmostEqual(g.area, h.area)
def test_multipolygon(self):
g = geometry.MultiPoint([(0, 1), (0, 4)]).buffer(1.0)
h = transform(self.func, g)
self.assertEqual(h.geom_type, 'MultiPolygon')
self.assertAlmostEqual(g.area, h.area)
class LambdaTestCase(unittest.TestCase):
"""New geometry/coordseq method 'xy' makes numpy interop easier"""
def test_point(self):
g = geometry.Point(0, 1)
h = transform(lambda x, y, z=None: (x+1.0, y+1.0), g)
self.assertEqual(h.geom_type, 'Point')
self.assertEqual(list(h.coords), [(1.0, 2.0)])
def test_line(self):
g = geometry.LineString(((0, 1), (2, 3)))
h = transform(lambda x, y, z=None: (x+1.0, y+1.0), g)
self.assertEqual(h.geom_type, 'LineString')
self.assertEqual(list(h.coords), [(1.0, 2.0), (3.0, 4.0)])
def test_polygon(self):
g = geometry.Point(0, 1).buffer(1.0)
h = transform(lambda x, y, z=None: (x+1.0, y+1.0), g)
self.assertEqual(h.geom_type, 'Polygon')
self.assertAlmostEqual(g.area, h.area)
self.assertAlmostEqual(h.centroid.x, 1.0)
self.assertAlmostEqual(h.centroid.y, 2.0)
def test_multipolygon(self):
g = geometry.MultiPoint([(0, 1), (0, 4)]).buffer(1.0)
h = transform(lambda x, y, z=None: (x+1.0, y+1.0), g)
self.assertEqual(h.geom_type, 'MultiPolygon')
self.assertAlmostEqual(g.area, h.area)
self.assertAlmostEqual(h.centroid.x, 1.0)
self.assertAlmostEqual(h.centroid.y, 3.5)
def test_suite():
loader = unittest.TestLoader()
return unittest.TestSuite([
loader.loadTestsFromTestCase(IdentityTestCase),
loader.loadTestsFromTestCase(LambdaTestCase)])