Changes between Version 216 and Version 217 of WKTRaster
- Timestamp:
- 07/24/12 09:34:28 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WKTRaster
v216 v217 163 163 * 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. 164 164 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... 167 167 168 168 '''...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. 170 172 171 173 '''...allows easy conversion from/to geometry/raster...''' 172 * ST_Dump ToPolygons(raster) -> geometryset173 * ST_AsRaster(geometry, pixelsize) -> raster 174 * ST_DumpAsPolygons(raster) -> geometry-value set 175 * ST_AsRaster(geometry, pixelsize) -> raster 174 176 175 177 '''...implements base GIS raster operations available in most GIS...''' 176 178 * ST_Resample(raster, pixelsize, method) -> raster 177 * ST_Clip(raster |geometry,geometry) -> same type as first argument178 * ST_Reclass(raster |geometry,string) -> same type as first argument179 * ST_MapAlgebra(raster |geometry, raster), mathematical expression, "raster"|"geometry") -> raster/geometry179 * ST_Clip(raster, geometry) -> raster 180 * ST_Reclass(raster, string) -> raster 181 * ST_MapAlgebra(raster, raster, mathematical expression) -> raster 180 182 * etc...) 181 183 182 '''...introduces raster/geometry seamless geometry constructors...'''184 '''...introduces raster/geometry seamless spatial operation...''' 183 185 * 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 188 189 * etc... 189 190