PostGIS 3.0.6dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ LWGEOM_dropBBOX()

Datum LWGEOM_dropBBOX ( PG_FUNCTION_ARGS  )

Definition at line 705 of file lwgeom_inout.c.

706{
707 GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
708
709 /* No box? we're done already! */
710 if ( ! gserialized_has_bbox(geom) )
711 PG_RETURN_POINTER(geom);
712
713 PG_RETURN_POINTER(gserialized_drop_gbox(geom));
714}
int gserialized_has_bbox(const GSERIALIZED *g)
Check if a GSERIALIZED has a bounding box without deserializing first.
GSERIALIZED * gserialized_drop_gbox(GSERIALIZED *g)
Remove the bounding box from a GSERIALIZED.
Definition gserialized.c:52

References gserialized_drop_gbox(), and gserialized_has_bbox().

Here is the call graph for this function: