PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ RASTER_mapAlgebraFct()

Datum RASTER_mapAlgebraFct ( PG_FUNCTION_ARGS  )

Create a new empty raster with having the same georeference as the provided raster

If this new raster is empty (width = 0 OR height = 0) then there is nothing to compute and we return it right now

Check if the raster has the required band. Otherwise, return a raster without band

We set the initial value of the future band to nodata value. If nodata value is null, then the raster will be initialized to rt_band_get_min_value but all the values should be recomputed anyway

Set the new pixeltype

Optimization: If the raster is only filled with nodata values return right now a raster filled with the nodatavalueexpr TODO: Call rt_band_check_isnodata instead?

Create the raster receiving all the computed values. Initialize it to the new initial value

We compute a value only for the withdata value pixel since the nodata value has already been set by the first optimization

Definition at line 5076 of file rtpg_mapalgebra.c.

5077 {
5078  rt_pgraster *pgraster = NULL;
5079  rt_pgraster *pgrtn = NULL;
5080  rt_raster raster = NULL;
5081  rt_raster newrast = NULL;
5082  rt_band band = NULL;
5083  rt_band newband = NULL;
5084  int x, y, nband, width, height;
5085  double r;
5086  double newnodatavalue = 0.0;
5087  double newinitialvalue = 0.0;
5088  double newval = 0.0;
5089  rt_pixtype newpixeltype;
5090  int ret = -1;
5091  Oid oid;
5092  FmgrInfo cbinfo;
5093  LOCAL_FCINFO(cbdata, FUNC_MAX_ARGS); /* Could be optimized */
5094 
5095  Datum tmpnewval;
5096  char * strFromText = NULL;
5097  int k = 0;
5098 
5099  POSTGIS_RT_DEBUG(2, "RASTER_mapAlgebraFct: STARTING...");
5100 
5101  /* Check raster */
5102  if (PG_ARGISNULL(0)) {
5103  elog(WARNING, "Raster is NULL. Returning NULL");
5104  PG_RETURN_NULL();
5105  }
5106 
5107 
5108  /* Deserialize raster */
5109  pgraster = (rt_pgraster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
5110  raster = rt_raster_deserialize(pgraster, FALSE);
5111  if (NULL == raster) {
5112  PG_FREE_IF_COPY(pgraster, 0);
5113  elog(ERROR, "RASTER_mapAlgebraFct: Could not deserialize raster");
5114  PG_RETURN_NULL();
5115  }
5116 
5117  POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFct: Getting arguments...");
5118 
5119  /* Get the rest of the arguments */
5120 
5121  if (PG_ARGISNULL(1))
5122  nband = 1;
5123  else
5124  nband = PG_GETARG_INT32(1);
5125 
5126  if (nband < 1)
5127  nband = 1;
5128 
5129  POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFct: Creating new empty raster...");
5130 
5135  width = rt_raster_get_width(raster);
5136  height = rt_raster_get_height(raster);
5137 
5138  newrast = rt_raster_new(width, height);
5139 
5140  if ( NULL == newrast ) {
5141 
5143  PG_FREE_IF_COPY(pgraster, 0);
5144 
5145  elog(ERROR, "RASTER_mapAlgebraFct: Could not create a new raster");
5146  PG_RETURN_NULL();
5147  }
5148 
5149  rt_raster_set_scale(newrast,
5152 
5153  rt_raster_set_offsets(newrast,
5156 
5157  rt_raster_set_skews(newrast,
5160 
5162 
5163 
5168  if (rt_raster_is_empty(newrast))
5169  {
5170  elog(NOTICE, "Raster is empty. Returning an empty raster");
5172  PG_FREE_IF_COPY(pgraster, 0);
5173 
5174  pgrtn = rt_raster_serialize(newrast);
5175  rt_raster_destroy(newrast);
5176  if (NULL == pgrtn) {
5177  elog(ERROR, "RASTER_mapAlgebraFct: Could not serialize raster");
5178  PG_RETURN_NULL();
5179  }
5180 
5181  SET_VARSIZE(pgrtn, pgrtn->size);
5182  PG_RETURN_POINTER(pgrtn);
5183  }
5184 
5185  POSTGIS_RT_DEBUGF(3, "RASTER_mapAlgebraFct: Getting raster band %d...", nband);
5186 
5191  if (!rt_raster_has_band(raster, nband - 1)) {
5192  elog(NOTICE, "Raster does not have the required band. Returning a raster "
5193  "without a band");
5195  PG_FREE_IF_COPY(pgraster, 0);
5196 
5197  pgrtn = rt_raster_serialize(newrast);
5198  rt_raster_destroy(newrast);
5199  if (NULL == pgrtn) {
5200  elog(ERROR, "RASTER_mapAlgebraFct: Could not serialize raster");
5201  PG_RETURN_NULL();
5202  }
5203 
5204  SET_VARSIZE(pgrtn, pgrtn->size);
5205  PG_RETURN_POINTER(pgrtn);
5206  }
5207 
5208  /* Get the raster band */
5210  if ( NULL == band ) {
5211  elog(NOTICE, "Could not get the required band. Returning a raster "
5212  "without a band");
5214  PG_FREE_IF_COPY(pgraster, 0);
5215 
5216  pgrtn = rt_raster_serialize(newrast);
5217  rt_raster_destroy(newrast);
5218  if (NULL == pgrtn) {
5219  elog(ERROR, "RASTER_mapAlgebraFct: Could not serialize raster");
5220  PG_RETURN_NULL();
5221  }
5222 
5223  SET_VARSIZE(pgrtn, pgrtn->size);
5224  PG_RETURN_POINTER(pgrtn);
5225  }
5226 
5227  /*
5228  * Get NODATA value
5229  */
5230  POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFct: Getting NODATA value for band...");
5231 
5233  rt_band_get_nodata(band, &newnodatavalue);
5234  }
5235 
5236  else {
5237  newnodatavalue = rt_band_get_min_value(band);
5238  }
5239 
5240  POSTGIS_RT_DEBUGF(3, "RASTER_mapAlgebraFct: NODATA value for band: %f",
5241  newnodatavalue);
5247  newinitialvalue = newnodatavalue;
5248 
5252  POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFct: Setting pixeltype...");
5253 
5254  if (PG_ARGISNULL(2)) {
5255  newpixeltype = rt_band_get_pixtype(band);
5256  }
5257 
5258  else {
5259  strFromText = text_to_cstring(PG_GETARG_TEXT_P(2));
5260  newpixeltype = rt_pixtype_index_from_name(strFromText);
5261  pfree(strFromText);
5262  if (newpixeltype == PT_END)
5263  newpixeltype = rt_band_get_pixtype(band);
5264  }
5265 
5266  if (newpixeltype == PT_END) {
5267 
5269  PG_FREE_IF_COPY(pgraster, 0);
5270  rt_raster_destroy(newrast);
5271 
5272  elog(ERROR, "RASTER_mapAlgebraFct: Invalid pixeltype");
5273  PG_RETURN_NULL();
5274  }
5275 
5276  POSTGIS_RT_DEBUGF(3, "RASTER_mapAlgebraFct: Pixeltype set to %s",
5277  rt_pixtype_name(newpixeltype));
5278 
5279  /* Get the name of the callback user function for raster values */
5280  if (PG_ARGISNULL(3)) {
5281 
5283  PG_FREE_IF_COPY(pgraster, 0);
5284  rt_raster_destroy(newrast);
5285 
5286  elog(ERROR, "RASTER_mapAlgebraFct: Required function is missing. Returning NULL");
5287  PG_RETURN_NULL();
5288  }
5289 
5290  oid = PG_GETARG_OID(3);
5291  if (oid == InvalidOid) {
5292 
5294  PG_FREE_IF_COPY(pgraster, 0);
5295  rt_raster_destroy(newrast);
5296 
5297  elog(ERROR, "RASTER_mapAlgebraFct: Got invalid function object id. Returning NULL");
5298  PG_RETURN_NULL();
5299  }
5300 
5301  fmgr_info(oid, &cbinfo);
5302 
5303  /* function cannot return set */
5304  if (cbinfo.fn_retset) {
5305 
5307  PG_FREE_IF_COPY(pgraster, 0);
5308  rt_raster_destroy(newrast);
5309 
5310  elog(ERROR, "RASTER_mapAlgebraFct: Function provided must return double precision not resultset");
5311  PG_RETURN_NULL();
5312  }
5313  /* function should have correct # of args */
5314  else if (cbinfo.fn_nargs < 2 || cbinfo.fn_nargs > 3) {
5315 
5317  PG_FREE_IF_COPY(pgraster, 0);
5318  rt_raster_destroy(newrast);
5319 
5320  elog(ERROR, "RASTER_mapAlgebraFct: Function does not have two or three input parameters");
5321  PG_RETURN_NULL();
5322  }
5323 
5324  if (cbinfo.fn_nargs == 2)
5325  k = 1;
5326  else
5327  k = 2;
5328 
5329  if (func_volatile(oid) == 'v') {
5330  elog(NOTICE, "Function provided is VOLATILE. Unless required and for best performance, function should be IMMUTABLE or STABLE");
5331  }
5332 
5333  /* prep function call data */
5334  InitFunctionCallInfoData(*cbdata, &cbinfo, 2, InvalidOid, NULL, NULL);
5335 
5336  cbdata->args[0].isnull = FALSE;
5337  cbdata->args[1].isnull = FALSE;
5338  cbdata->args[2].isnull = FALSE;
5339 
5340  /* check that the function isn't strict if the args are null. */
5341  if (PG_ARGISNULL(4)) {
5342  if (cbinfo.fn_strict) {
5343 
5345  PG_FREE_IF_COPY(pgraster, 0);
5346  rt_raster_destroy(newrast);
5347 
5348  elog(ERROR, "RASTER_mapAlgebraFct: Strict callback functions cannot have null parameters");
5349  PG_RETURN_NULL();
5350  }
5351 
5352  cbdata->args[k].value = (Datum)NULL;
5353  cbdata->args[k].isnull = TRUE;
5354  }
5355  else {
5356  cbdata->args[k].value = PG_GETARG_DATUM(4);
5357  }
5358 
5365 
5366  POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFct: Band is a nodata band, returning "
5367  "a raster filled with nodata");
5368 
5369  ret = rt_raster_generate_new_band(newrast, newpixeltype,
5370  newinitialvalue, TRUE, newnodatavalue, 0);
5371 
5373  PG_FREE_IF_COPY(pgraster, 0);
5374 
5375  /* Serialize created raster */
5376  pgrtn = rt_raster_serialize(newrast);
5377  rt_raster_destroy(newrast);
5378  if (NULL == pgrtn) {
5379  elog(ERROR, "RASTER_mapAlgebraFct: Could not serialize raster");
5380  PG_RETURN_NULL();
5381  }
5382 
5383  SET_VARSIZE(pgrtn, pgrtn->size);
5384  PG_RETURN_POINTER(pgrtn);
5385  }
5386 
5387 
5392  ret = rt_raster_generate_new_band(newrast, newpixeltype,
5393  newinitialvalue, TRUE, newnodatavalue, 0);
5394 
5395  /* Get the new raster band */
5396  newband = rt_raster_get_band(newrast, 0);
5397  if ( NULL == newband ) {
5398  elog(NOTICE, "Could not modify band for new raster. Returning new "
5399  "raster with the original band");
5400 
5402  PG_FREE_IF_COPY(pgraster, 0);
5403 
5404  /* Serialize created raster */
5405  pgrtn = rt_raster_serialize(newrast);
5406  rt_raster_destroy(newrast);
5407  if (NULL == pgrtn) {
5408  elog(ERROR, "RASTER_mapAlgebraFct: Could not serialize raster");
5409  PG_RETURN_NULL();
5410  }
5411 
5412  SET_VARSIZE(pgrtn, pgrtn->size);
5413  PG_RETURN_POINTER(pgrtn);
5414  }
5415 
5416  POSTGIS_RT_DEBUGF(3, "RASTER_mapAlgebraFct: Main computing loop (%d x %d)",
5417  width, height);
5418 
5419  for (x = 0; x < width; x++) {
5420  for(y = 0; y < height; y++) {
5421  ret = rt_band_get_pixel(band, x, y, &r, NULL);
5422 
5427  if (ret == ES_NONE) {
5428  if (FLT_EQ(r, newnodatavalue)) {
5429  if (cbinfo.fn_strict) {
5430  POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFct: Strict callbacks cannot accept NULL arguments, skipping NODATA cell.");
5431  continue;
5432  }
5433  cbdata->args[0].isnull = TRUE;
5434  cbdata->args[0].value = (Datum)NULL;
5435  }
5436  else {
5437  cbdata->args[0].isnull = FALSE;
5438  cbdata->args[0].value = Float8GetDatum(r);
5439  }
5440 
5441  /* Add pixel positions if callback has proper # of args */
5442  if (cbinfo.fn_nargs == 3) {
5443  Datum d[2];
5444  ArrayType *a;
5445 
5446  d[0] = Int32GetDatum(x+1);
5447  d[1] = Int32GetDatum(y+1);
5448 
5449  a = construct_array(d, 2, INT4OID, sizeof(int32), true, 'i');
5450 
5451  cbdata->args[1].isnull = FALSE;
5452  cbdata->args[1].value = PointerGetDatum(a);
5453  }
5454 
5455  POSTGIS_RT_DEBUGF(3, "RASTER_mapAlgebraFct: (%dx%d), r = %f",
5456  x, y, r);
5457 
5458  tmpnewval = FunctionCallInvoke(cbdata);
5459 
5460  if (cbdata->isnull)
5461  {
5462  newval = newnodatavalue;
5463  }
5464  else {
5465  newval = DatumGetFloat8(tmpnewval);
5466  }
5467 
5468  POSTGIS_RT_DEBUGF(3, "RASTER_mapAlgebraFct: new value = %f",
5469  newval);
5470 
5471  rt_band_set_pixel(newband, x, y, newval, NULL);
5472  }
5473 
5474  }
5475  }
5476 
5477  /* The newrast band has been modified */
5478 
5479  POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFct: raster modified, serializing it.");
5480  /* Serialize created raster */
5481 
5483  PG_FREE_IF_COPY(pgraster, 0);
5484 
5485  pgrtn = rt_raster_serialize(newrast);
5486  rt_raster_destroy(newrast);
5487  if (NULL == pgrtn)
5488  PG_RETURN_NULL();
5489 
5490  POSTGIS_RT_DEBUG(3, "RASTER_mapAlgebraFct: raster serialized");
5491 
5492  POSTGIS_RT_DEBUG(4, "RASTER_mapAlgebraFct: returning raster");
5493 
5494  SET_VARSIZE(pgrtn, pgrtn->size);
5495  PG_RETURN_POINTER(pgrtn);
5496 }
char * r
Definition: cu_in_wkt.c:24
#define TRUE
Definition: dbfopen.c:73
#define FALSE
Definition: dbfopen.c:72
int32_t rt_raster_get_srid(rt_raster raster)
Get raster's SRID.
Definition: rt_raster.c:360
double rt_raster_get_x_skew(rt_raster raster)
Get skew about the X axis.
Definition: rt_raster.c:185
double rt_raster_get_x_offset(rt_raster raster)
Get raster x offset, in projection units.
Definition: rt_raster.c:217
int rt_raster_generate_new_band(rt_raster raster, rt_pixtype pixtype, double initialvalue, uint32_t hasnodata, double nodatavalue, int index)
Generate a new inline band and add it to a raster.
Definition: rt_raster.c:489
void rt_raster_set_scale(rt_raster raster, double scaleX, double scaleY)
Set scale in projection units.
Definition: rt_raster.c:141
int rt_band_get_hasnodata_flag(rt_band band)
Get hasnodata flag value.
Definition: rt_band.c:674
rt_pixtype rt_pixtype_index_from_name(const char *pixname)
Definition: rt_pixel.c:80
rt_errorstate rt_band_get_pixel(rt_band band, int x, int y, double *value, int *nodata)
Get pixel value.
Definition: rt_band.c:1376
void rt_raster_destroy(rt_raster raster)
Release memory associated to a raster.
Definition: rt_raster.c:86
rt_pixtype
Definition: librtcore.h:187
@ PT_END
Definition: librtcore.h:199
void rt_raster_set_skews(rt_raster raster, double skewX, double skewY)
Set skews about the X and Y axis.
Definition: rt_raster.c:172
int rt_band_get_isnodata_flag(rt_band band)
Get isnodata flag value.
Definition: rt_band.c:714
rt_raster rt_raster_new(uint32_t width, uint32_t height)
Construct a raster with given dimensions.
Definition: rt_raster.c:52
int rt_raster_has_band(rt_raster raster, int nband)
Return TRUE if the raster has a band of this number.
Definition: rt_raster.c:1375
void * rt_raster_serialize(rt_raster raster)
Return this raster in serialized form.
Definition: rt_serialize.c:521
#define FLT_EQ(x, y)
Definition: librtcore.h:2387
double rt_raster_get_x_scale(rt_raster raster)
Get scale X in projection units.
Definition: rt_raster.c:154
double rt_band_get_min_value(rt_band band)
Returns the minimal possible value for the band according to the pixel type.
Definition: rt_band.c:1902
rt_errorstate rt_band_set_pixel(rt_band band, int x, int y, double val, int *converted)
Set single pixel's value.
Definition: rt_band.c:974
@ ES_NONE
Definition: librtcore.h:182
uint16_t rt_raster_get_height(rt_raster raster)
Definition: rt_raster.c:133
void rt_raster_set_srid(rt_raster raster, int32_t srid)
Set raster's SRID.
Definition: rt_raster.c:367
rt_errorstate rt_band_get_nodata(rt_band band, double *nodata)
Get NODATA value.
Definition: rt_band.c:1887
rt_pixtype rt_band_get_pixtype(rt_band band)
Return pixeltype of this band.
Definition: rt_band.c:631
const char * rt_pixtype_name(rt_pixtype pixtype)
Definition: rt_pixel.c:110
uint16_t rt_raster_get_width(rt_raster raster)
Definition: rt_raster.c:125
double rt_raster_get_y_scale(rt_raster raster)
Get scale Y in projection units.
Definition: rt_raster.c:163
double rt_raster_get_y_skew(rt_raster raster)
Get skew about the Y axis.
Definition: rt_raster.c:194
void rt_raster_set_offsets(rt_raster raster, double x, double y)
Set insertion points in projection units.
Definition: rt_raster.c:203
rt_raster rt_raster_deserialize(void *serialized, int header_only)
Return a raster from a serialized form.
Definition: rt_serialize.c:725
double rt_raster_get_y_offset(rt_raster raster)
Get raster y offset, in projection units.
Definition: rt_raster.c:226
int rt_raster_is_empty(rt_raster raster)
Return TRUE if the raster is empty.
Definition: rt_raster.c:1362
rt_band rt_raster_get_band(rt_raster raster, int bandNum)
Return Nth band, or NULL if unavailable.
Definition: rt_raster.c:385
band
Definition: ovdump.py:58
nband
Definition: pixval.py:53
raster
Be careful!! Zeros function's input parameter can be a (height x width) array, not (width x height): ...
Definition: rtrowdump.py:121
#define POSTGIS_RT_DEBUG(level, msg)
Definition: rtpostgis.h:65
#define POSTGIS_RT_DEBUGF(level, msg,...)
Definition: rtpostgis.h:69
unsigned int int32
Definition: shpopen.c:54
Struct definitions.
Definition: librtcore.h:2403

References ovdump::band, ES_NONE, FALSE, FLT_EQ, pixval::nband, POSTGIS_RT_DEBUG, POSTGIS_RT_DEBUGF, PT_END, r, rtrowdump::raster, rt_band_get_hasnodata_flag(), rt_band_get_isnodata_flag(), rt_band_get_min_value(), rt_band_get_nodata(), rt_band_get_pixel(), rt_band_get_pixtype(), rt_band_set_pixel(), rt_pixtype_index_from_name(), rt_pixtype_name(), rt_raster_deserialize(), rt_raster_destroy(), rt_raster_generate_new_band(), rt_raster_get_band(), rt_raster_get_height(), rt_raster_get_srid(), rt_raster_get_width(), rt_raster_get_x_offset(), rt_raster_get_x_scale(), rt_raster_get_x_skew(), rt_raster_get_y_offset(), rt_raster_get_y_scale(), rt_raster_get_y_skew(), rt_raster_has_band(), rt_raster_is_empty(), rt_raster_new(), rt_raster_serialize(), rt_raster_set_offsets(), rt_raster_set_scale(), rt_raster_set_skews(), rt_raster_set_srid(), rt_raster_serialized_t::size, TRUE, pixval::x, and pixval::y.

Here is the call graph for this function: