Skip to content

Commit

Permalink
cycleway quest: missing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
westnordost committed Jan 7, 2018
1 parent f4c9b45 commit 33d82f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ private static String getOverpassQuery(BoundingBox bbox)
// not any with low speed limit because they not very likely to have cycleway infrastructure
"[maxspeed !~ \"^(30|25|20|15|10|8|7|6|5|20 mph|15 mph|10 mph|5 mph|walk)$\"]" +
// not any unpaved because of the same reason
"[surface !~ \"^("+ TextUtils.join("|", OsmTaggings.ANYTHING_UNPAVED)+"$\"]" +
"[surface !~ \"^("+ TextUtils.join("|", OsmTaggings.ANYTHING_UNPAVED)+")$\"]" +
// not any explicitly tagged as no bicycles
"[bicycle != no]" +
" -> .streets;" +
Expand Down

0 comments on commit 33d82f3

Please sign in to comment.