Changes between Version 33 and Version 34 of PostGIS_Raster_SoC_Idea_2012/Distance_Analysis_Tools/document


Ignore:
Timestamp:
Jul 15, 2012, 8:20:47 PM (12 years ago)
Author:
qliu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • PostGIS_Raster_SoC_Idea_2012/Distance_Analysis_Tools/document

    v33 v34  
    180180{{{
    181181#!sql
    182 ST_EuclideanDistance(text dbschema, text sourcetable, text sourcegeomcolumn, geometry geom, integer width, integer height, double precision gridx, double precision gridy, text pixeltype, double precision nodataval=0, double precision skewx=0, double precision skewy=0)
     182ST_EuclideanDistance(text dbschema, text sourcetable, text sourcegeomcolumn,
     183                                 geometry geom, integer width, integer height,
     184                                 double precision gridx, double precision gridy, text pixeltype,
     185                                 double precision nodataval=0, double precision skewx=0, double precision skewy=0)
    183186}}}
    184187
     
    186189{{{
    187190#!sql
    188 ST_EuclideanDistance(text dbschema, text sourcetable, text sourcegeomcolumn, raster ref, text pixeltype, double precision nodataval=0, double precision maxdistance)
     191ST_EuclideanDistance(text dbschema, text sourcetable, text sourcegeomcolumn,
     192                                  raster ref, text pixeltype, double precision nodataval=0, double precision maxdistance)
    189193}}}
    190194{{{
    191195Comments from Mentor:
    192 You should integrate this parameter in the more generic signature instead. The idea is to create a generic function with the most complete signature and then to create variants assuming default value for some of the parameters. Only the most complete has to be implemented in C.
     196You should integrate this parameter in the more generic signature instead. The idea is to
     197create a generic function with the most complete signature and then to create variants
     198assuming default value for some of the parameters. Only the most complete has to be implemented in C.
    193199}}}