Changes between Version 53 and Version 54 of WKTRaster/SpecificationWorking03


Ignore:
Timestamp:
Apr 6, 2011, 10:42:48 AM (13 years ago)
Author:
Bborie Park
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationWorking03

    v53 v54  
    197197ST_AsGDALRaster(rast raster, format text, options text[], srs text) -> bytea
    198198
    199   This is the most generic and GDAL-specific method to convert a raster to a GDAL raster.  Reference information for the format and options arguments of a particular format are specified at: http://gdal.org/formats_list.html.  The arguments specified are:
     199  This is the most generic and GDAL-specific method to convert a raster to a GDAL raster.  All other version of ST_AsGDALRaster and other format specific functions (ST_AsJPEG, ST_AsTIFF and ST_AsPNG) are all wrappers around this function.  Reference information for the format and options arguments of a particular format are specified at: http://gdal.org/formats_list.html.  The arguments specified are:
    200200
    201201  format: the GDAL format code.  e.g. GTiff, JPEG, PNG
     
    229229ST_AsGDALRaster(rast, 'JPEG')
    230230}}}
    231 
    232 ST_AsGDALRaster and other format specific functions (ST_AsJPEG, ST_AsTIFF and ST_AsPNG) are all wrappers around the function
    233 
    234 _ST_AsGDALRaster(rast raster, format text, options text[], srs text)
    235231
    236232----