Fix invalid geometries on dashed lines

This commit is contained in:
Komяpa 2010-12-31 15:30:17 +02:00
parent 1ec7775d62
commit 77ed8e869c

View file

@ -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: