PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ ST_ClipByBox2d()

Datum ST_ClipByBox2d ( PG_FUNCTION_ARGS  )

Definition at line 1294 of file postgis/lwgeom_geos.c.

1295 {
1296  GSERIALIZED *geom1;
1297  GSERIALIZED *result;
1298  LWGEOM *lwgeom1, *lwresult ;
1299  const GBOX *bbox1;
1300  GBOX *bbox2;
1301 
1302  geom1 = PG_GETARG_GSERIALIZED_P(0);
1303  lwgeom1 = lwgeom_from_gserialized(geom1) ;
1304 
1305  bbox1 = lwgeom_get_bbox(lwgeom1);
1306  if ( ! bbox1 )
1307  {
1308  /* empty clips to empty, no matter rect */
1309  lwgeom_free(lwgeom1);
1310  PG_RETURN_POINTER(geom1);
1311  }
1312 
1313  /* WARNING: this is really a BOX2DF, use only xmin and ymin fields */
1314  bbox2 = (GBOX *)PG_GETARG_POINTER(1);
1315  bbox2->flags = 0;
1316 
1317  /* If bbox1 outside of bbox2, return empty */
1318  if ( ! gbox_overlaps_2d(bbox1, bbox2) )
1319  {
1320  lwresult = lwgeom_construct_empty(lwgeom1->type, lwgeom1->srid, 0, 0);
1321  lwgeom_free(lwgeom1);
1322  PG_FREE_IF_COPY(geom1, 0);
1323  result = geometry_serialize(lwresult) ;
1324  lwgeom_free(lwresult) ;
1325  PG_RETURN_POINTER(result);
1326  }
1327 
1328  /* if bbox1 is covered by bbox2, return lwgeom1 */
1329  if ( gbox_contains_2d(bbox2, bbox1) )
1330  {
1331  lwgeom_free(lwgeom1);
1332  PG_RETURN_POINTER(geom1);
1333  }
1334 
1335  lwresult = lwgeom_clip_by_rect(lwgeom1, bbox2->xmin, bbox2->ymin,
1336  bbox2->xmax, bbox2->ymax);
1337 
1338  lwgeom_free(lwgeom1);
1339  PG_FREE_IF_COPY(geom1, 0);
1340 
1341  if (!lwresult) PG_RETURN_NULL();
1342 
1343  result = geometry_serialize(lwresult) ;
1344  lwgeom_free(lwresult) ;
1345  PG_RETURN_POINTER(result);
1346 }
int gbox_overlaps_2d(const GBOX *g1, const GBOX *g2)
Return LW_TRUE if the GBOX overlaps on the 2d plane, LW_FALSE otherwise.
Definition: g_box.c:330
int gbox_contains_2d(const GBOX *g1, const GBOX *g2)
Return LW_TRUE if the first GBOX contains the second on the 2d plane, LW_FALSE otherwise.
Definition: g_box.c:346
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1144
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
LWGEOM * lwgeom_clip_by_rect(const LWGEOM *geom1, double x0, double y0, double x1, double y1)
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 xmax
Definition: liblwgeom.h:296
double ymin
Definition: liblwgeom.h:297
double xmin
Definition: liblwgeom.h:295
uint8_t flags
Definition: liblwgeom.h:294
uint8_t type
Definition: liblwgeom.h:399
int32_t srid
Definition: liblwgeom.h:402

References GBOX::flags, gbox_contains_2d(), gbox_overlaps_2d(), geometry_serialize(), lwgeom_clip_by_rect(), lwgeom_construct_empty(), lwgeom_free(), lwgeom_from_gserialized(), lwgeom_get_bbox(), LWGEOM::srid, LWGEOM::type, GBOX::xmax, GBOX::xmin, GBOX::ymax, and GBOX::ymin.

Here is the call graph for this function: