Handle highways with man_made=bridge (#66)

This commit is contained in:
Michael Barry
2022-02-04 07:22:31 -05:00
committed by GitHub
parent 650f68455e
commit 99d723361b
2 changed files with 12 additions and 1 deletions

View File

@@ -222,7 +222,7 @@ public class Transportation implements
"highway", coalesce(highway, ""),
"public_transport", coalesce(publicTransport, ""),
"construction", coalesce(construction, "")
), manMade) : manMade;
), null) : manMade;
}
static String highwaySubclass(String highwayClass, String publicTransport, String highway) {