We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f882a4b commit 0590202Copy full SHA for 0590202
src/geos_functions.jl
@@ -352,7 +352,7 @@ end
352
353
354
function createCollection(geomtype::Int, geoms::Vector{GEOSGeom})
355
- result = GEOSGeom_createCollection(@compat(Int32(geomtype)), pointer(geoms), length(geoms))
+ result = GEOSGeom_createCollection(@compat(Int32(geomtype)), pointer(geoms), @compat(UInt32(length(geoms))))
356
if result == C_NULL
357
error("LibGEOS: Error in GEOSGeom_createCollection")
358
end
@@ -1093,4 +1093,3 @@ end
1093
# Return 0 on exception, the closest points of the two geometries otherwise.
1094
# The first point comes from g1 geometry and the second point comes from g2.
1095
nearestPoints(g1::GEOSGeom, g2::GEOSGeom) = GEOSNearestPoints(g1, g2)
1096
-
0 commit comments