Changes between Version 3 and Version 4 of WKTRaster/FAQ


Ignore:
Timestamp:
Jun 17, 2009, 9:10:12 AM (15 years ago)
Author:
pracine
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/FAQ

    v3 v4  
    33'''1 - What is the meaning of "WKT" in WKT Raster?'''
    44
     5WKT stands for "[http://en.wikipedia.org/wiki/Well-known_text Well Known Text]". Is is an OGC standard to represent geographical information in a human readable textual representation. The WKT standard does not define a way to represent raster yet. PostGIS WKT Raster is a bit ahead on this :-)
     6
    57'''2 - How is WKT Raster different than the Oracle SDO_GEORASTER and SDO_RASTER types?'''
     8
     9The major difference lies in the fact that each WKT Raster piece of raster (block or tile) is georeferenced (one-georeference-per-raster). In Oracle only the SDO_GEORASTER type supports georeference so that the location of every piece of raster stored as SDO_RASTER is aligned on a grid derived from the unique georeference (one-georeference-by-layer).
     10
     11The major advantage of one-georeference-by-raster over one-georeference-by-layer is to allow:
     12
     13-coverages to be not necessarily rectangular (which is often the case of raster coverage covering large extents. See the possible raster arrangments in the documentation)
     14-rasters to overlaps (which is necessary to implement lossless vector to raster conversion)
    615
    716'''3 - Why do you say "WKT Raster goal is to implement the RASTER type as much as possible like the GEOMETRY type is implemented in PostGIS"? Vector and raster are very different and have always been threated differently in GIS packages.'''