Changes between Initial Version and Version 1 of Ticket #3712, comment 22
- Timestamp:
- 02/22/17 12:27:00 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3712, comment 22
initial v1 11 11 geometry ST_AsMVTGeom(geometry geom, box2d bounds, integer extent, integer buffer, boolean clip_geom) 12 12 }}} 13 14 @flippmoke: 15 16 Would 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 19 select 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 }}}