Skip to content

Commit e873236

Browse files
committed
ogr_geos.py: GEOS 3.13.1 compatibility
1 parent 46f3542 commit e873236

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

autotest/ogr/ogr_geos.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,13 @@ def test_ogr_geos_pointzm_empty():
330330

331331
# GEOS 3.12 returns MULTIPOINT ZM EMPTY, but also accept POINT ZM EMPTY
332332
# to be future proof...
333-
assert g2.ExportToIsoWkt() in ("MULTIPOINT ZM EMPTY", "POINT ZM EMPTY")
333+
# Also accept "POINT EMPTY", as returned by GEOS 3.13.1
334+
# (cf https://github.com/libgeos/geos/issues/1248)
335+
assert g2.ExportToIsoWkt() in (
336+
"POINT EMPTY",
337+
"MULTIPOINT ZM EMPTY",
338+
"POINT ZM EMPTY",
339+
)
334340

335341

336342
###############################################################################

0 commit comments

Comments
 (0)