PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ rt_raster_has_band()

int rt_raster_has_band ( rt_raster  raster,
int  nband 
)

Return TRUE if the raster has a band of this number.

Parameters
raster: the raster to get info from
nband: the band number. 0-based
Returns
TRUE if the raster has a band of this number, FALSE otherwise

Definition at line 1351 of file rt_raster.c.

References rt_raster_t::numBands.

Referenced by _rti_iterator_arg_populate(), RASTER_clip(), RASTER_colorMap(), RASTER_convex_hull(), RASTER_dumpValues(), RASTER_hasNoBand(), RASTER_mapAlgebra2(), RASTER_mapAlgebraExpr(), RASTER_mapAlgebraFct(), RASTER_mapAlgebraFctNgb(), RASTER_tile(), RASTER_union_transfn(), rt_raster_colormap(), rtpg_nmapalgebra_rastbandarg_process(), test_gdal_polygonize(), test_raster_from_band(), and test_raster_metadata().

1351  {
1352  return !(NULL == raster || nband >= raster->numBands || nband < 0);
1353 }
uint16_t numBands
Definition: librtcore.h:2241
nband
Definition: pixval.py:52
Here is the caller graph for this function: