PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ LWGEOM_addBBOX()

Datum LWGEOM_addBBOX ( PG_FUNCTION_ARGS  )

Definition at line 687 of file lwgeom_inout.c.

688 {
689  GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
690  GSERIALIZED *result;
691  LWGEOM *lwgeom;
692 
693  lwgeom = lwgeom_from_gserialized(geom);
694  lwgeom_add_bbox(lwgeom);
695  result = geometry_serialize(lwgeom);
696 
697  PG_FREE_IF_COPY(geom, 0);
698  PG_RETURN_POINTER(result);
699 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_add_bbox(LWGEOM *lwgeom)
Compute a bbox if not already computed.
Definition: lwgeom.c:686
GSERIALIZED * geometry_serialize(LWGEOM *lwgeom)

References geometry_serialize(), lwgeom_add_bbox(), and lwgeom_from_gserialized().

Referenced by cache_bbox().

Here is the call graph for this function:
Here is the caller graph for this function: