| 117 | '''ST_Metadata(raster) -> record'''[[BR]] |
| 118 | Returns all the metadata associated with a raster (upper left x, upper left y, width, height, pixelsize x, pixelsize y, skew x, skew y, srid, numbands in this order). Does not include any band metadata. If you want band metadata, add ST_BandMetadata(raster, integer) to your query. |
| 119 | |
| 120 | '''ST_BandMetadata(raster, integer) -> record'''[[BR]] |
| 121 | Returns all the metadata associated with a raster band (pixeltype, has nodata value, nodata value, is stored out-db, path, in this order). Does not include embedding raster metadata. If you want embedding raster metadata, add ST_Metadata(raster) to your query. |
| 122 | |
| 123 | |