From 358672a438f0379425d21aa16442d4af313f5311 Mon Sep 17 00:00:00 2001 From: Andy Nowacki Date: Tue, 23 Sep 2025 13:44:31 +0100 Subject: [PATCH] Export wkbPointZM from Gdal module `wkbPointZM` is defined in `Gdal` and used within `ogr2GMTdataset` with the expectation that it had been brought into scope of the parent module with the `using Gdal` statement. However, `wkbPointZM` was not actually exported from `Gdal`, causing an error when converting some files. Add `wkbPointZM` to the list of exports in `Gdal` to fix this. --- src/gdal.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gdal.jl b/src/gdal.jl index f6b9d9607..93f307d09 100644 --- a/src/gdal.jl +++ b/src/gdal.jl @@ -2649,7 +2649,7 @@ end delaunay, dither, buffer, centroid, intersection, intersects, polyunion, fromWKT, fillnodata!, fillnodata, concavehull, convexhull, difference, symdifference, distance, geomarea, geodesicarea, pointalongline, polygonize, simplify, boundary, crosses, disjoint, equals, envelope, envelope3d, geomlength, overlaps, touches, within, - wkbUnknown, wkbPoint, wkbPointZ, wkbLineString, wkbLineStringZ, wkbPolygon, wkbPolygonZM, wkbMultiPoint, + wkbUnknown, wkbPoint, wkbPointZ, wkbPointZM, wkbLineString, wkbLineStringZ, wkbPolygon, wkbPolygonZM, wkbMultiPoint, wkbMultiPointZ, wkbMultiLineString, wkbMultiPolygon, wkbGeometryCollection, wkbPoint25D, wkbLineString25D, wkbPolygon25D, wkbMultiPoint25D, wkbMultiLineString25D, wkbMultiPolygon25D, wkbGeometryCollection25D