PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ LWGEOM_dropBBOX()

Datum LWGEOM_dropBBOX ( PG_FUNCTION_ARGS  )

Definition at line 703 of file lwgeom_inout.c.

704 {
705  GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
706 
707  /* No box? we're done already! */
708  if ( ! gserialized_has_bbox(geom) )
709  PG_RETURN_POINTER(geom);
710 
711  PG_RETURN_POINTER(gserialized_drop_gbox(geom));
712 }
int gserialized_has_bbox(const GSERIALIZED *g)
Check if a GSERIALIZED has a bounding box without deserializing first.
Definition: gserialized.c:163
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: