Consider also buildings with levels=null
This commit is contained in:
parent
1195126c90
commit
a5cf15bdbd
@ -89,7 +89,7 @@ RETURNS TABLE(geometry geometry, osm_id bigint, render_height int, render_min_he
|
|||||||
floor(COALESCE(min_height, min_level*3.66,0))::int AS render_min_height FROM
|
floor(COALESCE(min_height, min_level*3.66,0))::int AS render_min_height FROM
|
||||||
osm_all_buildings
|
osm_all_buildings
|
||||||
WHERE
|
WHERE
|
||||||
levels < 1000 AND
|
(levels IS NULL OR levels < 1000) AND
|
||||||
zoom_level >= 14 AND geometry && bbox
|
zoom_level >= 14 AND geometry && bbox
|
||||||
) AS zoom_levels
|
) AS zoom_levels
|
||||||
ORDER BY render_height ASC, ST_YMin(geometry) DESC;
|
ORDER BY render_height ASC, ST_YMin(geometry) DESC;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user