-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_snap.py
32 lines (23 loc) · 1.04 KB
/
test_snap.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
from . import unittest
from shapely.geometry import LineString, Polygon
from shapely.geos import geos_version
from shapely.ops import snap
@unittest.skipIf(geos_version < (3, 3, 0), 'GEOS 3.3.0 required')
class Snap(unittest.TestCase):
def test_snap(self):
# input geometries
square = Polygon([(1,1), (2, 1), (2, 2), (1, 2), (1, 1)])
line = LineString([(0,0), (0.8, 0.8), (1.8, 0.95), (2.6, 0.5)])
square_coords = square.exterior.coords[:]
line_coords = line.coords[:]
result = snap(line, square, 0.5)
# test result is correct
self.assertTrue(isinstance(result, LineString))
self.assertEqual(result.coords[:], [(0.0, 0.0), (1.0, 1.0), (2.0, 1.0), (2.6, 0.5)])
# test inputs have not been modified
self.assertEqual(square.exterior.coords[:], square_coords)
self.assertEqual(line.coords[:], line_coords)
def test_suite():
return unittest.TestLoader().loadTestsFromTestCase(Snap)
if __name__ == '__main__':
unittest.main()