Skip to content

Commit

Permalink
Accept highway=busway as valid highway value
Browse files Browse the repository at this point in the history
Fixes #13
  • Loading branch information
Nakaner committed Jun 22, 2021
1 parent d1af14f commit 38fe5b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ptv2_checker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ bool PTv2Checker::check_valid_road_way(const osmium::TagList& member_tags) {
|| !strcmp(highway, "secondary") || !strcmp(highway, "secondary_link") || !strcmp(highway, "tertiary")
|| !strcmp(highway, "tertiary_link") || !strcmp(highway, "unclassified") || !strcmp(highway, "residential")
|| !strcmp(highway, "service") || !strcmp(highway, "track") || !strcmp(highway, "pedestrian")
|| !strcmp(highway, "living_street") || !strcmp(highway, "bus_guideway")
|| !strcmp(highway, "living_street") || !strcmp(highway, "bus_guideway") || !strcmp(highway, "busway")
);
}

Expand Down

0 comments on commit 38fe5b2

Please sign in to comment.