You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
This would still be a nice feature to have available from postgis. Afaik there are 2 functions that already do triangulation but in different ways. ST_DelaunayTriangulation is unconstrained and only does points while ST_Tesselate only does polygons.
I have it running as st_triangulate2dz, and up to now without bugs.
To activate it in postgis:
CREATE OR REPLACE FUNCTION st_triangulate2dz(geometry)
RETURNS geometry AS
'$libdir/postgis-2.3', 'sfcgal_triangulate'
LANGUAGE c IMMUTABLE STRICT
COST 100;
Is there a reason why lwgeom_sfcgal already includes the code for triangulate_2dz but it is not (yet) exported with with sfcgal.sql?
The text was updated successfully, but these errors were encountered: