Retrieves the file path of an out-of-database (out-db) raster, providing a link to the external raster file it references. Primarily used with out-db rasters to access their storage location.
Useful in scenarios involving out-db rasters, where only the raster path and geo-referencing metadata are stored in the database.
Signatures
RS_BandPath(raster: Raster)
Parameters
Return type
The file path of the out-db raster.
Example
SELECT raster_outdb, RS_BandPath(raster_outdb) AS band_path FROM Table
+------------------------------------------------------------+----------------------+
|raster_outdb |band_path |
+------------------------------------------------------------+----------------------+
|OutDbGridCoverage2D["", GeneralEnvelope[(-1.3095817809482...|/Users/.../test1.tiff |
|OutDbGridCoverage2D["", GeneralEnvelope[(-1.3095817809482...|/Users/.../test2.tiff |
|OutDbGridCoverage2D["", GeneralEnvelope[(382240.0, 615266...|/Users/.../test3.tiff |
|OutDbGridCoverage2D["", GeneralEnvelope[(-180.0, -90.0), ...|/Users/.../test4.tiff |
|OutDbGridCoverage2D["", GeneralEnvelope[(223586.236519645...|/Users/.../test5.tiff |
+------------------------------------------------------------+----------------------+