313 const int set_count = 2;
315 int pgrastpos[2] = {-1, -1};
327 for (i = 0, j = 0; i < set_count; i++) {
329 if (PG_ARGISNULL(j)) {
330 for (k = 0; k < i; k++) {
332 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
336 pgrast[i] = (
rt_pgraster *) PG_DETOAST_DATUM(PG_GETARG_DATUM(j));
343 for (k = 0; k <= i; k++) {
346 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
348 elog(ERROR,
"RASTER_touches: Could not deserialize the %s raster", i < 1 ?
"first" :
"second");
355 elog(NOTICE,
"The %s raster provided has no bands", i < 1 ?
"first" :
"second");
357 for (k = 0; k < i; k++) {
359 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
365 if (!PG_ARGISNULL(j)) {
366 bandindex[i] = PG_GETARG_INT32(j);
367 if (bandindex[i] < 1 || bandindex[i] > numBands) {
368 elog(NOTICE,
"Invalid band index (must use 1-based) for the %s raster. Returning NULL", i < 1 ?
"first" :
"second");
370 for (k = 0; k < i; k++) {
372 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
387 (hasbandindex[0] && !hasbandindex[1]) ||
388 (!hasbandindex[0] && hasbandindex[1])
390 elog(NOTICE,
"Missing band index. Band indices must be provided for both rasters if any one is provided");
391 for (k = 0; k < set_count; k++) {
393 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
400 for (k = 0; k < set_count; k++) {
402 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
404 elog(ERROR,
"The two rasters provided have different SRIDs");
409 rast[0], (hasbandindex[0] ? bandindex[0] - 1 : -1),
410 rast[1], (hasbandindex[1] ? bandindex[1] - 1 : -1),
413 for (k = 0; k < set_count; k++) {
415 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
419 elog(ERROR,
"RASTER_touches: Could not test for touch on the two rasters");
423 PG_RETURN_BOOL(result);
int rt_raster_get_num_bands(rt_raster raster)
#define POSTGIS_RT_DEBUGF(level, msg,...)
int32_t rt_raster_get_srid(rt_raster raster)
Get raster's SRID.
void rt_raster_destroy(rt_raster raster)
Release memory associated to a raster.
rt_errorstate rt_raster_touches(rt_raster rast1, int nband1, rt_raster rast2, int nband2, int *touches)
Return ES_ERROR if error occurred in function.
rt_raster rt_raster_deserialize(void *serialized, int header_only)
Return a raster from a serialized form.