tilery/python-postgis

Invalid Well-Known Text produced for many geometries

Closed this issue · 0 comments

The package wrongly adds an extra set of parenthesis around each point in WKT.
Example of incorrect WKT currently produced:
POLYGON(((1 2),(3 4),(5 6),(1 2)))
When it should be
POLYGON((1 2,3 4,5 6,1 2))