ajaypadwal73 opened a new pull request, #990:
URL: https://github.com/apache/sedona-db/pull/990

   ## Summary
   
   Implements missing GEOS-backed functions from #224:
   
   - `ST_BuildArea` — builds a polygon from linework using `build_area()`
   - `ST_DelaunayTriangles` — Delaunay triangulation with optional tolerance 
using `delaunay_triangulation()`
   - `ST_ExteriorRing` — returns exterior ring of a polygon using 
`get_exterior_ring()`
   - `ST_PointOnSurface` — returns a point guaranteed to lie on/inside the 
geometry using `point_on_surface()`
   - `ST_NumInteriorRing` — alias for `ST_NumInteriorRings` (both spellings 
registered)
   
   Each function follows the existing pattern: WKB in → GEOS → WKB out via 
`GeosExecutor` + `write_geos_geometry`.
   
   ## Changes
   
   - `c/sedona-geos/src/lib.rs` — module declarations (alphabetical order)
   - `c/sedona-geos/src/register.rs` — kernel registrations (alphabetical order)
   - `c/sedona-geos/src/st_buildarea.rs` — new
   - `c/sedona-geos/src/st_delaunaytriangles.rs` — new
   - `c/sedona-geos/src/st_exteriorring.rs` — new
   - `c/sedona-geos/src/st_pointonsurface.rs` — new
   
   Closes part of #224.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to