sign larger lines earlier
This commit is contained in:
parent
a90fd55d91
commit
3948734fe3
1 changed files with 7 additions and 3 deletions
10
src/komap.py
10
src/komap.py
|
@ -804,10 +804,14 @@ if options.renderer == "mapnik":
|
|||
elif layer_type == "line" and zoom < 16 and snap_to_street == 'false':
|
||||
sqlz = " OR ".join(sql)
|
||||
itags = ", ".join(itags)
|
||||
if not order:
|
||||
order = "order by"
|
||||
else:
|
||||
order += ", "
|
||||
#itags = "\""+ itags+"\""
|
||||
sqlz = """select %s, ST_LineMerge(ST_Union(way)) as way from (SELECT * from %sline where way && ST_Expand(!bbox!,%s) and (%s) and (%s)) as tex
|
||||
group by %s
|
||||
%s
|
||||
sqlz = """select * from (select %s, ST_LineMerge(ST_Union(way)) as way from (SELECT * from %sline where way && ST_Expand(!bbox!,%s) and (%s) and (%s)) as tex
|
||||
group by %s) p
|
||||
%s ST_Length(p.way) desc
|
||||
"""%(itags,libkomapnik.table_prefix,max(pixel_size_at_zoom(zoom,20),3000),ttext,sqlz,goitags,order)
|
||||
mfile.write(xml_layer("postgis-process", layer_type, itags, sqlz, zoom=zoom ))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue