913 const uint32_t set_count = 2;
915 int pgrastpos[2] = {-1, -1};
917 uint32_t bandindex[2] = {0};
918 uint32_t hasbandindex[2] = {0};
928 for (i = 0, j = 0; i < set_count; i++) {
930 if (PG_ARGISNULL(j)) {
931 for (k = 0; k < i; k++) {
933 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
937 pgrast[i] = (
rt_pgraster *) PG_DETOAST_DATUM(PG_GETARG_DATUM(j));
944 for (k = 0; k <= i; k++) {
947 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
949 elog(ERROR,
"RASTER_dwithin: Could not deserialize the %s raster", i < 1 ?
"first" :
"second");
956 elog(NOTICE,
"The %s raster provided has no bands", i < 1 ?
"first" :
"second");
958 for (k = 0; k < i; k++) {
960 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
966 if (!PG_ARGISNULL(j)) {
967 bandindex[i] = PG_GETARG_INT32(j);
968 if (bandindex[i] < 1 || bandindex[i] > numBands) {
969 elog(NOTICE,
"Invalid band index (must use 1-based) for the %s raster. Returning NULL", i < 1 ?
"first" :
"second");
971 for (k = 0; k < i; k++) {
973 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
987 if (PG_ARGISNULL(4)) {
988 elog(NOTICE,
"Distance cannot be NULL. Returning NULL");
989 for (k = 0; k < set_count; k++) {
991 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
998 elog(NOTICE,
"Distance cannot be less than zero. Returning NULL");
999 for (k = 0; k < set_count; k++) {
1001 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
1008 (hasbandindex[0] && !hasbandindex[1]) ||
1009 (!hasbandindex[0] && hasbandindex[1])
1011 elog(NOTICE,
"Missing band index. Band indices must be provided for both rasters if any one is provided");
1012 for (k = 0; k < set_count; k++) {
1014 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
1021 for (k = 0; k < set_count; k++) {
1023 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
1025 elog(ERROR,
"The two rasters provided have different SRIDs");
1030 rast[0], (hasbandindex[0] ? (
int)bandindex[0] - 1 : -1),
1031 rast[1], (hasbandindex[1] ? (
int)bandindex[1] - 1 : -1),
1035 for (k = 0; k < set_count; k++) {
1037 PG_FREE_IF_COPY(pgrast[k], pgrastpos[k]);
1041 elog(ERROR,
"RASTER_dwithin: Could not test that the two rasters are within the specified distance of each other");
char result[OUT_DOUBLE_BUFFER_SIZE]
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.
uint16_t rt_raster_get_num_bands(rt_raster raster)
rt_errorstate rt_raster_within_distance(rt_raster rast1, int nband1, rt_raster rast2, int nband2, double distance, int *dwithin)
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.
static double distance(double x1, double y1, double x2, double y2)
#define POSTGIS_RT_DEBUGF(level, msg,...)