Changes between Version 74 and Version 75 of WKTRaster/SpecificationWorking01


Ignore:
Timestamp:
Dec 16, 2009, 2:34:19 PM (14 years ago)
Author:
pracine
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationWorking01

    v74 v75  
    190190'''Function definitions for WKT Raster 0.1.6'''
    191191
     192ST_GetBBox(raster) (not yet implemented but planned) is replaced with ST_Envelope() since there is no more an equivalent ST_GetBBox function in PostGIS.
     193
     194ST_Raster_to_box2d(raster) should be renamed ST_box2d(raster).
     195
    192196'''ST_Box2D(raster) -> BOX2D''' - Returns a BOX2D representing the extent of the raster.
    193197
     
    257261 This function construct the WKT strings representing the geometries grouping pixels of a raster having the same value. It does not directly construct geometries and therefore prevent WKT Raster from having to link with liblwgeom.a (see "Why avoid to link with PostGIS?" below)
    258262
    259 ST_GetBBox(raster) (not yet implemented but planned) is replaced with ST_Envelope() since there is no equivalent function in PostGIS.
    260 
    261 ST_Raster_to_box2d(raster) should be renamed ST_box2d(raster).
     263 It should be implemented by passing the raster to GDAL and convert each polygon produced by the
    262264
    263265