316 int pgrastpos[2] = {-1, -1};
328 for (i = 0, j = 0; i < set_count; i++) {
330 if (PG_ARGISNULL(j)) {
331 for (k = 0; k < i; k++) {
333 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
337 pgrast[i] = (
rt_pgraster *) PG_DETOAST_DATUM(PG_GETARG_DATUM(j));
344 for (k = 0; k <= i; k++) {
347 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
349 elog(ERROR,
"RASTER_touches: Could not deserialize the %s raster", i < 1 ?
"first" :
"second");
356 elog(NOTICE,
"The %s raster provided has no bands", i < 1 ?
"first" :
"second");
358 for (k = 0; k < i; k++) {
360 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
366 if (!PG_ARGISNULL(j)) {
367 bandindex[i] = PG_GETARG_INT32(j);
368 if (bandindex[i] < 1 || bandindex[i] > numBands) {
369 elog(NOTICE,
"Invalid band index (must use 1-based) for the %s raster. Returning NULL", i < 1 ?
"first" :
"second");
371 for (k = 0; k < i; k++) {
373 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
388 (hasbandindex[0] && !hasbandindex[1]) ||
389 (!hasbandindex[0] && hasbandindex[1])
391 elog(NOTICE,
"Missing band index. Band indices must be provided for both rasters if any one is provided");
392 for (k = 0; k < set_count; k++) {
394 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
401 for (k = 0; k < set_count; k++) {
403 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
405 elog(ERROR,
"The two rasters provided have different SRIDs");
410 rast[0], (hasbandindex[0] ? (
int)bandindex[0] - 1 : -1),
411 rast[1], (hasbandindex[1] ? (
int)bandindex[1] - 1 : -1),
414 for (k = 0; k < set_count; k++) {
416 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
420 elog(ERROR,
"RASTER_touches: Could not test for touch on the two rasters");
424 PG_RETURN_BOOL(result);
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.
uint16_t rt_raster_get_num_bands(rt_raster raster)
rt_raster rt_raster_deserialize(void *serialized, int header_only)
Return a raster from a serialized form.
#define POSTGIS_RT_DEBUGF(level, msg,...)