PostGIS  3.7.0dev-r@@SVN_REVISION@@

◆ lwgeom_add_bbox_deep()

void lwgeom_add_bbox_deep ( LWGEOM lwgeom,
GBOX gbox 
)

Compute a box for geom and all sub-geometries, if not already computed.

Definition at line 742 of file lwgeom.c.

743 {
744  if ( lwgeom_is_empty(lwgeom) ) return;
745 
746  FLAGS_SET_BBOX(lwgeom->flags, 1);
747 
748  if ( ! ( gbox || lwgeom->bbox ) )
749  {
750  lwgeom->bbox = gbox_new(lwgeom->flags);
751  lwgeom_calculate_gbox(lwgeom, lwgeom->bbox);
752  }
753  else if ( gbox && ! lwgeom->bbox )
754  {
755  lwgeom->bbox = gbox_clone(gbox);
756  }
757 
758  if ( lwgeom_is_collection(lwgeom) )
759  {
760  uint32_t i;
761  LWCOLLECTION *lwcol = (LWCOLLECTION*)lwgeom;
762 
763  for ( i = 0; i < lwcol->ngeoms; i++ )
764  {
765  lwgeom_add_bbox_deep(lwcol->geoms[i], lwgeom->bbox);
766  }
767  }
768 }
GBOX * gbox_new(lwflags_t flags)
Create a new gbox with the dimensionality indicated by the flags.
Definition: gbox.c:32
GBOX * gbox_clone(const GBOX *gbox)
Definition: gbox.c:45
#define FLAGS_SET_BBOX(flags, value)
Definition: liblwgeom.h:174
int lwgeom_is_collection(const LWGEOM *geom)
Determine whether a LWGEOM contains sub-geometries or not This basically just checks that the struct ...
Definition: lwgeom.c:1125
int lwgeom_calculate_gbox(const LWGEOM *lwgeom, GBOX *gbox)
Calculate the gbox for this geometry, a cartesian box or geodetic box, depending on how it is flagged...
Definition: lwgeom.c:783
void lwgeom_add_bbox_deep(LWGEOM *lwgeom, GBOX *gbox)
Compute a box for geom and all sub-geometries, if not already computed.
Definition: lwgeom.c:742
static int lwgeom_is_empty(const LWGEOM *geom)
Return true or false depending on whether a geometry is an "empty" geometry (no vertices members)
Definition: lwinline.h:199
uint32_t ngeoms
Definition: liblwgeom.h:580
LWGEOM ** geoms
Definition: liblwgeom.h:575
GBOX * bbox
Definition: liblwgeom.h:458
lwflags_t flags
Definition: liblwgeom.h:461

References LWGEOM::bbox, LWGEOM::flags, FLAGS_SET_BBOX, gbox_clone(), gbox_new(), LWCOLLECTION::geoms, lwgeom_add_bbox_deep(), lwgeom_calculate_gbox(), lwgeom_is_collection(), lwgeom_is_empty(), and LWCOLLECTION::ngeoms.

Referenced by geography_distance_knn(), geography_distance_uncached(), and lwgeom_add_bbox_deep().

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