Changes between Version 17 and Version 18 of WKTRaster/SpecificationFinal01


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

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationFinal01

    v17 v18  
    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
     120It should be used like this: "SELECT (md).* FROM (SELECT ST_Metadata(rast) As md FROM f9916222) foo"
     121
    120122'''ST_BandMetadata(raster, integer) -> record'''[[BR]]
    121123Returns 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.
    122124
    123 
     125It should be used like this: "SELECT (md).* FROM (SELECT ST_BandMetadata(rast) As md FROM f9916222) foo"
    124126----
    125127== '''RASTER_COLUMNS Metadata Table''' ==