200 text *tablenametext = NULL;
201 char *tablename = NULL;
202 text *colnametext = NULL;
203 char *colname = NULL;
204 int32_t bandindex = 1;
205 bool exclude_nodata_value =
TRUE;
213 SPITupleTable *tuptable = NULL;
233 if (PG_ARGISNULL(0)) {
234 elog(NOTICE,
"Table name must be provided");
237 tablenametext = PG_GETARG_TEXT_P(0);
238 tablename = text_to_cstring(tablenametext);
239 if (!strlen(tablename)) {
240 elog(NOTICE,
"Table name must be provided");
245 if (PG_ARGISNULL(1)) {
246 elog(NOTICE,
"Column name must be provided");
249 colnametext = PG_GETARG_TEXT_P(1);
250 colname = text_to_cstring(colnametext);
251 if (!strlen(colname)) {
252 elog(NOTICE,
"Column name must be provided");
257 if (!PG_ARGISNULL(2))
258 bandindex = PG_GETARG_INT32(2);
261 if (!PG_ARGISNULL(3))
262 exclude_nodata_value = PG_GETARG_BOOL(3);
265 if (!PG_ARGISNULL(4)) {
266 sample = PG_GETARG_FLOAT8(4);
267 if (sample < 0 || sample > 1) {
268 elog(NOTICE,
"Invalid sample percentage (must be between 0 and 1). Returning NULL");
272 else if (
FLT_EQ(sample, 0.0))
280 spi_result = SPI_connect();
281 if (spi_result != SPI_OK_CONNECT) {
283 elog(ERROR,
"RASTER_summaryStatsCoverage: Cannot connect to database using SPI");
288 len =
sizeof(char) * (strlen(
"SELECT \"\" FROM \"\" WHERE \"\" IS NOT NULL") + (strlen(colname) * 2) + strlen(tablename) + 1);
289 sql = (
char *) palloc(len);
291 if (SPI_tuptable) SPI_freetuptable(tuptable);
293 elog(ERROR,
"RASTER_summaryStatsCoverage: Cannot allocate memory for sql");
298 snprintf(sql, len,
"SELECT \"%s\" FROM \"%s\" WHERE \"%s\" IS NOT NULL", colname, tablename, colname);
299 portal = SPI_cursor_open_with_args(
309 SPI_cursor_fetch(portal,
TRUE, 1);
310 while (SPI_processed == 1 && SPI_tuptable != NULL) {
311 tupdesc = SPI_tuptable->tupdesc;
312 tuptable = SPI_tuptable;
313 tuple = tuptable->vals[0];
315 datum = SPI_getbinval(tuple, tupdesc, 1, &isNull);
316 if (SPI_result == SPI_ERROR_NOATTRIBUTE) {
318 if (SPI_tuptable) SPI_freetuptable(tuptable);
319 SPI_cursor_close(portal);
322 if (NULL != rtn) pfree(rtn);
323 elog(ERROR,
"RASTER_summaryStatsCoverage: Cannot get raster of coverage");
327 SPI_cursor_fetch(portal,
TRUE, 1);
331 pgraster = (
rt_pgraster *) PG_DETOAST_DATUM(datum);
336 if (SPI_tuptable) SPI_freetuptable(tuptable);
337 SPI_cursor_close(portal);
340 if (NULL != rtn) pfree(rtn);
341 elog(ERROR,
"RASTER_summaryStatsCoverage: Cannot deserialize raster");
347 if (bandindex < 1 || bandindex > num_bands) {
348 elog(NOTICE,
"Invalid band index (must use 1-based). Returning NULL");
352 if (SPI_tuptable) SPI_freetuptable(tuptable);
353 SPI_cursor_close(portal);
356 if (NULL != rtn) pfree(rtn);
363 elog(NOTICE,
"Cannot find band at index %d. Returning NULL", bandindex);
367 if (SPI_tuptable) SPI_freetuptable(tuptable);
368 SPI_cursor_close(portal);
371 if (NULL != rtn) pfree(rtn);
382 elog(NOTICE,
"Cannot compute summary statistics for band at index %d. Returning NULL", bandindex);
384 if (SPI_tuptable) SPI_freetuptable(tuptable);
385 SPI_cursor_close(portal);
388 if (NULL != rtn) pfree(rtn);
393 if (stats->
count > 0) {
398 if (SPI_tuptable) SPI_freetuptable(tuptable);
399 SPI_cursor_close(portal);
402 elog(ERROR,
"RASTER_summaryStatsCoverage: Cannot allocate memory for summary stats of coverage");
421 if (stats->
min < rtn->
min)
423 if (stats->
max > rtn->
max)
431 SPI_cursor_fetch(portal,
TRUE, 1);
434 if (SPI_tuptable) SPI_freetuptable(tuptable);
435 SPI_cursor_close(portal);
439 elog(ERROR,
"RASTER_summaryStatsCoverage: Cannot compute coverage summary stats");
453 if (get_call_result_type(fcinfo, NULL, &tupdesc) != TYPEFUNC_COMPOSITE) {
455 errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
457 "function returning record called in context " 458 "that cannot accept type record" 463 BlessTupleDesc(tupdesc);
467 values[0] = Int64GetDatum(rtn->
count);
468 if (rtn->
count > 0) {
469 values[1] = Float8GetDatum(rtn->
sum);
470 values[2] = Float8GetDatum(rtn->
mean);
471 values[3] = Float8GetDatum(rtn->
stddev);
472 values[4] = Float8GetDatum(rtn->
min);
473 values[5] = Float8GetDatum(rtn->
max);
484 tuple = heap_form_tuple(tupdesc, values, nulls);
487 result = HeapTupleGetDatum(tuple);
492 PG_RETURN_DATUM(result);
int rt_raster_get_num_bands(rt_raster raster)
raster
Be careful!! Zeros function's input parameter can be a (height x width) array, not (width x height): ...
void rt_band_destroy(rt_band band)
Destroy a raster band.
rt_band rt_raster_get_band(rt_raster raster, int bandNum)
Return Nth band, or NULL if unavailable.
void rt_raster_destroy(rt_raster raster)
Release memory associated to a raster.
rt_bandstats rt_band_get_summary_stats(rt_band band, int exclude_nodata_value, double sample, int inc_vals, uint64_t *cK, double *cM, double *cQ)
Compute summary statistics for a band.
struct rt_bandstats_t * rt_bandstats
rt_raster rt_raster_deserialize(void *serialized, int header_only)
Return a raster from a serialized form.