PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ rt_band_get_data()

void* rt_band_get_data ( rt_band  band)

Get pointer to raster band data.

Parameters
band: the band who's data to get
Returns
pointer to band data or NULL if error

Definition at line 400 of file rt_band.c.

400  {
401  assert(NULL != band);
402 
403  if (band->offline) {
404  if (band->data.offline.mem != NULL)
405  return band->data.offline.mem;
406 
408  return NULL;
409  else
410  return band->data.offline.mem;
411  }
412  else
413  return band->data.mem;
414 }
@ ES_NONE
Definition: librtcore.h:180
band
Definition: ovdump.py:57
rt_errorstate rt_band_load_offline_data(rt_band band)
Load offline band's data.
Definition: rt_band.c:429

References ovdump::band, ES_NONE, and rt_band_load_offline_data().

Referenced by raster_destroy(), rt_band_get_pixel(), rt_band_get_pixel_line(), rt_band_get_quantiles_stream(), rt_band_get_value_count(), rt_band_set_pixel(), rt_band_set_pixel_line(), rt_raster_to_gdal_mem(), rt_raster_to_wkb(), and test_band_metadata().

Here is the call graph for this function:
Here is the caller graph for this function: