added bbox intersection check
This commit is contained in:
parent
832d06e4f1
commit
fc8d80ca59
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue