PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ rt_raster_coveredby()

rt_errorstate rt_raster_coveredby ( rt_raster  rast1,
int  nband1,
rt_raster  rast2,
int  nband2,
int *  coveredby 
)

Return ES_ERROR if error occurred in function.

Parameter coveredby returns non-zero if rast1 is covered by rast2

Parameters
rast1: the first raster whose band will be tested
nband1: the 0-based band of raster rast1 to use if value is less than zero, bands are ignored. if nband1 gte zero, nband2 must be gte zero
rast2: the second raster whose band will be tested
nband2: the 0-based band of raster rast2 to use if value is less than zero, bands are ignored if nband2 gte zero, nband1 must be gte zero
coveredby: non-zero value if rast1 is covered by rast2
Returns
ES_NONE if success, ES_ERROR if error

Definition at line 427 of file rt_spatial_relationship.c.

References GSR_COVEREDBY, RASTER_DEBUG, and rt_raster_geos_spatial_relationship().

Referenced by RASTER_coveredby(), and test_raster_geos_covered_by().

431  {
432  RASTER_DEBUG(3, "Starting");
433 
435  rast1, nband1,
436  rast2, nband2,
438  coveredby
439  );
440 }
Datum coveredby(PG_FUNCTION_ARGS)
static rt_errorstate rt_raster_geos_spatial_relationship(rt_raster rast1, int nband1, rt_raster rast2, int nband2, rt_geos_spatial_test testtype, int *testresult)
#define RASTER_DEBUG(level, msg)
Definition: librtcore.h:295
Here is the call graph for this function:
Here is the caller graph for this function: