PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ RASTER_setBandNoDataValue()

Datum RASTER_setBandNoDataValue ( PG_FUNCTION_ARGS  )

Definition at line 611 of file rtpg_band_properties.c.

References ovdump::band, FALSE, PG_FUNCTION_INFO_V1(), POSTGIS_RT_DEBUGF, rtrowdump::raster, RASTER_setBandIsNoData(), rt_band_check_is_nodata(), rt_band_set_hasnodata_flag(), rt_band_set_nodata(), rt_raster_deserialize(), rt_raster_destroy(), rt_raster_get_band(), rt_raster_serialize(), rt_raster_serialized_t::size, and TRUE.

Referenced by RASTER_bandmetadata().

612 {
613  rt_pgraster *pgraster = NULL;
614  rt_pgraster *pgrtn = NULL;
615  rt_raster raster = NULL;
616  rt_band band = NULL;
617  double nodata;
618  int32_t bandindex;
619  bool forcechecking = FALSE;
620  bool skipset = FALSE;
621 
622  /* Deserialize raster */
623  if (PG_ARGISNULL(0))
624  PG_RETURN_NULL();
625  pgraster = (rt_pgraster *) PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
626 
627  /* Check index is not NULL or smaller than 1 */
628  if (PG_ARGISNULL(1))
629  bandindex = -1;
630  else
631  bandindex = PG_GETARG_INT32(1);
632  if (bandindex < 1) {
633  elog(NOTICE, "Invalid band index (must use 1-based). Nodata value not set. Returning original raster");
634  skipset = TRUE;
635  }
636 
637  raster = rt_raster_deserialize(pgraster, FALSE);
638  if (!raster) {
639  PG_FREE_IF_COPY(pgraster, 0);
640  elog(ERROR, "RASTER_setBandNoDataValue: Could not deserialize raster");
641  PG_RETURN_NULL();
642  }
643 
644  if (!skipset) {
645  /* Fetch requested band */
646  band = rt_raster_get_band(raster, bandindex - 1);
647  if (!band) {
648  elog(NOTICE, "Could not find raster band of index %d when setting pixel value. Nodata value not set. Returning original raster", bandindex);
649  }
650  else {
651  if (!PG_ARGISNULL(3))
652  forcechecking = PG_GETARG_BOOL(3);
653 
654  if (PG_ARGISNULL(2)) {
655  /* Set the hasnodata flag to FALSE */
657  POSTGIS_RT_DEBUGF(3, "Raster band %d does not have a nodata value", bandindex);
658  }
659  else {
660  /* Get the nodata value */
661  nodata = PG_GETARG_FLOAT8(2);
662 
663  /* Set the band's nodata value */
664  rt_band_set_nodata(band, nodata, NULL);
665 
666  /* Recheck all pixels if requested */
667  if (forcechecking)
669  }
670  }
671  }
672 
673  pgrtn = rt_raster_serialize(raster);
674  rt_raster_destroy(raster);
675  PG_FREE_IF_COPY(pgraster, 0);
676  if (!pgrtn)
677  PG_RETURN_NULL();
678 
679  SET_VARSIZE(pgrtn, pgrtn->size);
680  PG_RETURN_POINTER(pgrtn);
681 }
void * rt_raster_serialize(rt_raster raster)
Return this raster in serialized form.
Definition: rt_serialize.c:521
raster
Be careful!! Zeros function&#39;s input parameter can be a (height x width) array, not (width x height): ...
Definition: rtrowdump.py:121
band
Definition: ovdump.py:57
rt_errorstate rt_band_set_nodata(rt_band band, double val, int *converted)
Set nodata value.
Definition: rt_band.c:600
#define POSTGIS_RT_DEBUGF(level, msg,...)
Definition: rtpostgis.h:65
rt_band rt_raster_get_band(rt_raster raster, int bandNum)
Return Nth band, or NULL if unavailable.
Definition: rt_raster.c:381
int rt_band_check_is_nodata(rt_band band)
Returns TRUE if the band is only nodata values.
Definition: rt_band.c:1619
void rt_raster_destroy(rt_raster raster)
Release memory associated to a raster.
Definition: rt_raster.c:82
void rt_band_set_hasnodata_flag(rt_band band, int flag)
Set hasnodata flag value.
Definition: rt_band.c:548
#define FALSE
Definition: dbfopen.c:168
Struct definitions.
Definition: librtcore.h:2201
#define TRUE
Definition: dbfopen.c:169
rt_raster rt_raster_deserialize(void *serialized, int header_only)
Return a raster from a serialized form.
Definition: rt_serialize.c:717
Here is the call graph for this function:
Here is the caller graph for this function: