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
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
7437 double newnodatavalue = 0.0;
7438 double newinitialvalue = 0.0;
7439 double newval = 0.0;
7444 FunctionCallInfoData cbdata;
7446 char * strFromText = NULL;
7452 if (PG_ARGISNULL(0)) {
7453 elog(WARNING,
"Raster is NULL. Returning NULL");
7459 pgraster = (
rt_pgraster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
7461 if (NULL == raster) {
7462 PG_FREE_IF_COPY(pgraster, 0);
7463 elog(ERROR,
"RASTER_mapAlgebraFct: Could not deserialize raster");
7471 if (PG_ARGISNULL(1))
7474 nband = PG_GETARG_INT32(1);
7490 if ( NULL == newrast ) {
7493 PG_FREE_IF_COPY(pgraster, 0);
7495 elog(ERROR,
"RASTER_mapAlgebraFct: Could not create a new raster");
7520 elog(NOTICE,
"Raster is empty. Returning an empty raster");
7522 PG_FREE_IF_COPY(pgraster, 0);
7526 if (NULL == pgrtn) {
7527 elog(ERROR,
"RASTER_mapAlgebraFct: Could not serialize raster");
7531 SET_VARSIZE(pgrtn, pgrtn->
size);
7532 PG_RETURN_POINTER(pgrtn);
7542 elog(NOTICE,
"Raster does not have the required band. Returning a raster "
7545 PG_FREE_IF_COPY(pgraster, 0);
7549 if (NULL == pgrtn) {
7550 elog(ERROR,
"RASTER_mapAlgebraFct: Could not serialize raster");
7554 SET_VARSIZE(pgrtn, pgrtn->
size);
7555 PG_RETURN_POINTER(pgrtn);
7560 if ( NULL == band ) {
7561 elog(NOTICE,
"Could not get the required band. Returning a raster "
7564 PG_FREE_IF_COPY(pgraster, 0);
7568 if (NULL == pgrtn) {
7569 elog(ERROR,
"RASTER_mapAlgebraFct: Could not serialize raster");
7573 SET_VARSIZE(pgrtn, pgrtn->
size);
7574 PG_RETURN_POINTER(pgrtn);
7580 POSTGIS_RT_DEBUG(3,
"RASTER_mapAlgebraFct: Getting NODATA value for band...");
7597 newinitialvalue = newnodatavalue;
7604 if (PG_ARGISNULL(2)) {
7609 strFromText = text_to_cstring(PG_GETARG_TEXT_P(2));
7612 if (newpixeltype ==
PT_END)
7616 if (newpixeltype ==
PT_END) {
7619 PG_FREE_IF_COPY(pgraster, 0);
7622 elog(ERROR,
"RASTER_mapAlgebraFct: Invalid pixeltype");
7630 if (PG_ARGISNULL(3)) {
7633 PG_FREE_IF_COPY(pgraster, 0);
7636 elog(ERROR,
"RASTER_mapAlgebraFct: Required function is missing. Returning NULL");
7640 oid = PG_GETARG_OID(3);
7641 if (oid == InvalidOid) {
7644 PG_FREE_IF_COPY(pgraster, 0);
7647 elog(ERROR,
"RASTER_mapAlgebraFct: Got invalid function object id. Returning NULL");
7651 fmgr_info(oid, &cbinfo);
7654 if (cbinfo.fn_retset) {
7657 PG_FREE_IF_COPY(pgraster, 0);
7660 elog(ERROR,
"RASTER_mapAlgebraFct: Function provided must return double precision not resultset");
7664 else if (cbinfo.fn_nargs < 2 || cbinfo.fn_nargs > 3) {
7667 PG_FREE_IF_COPY(pgraster, 0);
7670 elog(ERROR,
"RASTER_mapAlgebraFct: Function does not have two or three input parameters");
7674 if (cbinfo.fn_nargs == 2)
7679 if (func_volatile(oid) ==
'v') {
7680 elog(NOTICE,
"Function provided is VOLATILE. Unless required and for best performance, function should be IMMUTABLE or STABLE");
7684 #if POSTGIS_PGSQL_VERSION <= 90
7685 InitFunctionCallInfoData(cbdata, &cbinfo, 2, InvalidOid, NULL);
7687 InitFunctionCallInfoData(cbdata, &cbinfo, 2, InvalidOid, NULL, NULL);
7689 memset(cbdata.argnull,
FALSE,
sizeof(
bool) * cbinfo.fn_nargs);
7692 if (PG_ARGISNULL(4)) {
7693 if (cbinfo.fn_strict) {
7696 PG_FREE_IF_COPY(pgraster, 0);
7699 elog(ERROR,
"RASTER_mapAlgebraFct: Strict callback functions cannot have null parameters");
7703 cbdata.arg[k] = (Datum)NULL;
7704 cbdata.argnull[k] =
TRUE;
7707 cbdata.arg[k] = PG_GETARG_DATUM(4);
7717 POSTGIS_RT_DEBUG(3,
"RASTER_mapAlgebraFct: Band is a nodata band, returning "
7718 "a raster filled with nodata");
7721 newinitialvalue,
TRUE, newnodatavalue, 0);
7724 PG_FREE_IF_COPY(pgraster, 0);
7729 if (NULL == pgrtn) {
7730 elog(ERROR,
"RASTER_mapAlgebraFct: Could not serialize raster");
7734 SET_VARSIZE(pgrtn, pgrtn->
size);
7735 PG_RETURN_POINTER(pgrtn);
7744 newinitialvalue,
TRUE, newnodatavalue, 0);
7748 if ( NULL == newband ) {
7749 elog(NOTICE,
"Could not modify band for new raster. Returning new "
7750 "raster with the original band");
7753 PG_FREE_IF_COPY(pgraster, 0);
7758 if (NULL == pgrtn) {
7759 elog(ERROR,
"RASTER_mapAlgebraFct: Could not serialize raster");
7763 SET_VARSIZE(pgrtn, pgrtn->
size);
7764 PG_RETURN_POINTER(pgrtn);
7770 for (x = 0; x <
width; x++) {
7771 for(y = 0; y <
height; y++) {
7779 if (
FLT_EQ(r, newnodatavalue)) {
7780 if (cbinfo.fn_strict) {
7781 POSTGIS_RT_DEBUG(3,
"RASTER_mapAlgebraFct: Strict callbacks cannot accept NULL arguments, skipping NODATA cell.");
7784 cbdata.argnull[0] =
TRUE;
7785 cbdata.arg[0] = (Datum)NULL;
7788 cbdata.argnull[0] =
FALSE;
7789 cbdata.arg[0] = Float8GetDatum(r);
7793 if (cbinfo.fn_nargs == 3) {
7797 d[0] = Int32GetDatum(x+1);
7798 d[1] = Int32GetDatum(y+1);
7800 a = construct_array(d, 2, INT4OID,
sizeof(int32),
true,
'i');
7802 cbdata.argnull[1] =
FALSE;
7803 cbdata.arg[1] = PointerGetDatum(a);
7809 tmpnewval = FunctionCallInvoke(&cbdata);
7811 if (cbdata.isnull) {
7812 newval = newnodatavalue;
7815 newval = DatumGetFloat8(tmpnewval);
7829 POSTGIS_RT_DEBUG(3,
"RASTER_mapAlgebraFct: raster modified, serializing it.");
7833 PG_FREE_IF_COPY(pgraster, 0);
7844 SET_VARSIZE(pgrtn, pgrtn->
size);
7845 PG_RETURN_POINTER(pgrtn);
void * rt_raster_serialize(rt_raster raster)
Return this raster in serialized form.
double rt_raster_get_y_offset(rt_raster raster)
Get raster y offset, in projection units.
void rt_raster_destroy(rt_raster raster)
Release memory associated to a raster.
const char * rt_pixtype_name(rt_pixtype pixtype)
rt_pixtype rt_band_get_pixtype(rt_band band)
Return pixeltype of this band.
double rt_raster_get_x_skew(rt_raster raster)
Get skew about the X axis.
int rt_raster_has_band(rt_raster raster, int nband)
Return TRUE if the raster has a band of this number.
double rt_raster_get_y_skew(rt_raster raster)
Get skew about the Y axis.
double rt_raster_get_x_offset(rt_raster raster)
Get raster x offset, in projection units.
tuple raster
Be careful!! Zeros function's input parameter can be a (height x width) array, not (width x height): ...
void rt_raster_set_srid(rt_raster raster, int32_t srid)
Set raster's SRID.
int32_t rt_raster_get_srid(rt_raster raster)
Get raster's SRID.
int rt_band_get_isnodata_flag(rt_band band)
Get isnodata flag value.
void rt_raster_set_skews(rt_raster raster, double skewX, double skewY)
Set skews about the X and Y axis.
void rt_raster_set_scale(rt_raster raster, double scaleX, double scaleY)
Set scale in projection units.
#define POSTGIS_RT_DEBUG(level, msg)
double rt_band_get_min_value(rt_band band)
Returns the minimal possible value for the band according to the pixel type.
rt_errorstate rt_band_get_nodata(rt_band band, double *nodata)
Get NODATA value.
rt_errorstate rt_band_get_pixel(rt_band band, int x, int y, double *value, int *nodata)
Get pixel value.
double rt_raster_get_x_scale(rt_raster raster)
Get scale X in projection units.
uint16_t rt_raster_get_height(rt_raster raster)
rt_band rt_raster_get_band(rt_raster raster, int n)
Return Nth band, or NULL if unavailable.
#define POSTGIS_RT_DEBUGF(level, msg,...)
int rt_raster_is_empty(rt_raster raster)
Return TRUE if the raster is empty.
double rt_raster_get_y_scale(rt_raster raster)
Get scale Y in projection units.
rt_raster rt_raster_deserialize(void *serialized, int header_only)
Return a raster from a serialized form.
rt_pixtype rt_pixtype_index_from_name(const char *pixname)
rt_raster rt_raster_new(uint32_t width, uint32_t height)
Construct a raster with given dimensions.
int rt_band_get_hasnodata_flag(rt_band band)
Get hasnodata flag value.
void rt_raster_set_offsets(rt_raster raster, double x, double y)
Set insertion points in projection units.
uint16_t rt_raster_get_width(rt_raster raster)
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.
rt_errorstate rt_band_set_pixel(rt_band band, int x, int y, double val, int *converted)
Set single pixel's value.