added bbox intersection check

This commit is contained in:
Komzpa 2011-07-21 16:19:59 +03:00
parent 832d06e4f1
commit fc8d80ca59

View file

@ -388,7 +388,7 @@ if options.renderer == "mapnik":
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 (%s) and ST_IsValid(way) ) tex
(SELECT %s, ST_Boundary(way) as way from planet_osm_polygon where (%s) and way && !bbox! and ST_IsValid(way) ) tex
group by %s
"""%(itags,oitags,sql,oitags)
#elif layer_type == "line" and there_are_dashed_lines: