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

◆ rt_band_get_ext_path()

const char * rt_band_get_ext_path ( rt_band  band)

Return band's external path (only valid when rt_band_is_offline returns non-zero).

Parameters
band: the band
Returns
string or NULL if band is not offline

Definition at line 522 of file rt_band.c.

522 {
523
524 assert(NULL != band);
525
526
527 if (!band->offline) {
528 RASTER_DEBUG(3, "rt_band_get_ext_path: Band is not offline");
529 return NULL;
530 }
531 return band->data.offline.path;
532}
#define RASTER_DEBUG(level, msg)
Definition librtcore.h:304

References RASTER_DEBUG.

Referenced by RASTER_bandmetadata(), RASTER_getBandPath(), RASTER_setBandPath(), RASTER_tile(), test_band_metadata(), test_band_new_offline_from_path(), and test_raster_wkb().

Here is the caller graph for this function: