Skip to content

Commit 4758cf4

Browse files
authored
geom: Don't skip 4 corner geometry validation (#255)
These can be invalid in some cases like a figure-of-eight shape. Because there are so few triangle geometries and they are quick to validate, it's simplest to just remove the special casing of small geoms.
1 parent 56812b3 commit 4758cf4

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

writer/ways.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,7 @@ func (ww *WayWriter) buildAndInsert(
147147
if isPolygon {
148148
geosgeom, err = geomp.Polygon(g, way.Nodes)
149149
if err == nil {
150-
if g.NumCoordinates(geosgeom) > 5 {
151-
// only check for valididty for non-simple geometries
152-
geosgeom, err = g.MakeValid(geosgeom)
153-
}
150+
geosgeom, err = g.MakeValid(geosgeom)
154151
}
155152
} else {
156153
geosgeom, err = geomp.LineString(g, way.Nodes)

0 commit comments

Comments
 (0)