merge dashed lines to get better dash overlaps
This commit is contained in:
parent
9629531dd5
commit
91694e1e5e
1 changed files with 5 additions and 5 deletions
10
src/komap.py
10
src/komap.py
|
@ -640,11 +640,11 @@ if options.renderer == "mapnik":
|
|||
#(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:
|
||||
## sqlz = """select %s, ST_Union(way) as way from (SELECT * from planet_osm_line where way && !bbox! #and (%s)) as tex
|
||||
## group by %s
|
||||
## """%(itags,sql,oitags)
|
||||
#mfile.write(xml_layer("postgis-process", layer_type, itags, sqlz, zoom=zoom ))
|
||||
elif layer_type == "line" and there_are_dashed_lines:
|
||||
sqlz = """select %s, ST_LineMerge(ST_UnaryUnion(ST_SnapToGrid(ST_Collect(way),%s))) as way from (SELECT * from planet_osm_line where way && !bbox! and (%s)) as tex
|
||||
group by %s
|
||||
"""%(itags,pixel_size_at_zoom(zoom, 0.5),sql,oitags)
|
||||
mfile.write(xml_layer("postgis-process", layer_type, itags, sqlz, zoom=zoom ))
|
||||
else:
|
||||
if roads:
|
||||
layer_type = 'roads'
|
||||
|
|
Loading…
Add table
Reference in a new issue