| 1 | It would be useful to have support of [http://geos.osgeo.org/doxygen/classgeos_1_1io_1_1WKTWriter.html#a55b7fd9ffcec35f7a4f823a0c9464dce GEOSWKTWriter_setRoundingPrecision] and [http://geos.osgeo.org/doxygen/classgeos_1_1io_1_1WKTWriter.html#a53f742121d0757cd4ca83795ffab1c3f GEOSWKTWriter_setTrim] functions that allow to control output of fractional part in WKT. |
| 2 | |
| 3 | I think that `GEOSGeometry.wkt` should be trimmed because this trailing zeroes are quite annoying: |
| 4 | {{{ |
| 5 | In [81]: print Point(1, 1) |
| 6 | POINT (1.0000000000000000 1.0000000000000000) |
| 7 | }}} |
| 8 | but this probably should go in another ticket. |