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
A MultiLineString is currently being saved as a Polygon. This creates problems when interfacing with other geometry packages because MultiLineStrings are saved as invalid Polygons. So we obtain errors when trying to load this invalid Polygons. This is happening in our GeoTables.jl when intarfecing with GeoJSON.jl (JuliaEarth/GeoTables.jl#24).
A
MultiLineString
is currently being saved as aPolygon
. This creates problems when interfacing with other geometry packages becauseMultiLineStrings
are saved as invalidPolygons
. So we obtain errors when trying to load this invalidPolygons
. This is happening in ourGeoTables.jl
when intarfecing withGeoJSON.jl
(JuliaEarth/GeoTables.jl#24).Let's consider the following geometry:
Given that
featu
is aGeoJSONT
, writing to a file works well because it does not to use the_lower
function.However, if we use the
_lower
function, theMultiLineString
is saved as aPolygon
.The outputs are different when the geometry type should actually be
MultiLineString
.The text was updated successfully, but these errors were encountered: