Changes between Version 18 and Version 19 of WKTRaster/SpecificationFinal01


Ignore:
Timestamp:
May 18, 2010, 10:34:25 AM (14 years ago)
Author:
pracine
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationFinal01

    v18 v19  
    118118Returns 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.
    119119
    120 It should be used like this: "SELECT (md).* FROM (SELECT ST_Metadata(rast) As md FROM f9916222) foo"
     120It should be used like this: "SELECT (md).* FROM (SELECT ST_Metadata(rast) AS md FROM myrastertable) foo"
    121121
    122122'''ST_BandMetadata(raster, integer) -> record'''[[BR]]
    123123Returns 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.
    124124
    125 It should be used like this: "SELECT (md).* FROM (SELECT ST_BandMetadata(rast) As md FROM f9916222) foo"
     125It should be used like this: "SELECT (md).* FROM (SELECT ST_BandMetadata(rast) AS md FROM myrastertable) foo"
    126126----
    127127== '''RASTER_COLUMNS Metadata Table''' ==