Changes between Version 18 and Version 19 of WKTRaster/SpecificationFinal01
- Timestamp:
- 05/18/10 10:34:25 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WKTRaster/SpecificationFinal01
v18 v19 118 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 119 120 It should be used like this: "SELECT (md).* FROM (SELECT ST_Metadata(rast) A s md FROM f9916222) foo"120 It should be used like this: "SELECT (md).* FROM (SELECT ST_Metadata(rast) AS md FROM myrastertable) foo" 121 121 122 122 '''ST_BandMetadata(raster, integer) -> record'''[[BR]] 123 123 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. 124 124 125 It should be used like this: "SELECT (md).* FROM (SELECT ST_BandMetadata(rast) A s md FROM f9916222) foo"125 It should be used like this: "SELECT (md).* FROM (SELECT ST_BandMetadata(rast) AS md FROM myrastertable) foo" 126 126 ---- 127 127 == '''RASTER_COLUMNS Metadata Table''' ==