PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ST_BoundingDiagonal()

Datum ST_BoundingDiagonal ( PG_FUNCTION_ARGS  )

Definition at line 2748 of file lwgeom_functions_basic.c.

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, PG_FUNCTION_INFO_V1(), ptarray_append_point(), ptarray_construct_empty(), LWGEOM::srid, ST_Scale(), POINT4D::x, GBOX::xmax, GBOX::xmin, POINT4D::y, GBOX::ymax, GBOX::ymin, POINT4D::z, GBOX::zmax, and GBOX::zmin.

Referenced by ST_SwapOrdinates().

2749 {
2750  GSERIALIZED *geom_in = PG_GETARG_GSERIALIZED_P(0);
2751  GSERIALIZED *geom_out;
2752  bool fits = PG_GETARG_BOOL(1);
2753  LWGEOM *lwgeom_in = lwgeom_from_gserialized(geom_in);
2754  LWGEOM *lwgeom_out;
2755  const GBOX *gbox;
2756  int hasz = FLAGS_GET_Z(lwgeom_in->flags);
2757  int hasm = FLAGS_GET_M(lwgeom_in->flags);
2758  int srid = lwgeom_in->srid;
2759  POINT4D pt;
2760  POINTARRAY *pa;
2761 
2762  if ( fits ) {
2763  /* unregister any cached bbox to ensure it's recomputed */
2764  lwgeom_in->bbox = NULL;
2765  }
2766 
2767  gbox = lwgeom_get_bbox(lwgeom_in);
2768 
2769  if ( ! gbox )
2770  {
2771  lwgeom_out = lwgeom_construct_empty(LINETYPE, srid, hasz, hasm);
2772  }
2773  else
2774  {
2775  pa = ptarray_construct_empty(hasz, hasm, 2);
2776  pt.x = gbox->xmin;
2777  pt.y = gbox->ymin;
2778  pt.z = gbox->zmin;
2779  pt.m = gbox->mmin;
2780  ptarray_append_point(pa, &pt, LW_TRUE);
2781  pt.x = gbox->xmax;
2782  pt.y = gbox->ymax;
2783  pt.z = gbox->zmax;
2784  pt.m = gbox->mmax;
2785  ptarray_append_point(pa, &pt, LW_TRUE);
2786  lwgeom_out = lwline_as_lwgeom( lwline_construct(srid, NULL, pa) );
2787  }
2788 
2789  lwgeom_free(lwgeom_in);
2790  PG_FREE_IF_COPY(geom_in, 0);
2791 
2792  geom_out = geometry_serialize(lwgeom_out);
2793  lwgeom_free(lwgeom_out);
2794 
2795  PG_RETURN_POINTER(geom_out);
2796 }
double x
Definition: liblwgeom.h:352
#define LINETYPE
Definition: liblwgeom.h:86
GBOX * bbox
Definition: liblwgeom.h:398
double m
Definition: liblwgeom.h:352
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
uint8_t flags
Definition: liblwgeom.h:397
double xmax
Definition: liblwgeom.h:293
POINTARRAY * ptarray_construct_empty(char hasz, char hasm, uint32_t maxpoints)
Create a new POINTARRAY with no points.
Definition: ptarray.c:70
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1099
int32_t srid
Definition: liblwgeom.h:399
double zmax
Definition: liblwgeom.h:297
double ymin
Definition: liblwgeom.h:294
LWGEOM * lwline_as_lwgeom(const LWLINE *obj)
Definition: lwgeom.c:298
double xmin
Definition: liblwgeom.h:292
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, then a duplicate point will not be added.
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
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:689
double ymax
Definition: liblwgeom.h:295
#define FLAGS_GET_Z(flags)
Macros for manipulating the 'flags' byte.
Definition: liblwgeom.h:140
LWGEOM * lwgeom_construct_empty(uint8_t type, int srid, char hasz, char hasm)
Definition: lwgeom.c:1851
double z
Definition: liblwgeom.h:352
GSERIALIZED * geometry_serialize(LWGEOM *lwgeom)
double mmin
Definition: liblwgeom.h:298
double zmin
Definition: liblwgeom.h:296
#define FLAGS_GET_M(flags)
Definition: liblwgeom.h:141
double mmax
Definition: liblwgeom.h:299
double y
Definition: liblwgeom.h:352
Here is the call graph for this function:
Here is the caller graph for this function: