PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ LWGEOM_dropBBOX()

Datum LWGEOM_dropBBOX ( PG_FUNCTION_ARGS  )

Definition at line 636 of file lwgeom_inout.c.

637 {
638  GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
639 
640  /* No box? we're done already! */
641  if ( ! gserialized_has_bbox(geom) )
642  PG_RETURN_POINTER(geom);
643 
644  PG_RETURN_POINTER(gserialized_drop_gbox(geom));
645 }
int gserialized_has_bbox(const GSERIALIZED *g)
Check if a GSERIALIZED has a bounding box without deserializing first.
Definition: gserialized.c:192
GSERIALIZED * gserialized_drop_gbox(GSERIALIZED *g)
Remove the bounding box from a GSERIALIZED.
Definition: gserialized.c:81

References gserialized_drop_gbox(), and gserialized_has_bbox().

Here is the call graph for this function: