Skip to content

Commit

Permalink
fix tests on GEOS 3.12 (#179)
Browse files Browse the repository at this point in the history
We were testing setting and getting the Z coordinate of a 2D geometry. It seems that this now always returns NaN.
  • Loading branch information
visr committed Aug 31, 2023
1 parent f48a5ce commit 7c50076
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/test_geos_functions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,10 @@ end
@test LibGEOS.getSize(cs_) == 1
@test LibGEOS.getDimensions(cs_) == 2
@test LibGEOS.getCoordinates(cs_) == [[5.0, 3.0]]
# z coordinate stays NaN for 2D geometry
@test isnan(LibGEOS.getZ(cs_, 1))
LibGEOS.setZ!(cs_, 1, 2.0)
@test isnan(LibGEOS.getZ(cs_, 1))

cs_2 = LibGEOS.createCoordSeq([5.0, 3.0])
@test LibGEOS.getSize(cs_2) == 1
Expand All @@ -186,7 +190,7 @@ end
@test LibGEOS.getCoordinates(cs_3, 2) == [1.0, 2.0]
@test LibGEOS.getCoordinates(cs_3, 3) == [1.0, 3.0]


cs_ = LibGEOS.createCoordSeq(0, 0, 0)
for i = 1:5
x = i * 10.0
y = i * 10.0 + 1.0
Expand Down

0 comments on commit 7c50076

Please sign in to comment.