Treat tunnel as an underground feature.

This commit is contained in:
Sergey Vartanov 2021-09-29 09:59:06 +03:00
parent c76db0e3f5
commit 025fa12a48

View file

@ -507,4 +507,5 @@ def check_level_overground(tags: dict[str, Any]) -> bool:
return (
tags.get("location") != "underground"
and tags.get("parking") != "underground"
and tags.get("tunnel") != "yes"
)