PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ rtpg_colormap_arg_init()

static rtpg_colormap_arg rtpg_colormap_arg_init ( )
static

Definition at line 4058 of file rtpg_mapalgebra.c.

4058  {
4059  rtpg_colormap_arg arg = NULL;
4060 
4061  arg = palloc(sizeof(struct rtpg_colormap_arg_t));
4062  if (arg == NULL) {
4063  elog(ERROR, "rtpg_colormap_arg: Could not allocate memory for function arguments");
4064  return NULL;
4065  }
4066 
4067  arg->raster = NULL;
4068  arg->nband = 1;
4069  arg->band = NULL;
4070  arg->bandstats = NULL;
4071 
4072  arg->colormap = palloc(sizeof(struct rt_colormap_t));
4073  if (arg->colormap == NULL) {
4074  elog(ERROR, "rtpg_colormap_arg: Could not allocate memory for function arguments");
4075  return NULL;
4076  }
4077  arg->colormap->nentry = 0;
4078  arg->colormap->entry = NULL;
4079  arg->colormap->ncolor = 4; /* assume RGBA */
4080  arg->colormap->method = CM_INTERPOLATE;
4081  arg->nodataentry = -1;
4082 
4083  arg->entry = NULL;
4084  arg->nentry = 0;
4085  arg->element = NULL;
4086  arg->nelement = 0;
4087 
4088  return arg;
4089 }
rt_colormap_entry entry
Definition: librtcore.h:2496
enum rt_colormap_t::@9 method
uint16_t nentry
Definition: librtcore.h:2495

References rtpg_colormap_arg_t::band, rtpg_colormap_arg_t::bandstats, rtpg_colormap_arg_t::colormap, rtpg_colormap_arg_t::element, rt_colormap_t::entry, rtpg_colormap_arg_t::entry, rt_colormap_t::method, rtpg_colormap_arg_t::nband, rt_colormap_t::ncolor, rtpg_colormap_arg_t::nelement, rt_colormap_t::nentry, rtpg_colormap_arg_t::nentry, rtpg_colormap_arg_t::nodataentry, and rtpg_colormap_arg_t::raster.

Referenced by RASTER_colorMap().

Here is the caller graph for this function: