Changes between Version 53 and Version 54 of WKTRaster/SpecificationWorking03
- Timestamp:
- 04/06/11 10:42:48 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WKTRaster/SpecificationWorking03
v53 v54 197 197 ST_AsGDALRaster(rast raster, format text, options text[], srs text) -> bytea 198 198 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: 200 200 201 201 format: the GDAL format code. e.g. GTiff, JPEG, PNG … … 229 229 ST_AsGDALRaster(rast, 'JPEG') 230 230 }}} 231 232 ST_AsGDALRaster and other format specific functions (ST_AsJPEG, ST_AsTIFF and ST_AsPNG) are all wrappers around the function233 234 _ST_AsGDALRaster(rast raster, format text, options text[], srs text)235 231 236 232 ----