PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ LWGEOM_to_BOX3D()

Datum LWGEOM_to_BOX3D ( PG_FUNCTION_ARGS  )

Definition at line 413 of file lwgeom_box3d.c.

References box3d_from_gbox(), BOX3D_xmin(), LW_FAILURE, lwgeom_calculate_gbox(), lwgeom_free(), lwgeom_from_gserialized(), PG_FUNCTION_INFO_V1(), BOX3D::srid, and LWGEOM::srid.

Referenced by BOX3D_expand().

414 {
415  GSERIALIZED *geom = PG_GETARG_GSERIALIZED_P(0);
416  LWGEOM *lwgeom = lwgeom_from_gserialized(geom);
417  GBOX gbox;
418  BOX3D *result;
419  int rv = lwgeom_calculate_gbox(lwgeom, &gbox);
420 
421  if ( rv == LW_FAILURE )
422  PG_RETURN_NULL();
423 
424  result = box3d_from_gbox(&gbox);
425  result->srid = lwgeom->srid;
426 
427  lwgeom_free(lwgeom);
428  PG_RETURN_POINTER(result);
429 }
int32_t srid
Definition: liblwgeom.h:279
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1099
int32_t srid
Definition: liblwgeom.h:399
#define LW_FAILURE
Definition: liblwgeom.h:79
int lwgeom_calculate_gbox(const LWGEOM *lwgeom, GBOX *gbox)
Calculate bounding box of a geometry, automatically taking into account whether it is cartesian or ge...
Definition: lwgeom.c:701
BOX3D * box3d_from_gbox(const GBOX *gbox)
Definition: g_box.c:64
Here is the call graph for this function:
Here is the caller graph for this function: