Changes between Version 71 and Version 72 of WKTRaster/SpecificationWorking01

Show
Ignore:
Timestamp:
12/16/09 14:02:23 (3 years ago)
Author:
pracine
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationWorking01

    v71 v72  
    244244  
    245245 This function is at the base of the first version of ST_Intersection which compute the intersection between a raster and a geometry. 
     246 
     247 To avoid linking directly with PostGIS (see "Why avoid to link with PostGIS?" below) It should be implemented as a PL/pgSQL wrapper around ST_AsWKTPolygon() looking something like this:  
     248 
     249 FOR poly IN SELECT ST_GeomFromText(ST_AsWKTPolygon(rast)) FROM table LOOP 
     250  RETURN NEXT poly; 
     251 END LOOP; 
     252 
    246253 
    247254'''ST_AsSmoothPolygon(raster) -> polygon geometry set''' - Returns a set of geometry, one for each group of pixel having the same value.