Fix invalid geometries on dashed lines
This commit is contained in:
parent
1ec7775d62
commit
77ed8e869c
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue