Changes between Version 216 and Version 217 of WKTRaster

Show
Ignore:
Timestamp:
07/24/12 09:34:28 (10 months ago)
Author:
pracine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster

    v216 v217  
    163163 * each raster tile has a pixel size, a width and a height, a variable number of band, a pixel type per band and a nodata value per band. Everything essential to do base raster GIS operations.  
    164164 
    165 '''...is an extension of PostGIS to be installed separately''' 
    166  * merge with PostGIS might occur in the future...  
     165'''...is fully integrated into PostGIS...''' 
     166 * since PostGIS version 2.0...  
    167167 
    168168'''...has an import/export mechanism similar to shp2pgsql''' 
    169  * raster2pgsql and pgsql2raster utilities allowing import/export of a single raster or a batch of raster into a tiled coverage.  
     169 * raster2pgsql allows import of a single raster or a batch of raster into a table representing a tiled coverage. 
     170 * a future pgsql2raster should allow export of raster to filesystem rasters. 
     171 * a read GDAL driver allow export of rasters from the DB to the filesystem. 
    170172 
    171173'''...allows easy conversion from/to geometry/raster...''' 
    172  * ST_DumpToPolygons(raster) -> geometry set 
    173  * ST_AsRaster(geometry, pixelsize) -> raster  
     174 * ST_DumpAsPolygons(raster) -> geometry-value set 
     175 * ST_AsRaster(geometry, pixelsize) -> raster 
    174176 
    175177'''...implements base GIS raster operations available in most GIS...''' 
    176178 * ST_Resample(raster, pixelsize, method) -> raster 
    177  * ST_Clip(raster|geometry,geometry) -> same type as first argument 
    178  * ST_Reclass(raster|geometry,string) -> same type as first argument 
    179  * ST_MapAlgebra(raster|geometry, raster), mathematical expression, "raster"|"geometry") -> raster/geometry 
     179 * ST_Clip(raster, geometry) -> raster 
     180 * ST_Reclass(raster, string) -> raster 
     181 * ST_MapAlgebra(raster, raster, mathematical expression) -> raster 
    180182 * etc...)  
    181183 
    182 '''...introduces raster/geometry seamless geometry constructors...''' 
     184'''...introduces raster/geometry seamless spatial operation...''' 
    183185 * so you don't have to bother whether the layers are in raster or vector form when using analysis functions. 
    184  * ST_Intersection(raster|geometry, raster|geometry, "raster"|"geometry") -> raster/geometry 
    185  * ST_Union(raster|geometry, raster|geometry, "raster"|"geometry") -> raster/geometry 
    186  * ST_Accum(raster set|geometry set, "raster"|"geometry") -> raster/geometry 
    187  * ST_Transform(raster|geometry, SRID) -> same type as input 
     186 * ST_Intersection(raster|geometry, raster|geometry) -> raster/geometry-value set 
     187 * ST_Union(raster, raster) -> raster 
     188 * ST_Transform(raster, SRID) -> raster 
    188189 * etc...  
    189190