PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ ST_BoundingDiagonal()

Datum ST_BoundingDiagonal ( PG_FUNCTION_ARGS  )

Definition at line 2884 of file lwgeom_functions_basic.c.

2885 {
2886  GSERIALIZED *geom_in = PG_GETARG_GSERIALIZED_P(0);
2887  GSERIALIZED *geom_out;
2888  bool fits = PG_GETARG_BOOL(1);
2889  LWGEOM *lwgeom_in = lwgeom_from_gserialized(geom_in);
2890  LWGEOM *lwgeom_out;
2891  const GBOX *gbox;
2892  int hasz = FLAGS_GET_Z(lwgeom_in->flags);
2893  int hasm = FLAGS_GET_M(lwgeom_in->flags);
2894  int srid = lwgeom_in->srid;
2895  POINT4D pt;
2896  POINTARRAY *pa;
2897 
2898  if ( fits ) {
2899  /* unregister any cached bbox to ensure it's recomputed */
2900  lwgeom_in->bbox = NULL;
2901  }
2902 
2903  gbox = lwgeom_get_bbox(lwgeom_in);
2904 
2905  if ( ! gbox )
2906  {
2907  lwgeom_out = lwgeom_construct_empty(LINETYPE, srid, hasz, hasm);
2908  }
2909  else
2910  {
2911  pa = ptarray_construct_empty(hasz, hasm, 2);
2912  pt.x = gbox->xmin;
2913  pt.y = gbox->ymin;
2914  pt.z = gbox->zmin;
2915  pt.m = gbox->mmin;
2916  ptarray_append_point(pa, &pt, LW_TRUE);
2917  pt.x = gbox->xmax;
2918  pt.y = gbox->ymax;
2919  pt.z = gbox->zmax;
2920  pt.m = gbox->mmax;
2921  ptarray_append_point(pa, &pt, LW_TRUE);
2922  lwgeom_out = lwline_as_lwgeom( lwline_construct(srid, NULL, pa) );
2923  }
2924 
2925  lwgeom_free(lwgeom_in);
2926  PG_FREE_IF_COPY(geom_in, 0);
2927 
2928  geom_out = geometry_serialize(lwgeom_out);
2929  lwgeom_free(lwgeom_out);
2930 
2931  PG_RETURN_POINTER(geom_out);
2932 }
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
LWGEOM * lwline_as_lwgeom(const LWLINE *obj)
Definition: lwgeom.c:330
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1144
#define LINETYPE
Definition: liblwgeom.h:86
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
POINTARRAY * ptarray_construct_empty(char hasz, char hasm, uint32_t maxpoints)
Create a new POINTARRAY with no points.
Definition: ptarray.c:70
#define FLAGS_GET_M(flags)
Definition: liblwgeom.h:141
const GBOX * lwgeom_get_bbox(const LWGEOM *lwgeom)
Get a non-empty geometry bounding box, computing and caching it if not already there.
Definition: lwgeom.c:734
int ptarray_append_point(POINTARRAY *pa, const POINT4D *pt, int allow_duplicates)
Append a point to the end of an existing POINTARRAY If allow_duplicate is LW_FALSE,...
Definition: ptarray.c:156
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
LWLINE * lwline_construct(int srid, GBOX *bbox, POINTARRAY *points)
Definition: lwline.c:42
LWGEOM * lwgeom_construct_empty(uint8_t type, int srid, char hasz, char hasm)
Definition: lwgeom.c:2092
GSERIALIZED * geometry_serialize(LWGEOM *lwgeom)
double ymax
Definition: liblwgeom.h:298
double zmax
Definition: liblwgeom.h:300
double xmax
Definition: liblwgeom.h:296
double zmin
Definition: liblwgeom.h:299
double mmax
Definition: liblwgeom.h:302
double ymin
Definition: liblwgeom.h:297
double xmin
Definition: liblwgeom.h:295
double mmin
Definition: liblwgeom.h:301
GBOX * bbox
Definition: liblwgeom.h:401
uint8_t flags
Definition: liblwgeom.h:400
int32_t srid
Definition: liblwgeom.h:402
double m
Definition: liblwgeom.h:355
double x
Definition: liblwgeom.h:355
double z
Definition: liblwgeom.h:355
double y
Definition: liblwgeom.h:355

References LWGEOM::bbox, LWGEOM::flags, FLAGS_GET_M, FLAGS_GET_Z, geometry_serialize(), LINETYPE, LW_TRUE, lwgeom_construct_empty(), lwgeom_free(), lwgeom_from_gserialized(), lwgeom_get_bbox(), lwline_as_lwgeom(), lwline_construct(), POINT4D::m, GBOX::mmax, GBOX::mmin, ptarray_append_point(), ptarray_construct_empty(), LWGEOM::srid, POINT4D::x, GBOX::xmax, GBOX::xmin, POINT4D::y, GBOX::ymax, GBOX::ymin, POINT4D::z, GBOX::zmax, and GBOX::zmin.

Here is the call graph for this function: