Changes between Initial Version and Version 3 of Ticket #25869


Ignore:
Timestamp:
Dec 5, 2015, 8:34:14 AM (9 years ago)
Author:
Sergey Fedoseev
Comment:

PR -- https://github.com/django/django/pull/5775

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25869

    • Property Owner changed from nobody to Sergey Fedoseev
    • Property Status newassigned
    • Property Triage Stage UnreviewedAccepted
    • Property Has patch set
  • Ticket #25869 – Description

    initial v3  
     1It 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
     3I think that `GEOSGeometry.wkt` should be trimmed because this trailing zeroes are quite annoying:
     4{{{
     5In [81]: print Point(1, 1)
     6POINT (1.0000000000000000 1.0000000000000000)
     7}}}
     8but this probably should go in another ticket.
Back to Top