PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ gbox_ndims()

static int gbox_ndims ( const GBOX gbox)
static

Given that geodetic boxes are X/Y/Z regardless of the underlying geometry dimensionality and other boxes are guided by HAS_Z/HAS_M in their dimesionality, we have a little utility function to make it easy.

Definition at line 254 of file gserialized_estimate.c.

References GBOX::flags, FLAGS_GET_GEODETIC, FLAGS_GET_M, and FLAGS_GET_Z.

Referenced by compute_gserialized_stats_mode(), and estimate_selectivity().

255 {
256  int dims = 2;
257  if ( FLAGS_GET_GEODETIC(gbox->flags) )
258  return 3;
259  if ( FLAGS_GET_Z(gbox->flags) )
260  dims++;
261  if ( FLAGS_GET_M(gbox->flags) )
262  dims++;
263  return dims;
264 }
#define FLAGS_GET_GEODETIC(flags)
Definition: liblwgeom.h:143
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
uint8_t flags
Definition: liblwgeom.h:291
#define FLAGS_GET_M(flags)
Definition: liblwgeom.h:141
Here is the caller graph for this function: