PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ sfcgal_union3D()

Datum sfcgal_union3D ( PG_FUNCTION_ARGS  )

Definition at line 614 of file postgis/lwgeom_sfcgal.c.

References gserialized_get_srid(), PG_FUNCTION_INFO_V1(), POSTGIS2SFCGALGeometry(), sfcgal_postgis_init(), sfcgal_volume(), and SFCGALGeometry2POSTGIS().

Referenced by sfcgal_union().

615 {
616  GSERIALIZED *input0, *input1, *output;
617  sfcgal_geometry_t *geom0, *geom1;
618  sfcgal_geometry_t *result;
619  srid_t srid;
620 
622 
623  input0 = (GSERIALIZED*) PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
624  srid = gserialized_get_srid(input0);
625  input1 = (GSERIALIZED*) PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
626  geom0 = POSTGIS2SFCGALGeometry(input0);
627  PG_FREE_IF_COPY(input0, 0);
628  geom1 = POSTGIS2SFCGALGeometry(input1);
629  PG_FREE_IF_COPY(input1, 1);
630 
631  result = sfcgal_geometry_union_3d(geom0, geom1);
632  sfcgal_geometry_delete(geom0);
633  sfcgal_geometry_delete(geom1);
634 
635  output = SFCGALGeometry2POSTGIS(result, 0, srid);
636  sfcgal_geometry_delete(result);
637 
638  PG_RETURN_POINTER(output);
639 }
sfcgal_geometry_t * POSTGIS2SFCGALGeometry(GSERIALIZED *pglwgeom)
GSERIALIZED * SFCGALGeometry2POSTGIS(const sfcgal_geometry_t *geom, int force3D, int SRID)
void sfcgal_postgis_init(void)
int32_t gserialized_get_srid(const GSERIALIZED *s)
Extract the SRID from the serialized form (it is packed into three bytes so this is a handy function)...
Definition: g_serialized.c:100
Here is the call graph for this function:
Here is the caller graph for this function: