You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but if the file is read and passed as it is, line endings are \r\n (on windows) so if you try this will fail, I can not display as it is but above can be written with \n or \r\n line endings
currently wkt.UnmarhsalPolygon works with
but if the file is read and passed as it is, line endings are \r\n (on windows) so if you try this will fail, I can not display as it is but above can be written with \n or \r\n line endings
Linux LF endings (works)
"POLYGON ((\n -0.982 51.941,\n -0.982 52.078,\n -1.05 52.078,\n -1.05 51.941,\n -0.982 51.941\n))"
windows CRLF endings (returns an error)
"POLYGON ((\r\n -0.982 51.941,\r\n -0.982 52.078,\r\n -1.05 52.078,\r\n -1.05 51.941,\r\n -0.982 51.941\r\n))"
Note: I can create a fix PR, let me know what you think
The text was updated successfully, but these errors were encountered: