From 77ed8e869cb62721cbacf6d1a7246b73f63bb317 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kom=D1=8Fpa?= Date: Fri, 31 Dec 2010 15:30:17 +0200 Subject: [PATCH] Fix invalid geometries on dashed lines --- src/komap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/komap.py b/src/komap.py index 332d2eb..caddc6f 100644 --- a/src/komap.py +++ b/src/komap.py @@ -266,7 +266,7 @@ for zoom, zsheet in mapniksheet.iteritems(): if layer_type == "polygon" and there_are_dashed_lines: itags = ", ".join(itags) oitags = '"'+ "\", \"".join(oitags) +'"' - sqlz = """select %s, ST_LineMerge(ST_Union(way)) as way from (SELECT %s, ST_Boundary(way) as way from planet_osm_polygon where way && !bbox! and (%s)) as tex + sqlz = """select %s, ST_LineMerge(ST_Union(way)) as way from (SELECT %s, ST_Boundary(ST_Buffer(way,0)) as way from planet_osm_polygon where way && !bbox! and (%s)) as tex group by %s """%(itags,oitags,sql,oitags) #elif layer_type == "line" and there_are_dashed_lines: