PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ 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 559 of file rt_band.c.

559 {
560 assert(NULL != band);
561
562 if (band->offline) {
563 if (band->data.offline.mem != NULL)
564 return band->data.offline.mem;
565
567 return NULL;
568 else
569 return band->data.offline.mem;
570 }
571 else
572 return band->data.mem;
573}
@ ES_NONE
Definition librtcore.h:182
rt_errorstate rt_band_load_offline_data(rt_band band)
Load offline band's data.
Definition rt_band.c:588

References 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: