PostGIS 3.6.2dev-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 514 of file rt_band.c.

514 {
515
516 assert(NULL != band);
517
518
519 if (!band->offline) {
520 RASTER_DEBUG(3, "rt_band_get_ext_path: Band is not offline");
521 return NULL;
522 }
523 return band->data.offline.path;
524}
#define RASTER_DEBUG(level, msg)
Definition librtcore.h:302

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: