Changes between Initial Version and Version 2 of Ticket #966


Ignore:
Timestamp:
Apr 6, 2009, 1:02:18 PM (15 years ago)
Author:
Daniel Morissette
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #966

    • Property Cc Daniel Morissette added
  • Ticket #966 – Description

    initial v2  
    1 {{{
    21Daniel Morissette has made an interesting patch for OGR2OGR to allow LineString
    32generalization (the new function is included below), using a new '-gen_tol'
     
    2726new function: 
    2827
     28{{{
    2929+OGRGeometry *GeneralizeGeometry(OGRGeometry *poGeom, double dGenTol)
    3030+{
     
    7878+    return poGeom;
    7979+}
     80}}}
    8081
    8182FME generalization algorithms:
    8283
    83841)
    84    When the *ThinNoPoint* algorithm is used, vertices that are less than   the
     85When the *ThinNoPoint* algorithm is used, vertices that are less than   the
    8586tolerance distance away from an adjacent vertex within a feature are removed.
    8687The begin and end points are never moved, even when the entire length of the
     
    107108will always be 2D. It requires two additional parameters to be specified...
    108109*****
    109 }}}