PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ ST_ClipByBox2d()

Datum ST_ClipByBox2d ( PG_FUNCTION_ARGS  )

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

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(), POSTGIS_GEOS_VERSION, LWGEOM::srid, LWGEOM::type, GBOX::xmax, GBOX::xmin, GBOX::ymax, and GBOX::ymin.

Referenced by centroid().

1425 {
1426 #if POSTGIS_GEOS_VERSION < 35
1427 
1428  lwpgerror("The GEOS version this PostGIS binary "
1429  "was compiled against (%d) doesn't support "
1430  "'GEOSClipByRect' function (3.5.0+ required)",
1432  PG_RETURN_NULL();
1433 
1434 #else /* POSTGIS_GEOS_VERSION >= 35 */
1435 
1436  GSERIALIZED *geom1;
1437  GSERIALIZED *result;
1438  LWGEOM *lwgeom1, *lwresult ;
1439  const GBOX *bbox1;
1440  GBOX *bbox2;
1441 
1442  geom1 = PG_GETARG_GSERIALIZED_P(0);
1443  lwgeom1 = lwgeom_from_gserialized(geom1) ;
1444 
1445  bbox1 = lwgeom_get_bbox(lwgeom1);
1446  if ( ! bbox1 )
1447  {
1448  /* empty clips to empty, no matter rect */
1449  lwgeom_free(lwgeom1);
1450  PG_RETURN_POINTER(geom1);
1451  }
1452 
1453  /* WARNING: this is really a BOX2DF, use only xmin and ymin fields */
1454  bbox2 = (GBOX *)PG_GETARG_POINTER(1);
1455  bbox2->flags = 0;
1456 
1457  /* If bbox1 outside of bbox2, return empty */
1458  if ( ! gbox_overlaps_2d(bbox1, bbox2) )
1459  {
1460  lwresult = lwgeom_construct_empty(lwgeom1->type, lwgeom1->srid, 0, 0);
1461  lwgeom_free(lwgeom1);
1462  PG_FREE_IF_COPY(geom1, 0);
1463  result = geometry_serialize(lwresult) ;
1464  lwgeom_free(lwresult) ;
1465  PG_RETURN_POINTER(result);
1466  }
1467 
1468  /* if bbox1 is covered by bbox2, return lwgeom1 */
1469  if ( gbox_contains_2d(bbox2, bbox1) )
1470  {
1471  lwgeom_free(lwgeom1);
1472  PG_RETURN_POINTER(geom1);
1473  }
1474 
1475  lwresult = lwgeom_clip_by_rect(lwgeom1, bbox2->xmin, bbox2->ymin,
1476  bbox2->xmax, bbox2->ymax);
1477 
1478  lwgeom_free(lwgeom1);
1479  PG_FREE_IF_COPY(geom1, 0);
1480 
1481  if ( lwresult == NULL )
1482  PG_RETURN_NULL();
1483 
1484  result = geometry_serialize(lwresult) ;
1485  lwgeom_free(lwresult) ;
1486  PG_RETURN_POINTER(result);
1487 
1488 #endif /* POSTGIS_GEOS_VERSION >= 35 */
1489 }
#define POSTGIS_GEOS_VERSION
Definition: sqldefines.h:10
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
double xmax
Definition: liblwgeom.h:293
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1099
LWGEOM * lwgeom_clip_by_rect(const LWGEOM *geom1, double x0, double y0, double x1, double y1)
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:351
int32_t srid
Definition: liblwgeom.h:399
double ymin
Definition: liblwgeom.h:294
double xmin
Definition: liblwgeom.h:292
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
LWGEOM * lwgeom_construct_empty(uint8_t type, int srid, char hasz, char hasm)
Definition: lwgeom.c:1851
uint8_t flags
Definition: liblwgeom.h:291
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:335
GSERIALIZED * geometry_serialize(LWGEOM *lwgeom)
uint8_t type
Definition: liblwgeom.h:396
Here is the call graph for this function:
Here is the caller graph for this function: