PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ rt_band_get_isnodata_flag()

int rt_band_get_isnodata_flag ( rt_band  band)

Get isnodata flag value.

Parameters
band: the band on which to check the isnodata flag
Returns
the hasnodata flag.

Definition at line 714 of file rt_band.c.

714  {
715  assert(NULL != band);
716 
717  if (band->hasnodata)
718  return band->isnodata ? 1 : 0;
719  else
720  return 0;
721 }
band
Definition: ovdump.py:57

References ovdump::band.

Referenced by _rti_iterator_arg_populate(), RASTER_bandIsNoData(), RASTER_clip(), RASTER_dumpAsPolygons(), RASTER_dumpValues(), RASTER_mapAlgebraExpr(), RASTER_mapAlgebraFct(), RASTER_mapAlgebraFctNgb(), RASTER_setPixelValuesGeomval(), RASTER_tile(), rt_band_get_quantiles_stream(), rt_band_get_summary_stats(), rt_band_get_value_count(), rt_raster_gdal_polygonize(), rt_raster_get_perimeter(), rt_raster_intersects(), rt_raster_surface(), and test_band_metadata().

Here is the caller graph for this function: