Changes between Version 87 and Version 88 of WKTRaster/SpecificationWorking01


Ignore:
Timestamp:
Dec 21, 2009, 1:50:11 PM (14 years ago)
Author:
pracine
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • WKTRaster/SpecificationWorking01

    v87 v88  
    328328  ST_Intersects(ST_ConvexHull(raster, 'WITHNODATA'), geometry)
    329329
    330   '''Implementation details'''
     330 '''Implementation details'''
    331331 
    332332 This function should be implemented as a pl/pgSQL function performing the three test described one after and conditionally to the other.
     
    334334 It might be faster to skip test 2) if this test is not signicantly faster than test 3).
    335335
    336 '''ST_Intersection(raster|geometry, raster|geometry, ‘raster’|’geometry’)->raster/geometry'''
     336'''ST_Intersection(raster, geometry) -> geometry'''
     337
     338 Variant 1: ST_Intersection(geometry, raster) -> geometry
     339
     340 Variant 2 & 3:
     341
     342  ST_Intersection(raster, geometry, 'raster') -> raster
     343
     344  ST_Intersection(geometry, raster, 'raster') -> raster
     345
     346 Variant 4 & 5:
     347
     348  ST_Intersection(raster, raster) -> raster
     349
     350  ST_Intersection(raster, raster, 'geometry') -> geometry
    337351
    338352