PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwpolygon_calculate_gbox_geodetic()

static int lwpolygon_calculate_gbox_geodetic ( const LWPOLY poly,
GBOX gbox 
)
static

Definition at line 2956 of file lwgeodetic.c.

2957 {
2958  GBOX ringbox;
2959  uint32_t i;
2960  int first = LW_TRUE;
2961  assert(poly);
2962  if ( poly->nrings == 0 )
2963  return LW_FAILURE;
2964  ringbox.flags = gbox->flags;
2965  for ( i = 0; i < poly->nrings; i++ )
2966  {
2967  if ( ptarray_calculate_gbox_geodetic(poly->rings[i], &ringbox) == LW_FAILURE )
2968  return LW_FAILURE;
2969  if ( first )
2970  {
2971  gbox_duplicate(&ringbox, gbox);
2972  first = LW_FALSE;
2973  }
2974  else
2975  {
2976  gbox_merge(&ringbox, gbox);
2977  }
2978  }
2979 
2980  /* If the box wraps a poly, push that axis to the absolute min/max as appropriate */
2981  gbox_check_poles(gbox);
2982 
2983  return LW_SUCCESS;
2984 }
int gbox_merge(const GBOX *new_box, GBOX *merge_box)
Update the merged GBOX to be large enough to include itself and the new box.
Definition: g_box.c:264
void gbox_duplicate(const GBOX *original, GBOX *duplicate)
Copy the values of original GBOX into duplicate.
Definition: g_box.c:440
#define LW_FALSE
Definition: liblwgeom.h:77
#define LW_FAILURE
Definition: liblwgeom.h:79
#define LW_SUCCESS
Definition: liblwgeom.h:80
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
static int gbox_check_poles(GBOX *gbox)
Check to see if this geocentric gbox is wrapped around a pole.
Definition: lwgeodetic.c:316
int ptarray_calculate_gbox_geodetic(const POINTARRAY *pa, GBOX *gbox)
Calculate geodetic (x/y/z) box and add values to gbox.
Definition: lwgeodetic.c:2889
uint8_t flags
Definition: liblwgeom.h:294
POINTARRAY ** rings
Definition: liblwgeom.h:460
uint32_t nrings
Definition: liblwgeom.h:458
unsigned int uint32_t
Definition: uthash.h:78

References GBOX::flags, gbox_check_poles(), gbox_duplicate(), gbox_merge(), LW_FAILURE, LW_FALSE, LW_SUCCESS, LW_TRUE, LWPOLY::nrings, ptarray_calculate_gbox_geodetic(), and LWPOLY::rings.

Referenced by lwgeom_calculate_gbox_geodetic().

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