This commit is contained in:
2025-01-26 19:24:23 -08:00
parent 32cd60e92b
commit d1dde0dbc6
4155 changed files with 29170 additions and 216373 deletions

View File

@@ -106,8 +106,8 @@ def assert_geometries_equal(
if normalize:
x = shapely.normalize(x)
y = shapely.normalize(y)
x = np.array(x, copy=False)
y = np.array(y, copy=False)
x = np.asarray(x)
y = np.asarray(y)
is_scalar = x.ndim == 0 or y.ndim == 0