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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
import unittest
import numpy as np
import pytest
from shapely.geometry import MultiPolygon, Point, box
@pytest.mark.filterwarnings("ignore:The 'shapely.vectorized:")
class VectorizedContainsTestCase(unittest.TestCase):
def assertContainsResults(self, geom, x, y):
from shapely.vectorized import contains
result = contains(geom, x, y)
x = np.asanyarray(x)
y = np.asanyarray(y)
self.assertIsInstance(result, np.ndarray)
self.assertEqual(result.dtype, bool)
result_flat = result.flat
x_flat, y_flat = x.flat, y.flat
# Do the equivalent operation, only slowly, comparing the result
# as we go.
for idx in range(x.size):
assert result_flat[idx] == geom.contains(Point(x_flat[idx], y_flat[idx]))
return result
def construct_torus(self):
point = Point(0, 0)
return point.buffer(5).symmetric_difference(point.buffer(2.5))
def test_contains_poly(self):
y, x = np.mgrid[-10:10:5j], np.mgrid[-5:15:5j]
self.assertContainsResults(self.construct_torus(), x, y)
def test_contains_point(self):
y, x = np.mgrid[-10:10:5j], np.mgrid[-5:15:5j]
self.assertContainsResults(Point(x[0], y[0]), x, y)
def test_contains_linestring(self):
y, x = np.mgrid[-10:10:5j], np.mgrid[-5:15:5j]
self.assertContainsResults(Point(x[0], y[0]), x, y)
def test_contains_multipoly(self):
y, x = np.mgrid[-10:10:5j], np.mgrid[-5:15:5j]
# Construct a geometry of the torus cut in half vertically.
cut_poly = box(-1, -10, -2.5, 10)
geom = self.construct_torus().difference(cut_poly)
assert isinstance(geom, MultiPolygon)
self.assertContainsResults(geom, x, y)
def test_y_array_order(self):
y, x = np.mgrid[-10:10:5j, -5:15:5j]
y = y.copy("f")
self.assertContainsResults(self.construct_torus(), x, y)
def test_x_array_order(self):
y, x = np.mgrid[-10:10:5j, -5:15:5j]
x = x.copy("f")
self.assertContainsResults(self.construct_torus(), x, y)
def test_xy_array_order(self):
y, x = np.mgrid[-10:10:5j, -5:15:5j]
x = x.copy("f")
y = y.copy("f")
result = self.assertContainsResults(self.construct_torus(), x, y)
# Preserve the order
assert result.flags["F_CONTIGUOUS"]
def test_array_dtype(self):
y, x = np.mgrid[-10:10:5j], np.mgrid[-5:15:5j]
x = x.astype(np.int16)
self.assertContainsResults(self.construct_torus(), x, y)
def test_array_2d(self):
y, x = np.mgrid[-10:10:15j, -5:15:16j]
result = self.assertContainsResults(self.construct_torus(), x, y)
assert result.shape == x.shape
def test_shapely_xy_attr_contains(self):
g = Point(0, 0).buffer(10.0)
self.assertContainsResults(self.construct_torus(), *g.exterior.xy)
@pytest.mark.filterwarnings("ignore:The 'shapely.vectorized:")
class VectorizedTouchesTestCase(unittest.TestCase):
def test_touches(self):
from shapely.vectorized import touches
y, x = np.mgrid[-2:3:6j, -1:3:5j]
geom = box(0, -1, 2, 2)
result = touches(geom, x, y)
expected = np.array(
[
[False, False, False, False, False],
[False, True, True, True, False],
[False, True, False, True, False],
[False, True, False, True, False],
[False, True, True, True, False],
[False, False, False, False, False],
],
dtype=bool,
)
from numpy.testing import assert_array_equal
assert_array_equal(result, expected)
|