Changes between Initial Version and Version 1 of Ticket #3712, comment 22


Ignore:
Timestamp:
Feb 22, 2017, 12:27:00 PM (7 years ago)
Author:
Björn Harrtell

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3712, comment 22

    initial v1  
    1111geometry ST_AsMVTGeom(geometry geom, box2d bounds, integer extent, integer buffer, boolean clip_geom)
    1212}}}
     13
     14@flippmoke:
     15
     16Would be nice to put ST_MakeValid though that fuzzing test. Revisiting my previous bow tie example shows that it at least does something similar:
     17
     18{{{#!sql
     19select ST_AsText(ST_MakeValid(ST_GeomFromText('POLYGON ((0 0, 10 0, 10 5, 0 -5, 0 0))')))
     20-- Output: "MULTIPOLYGON(((0 0,5 0,0 -5,0 0)),((5 0,10 5,10 0,5 0)))"
     21}}}