Skip to content

Commit

Permalink
Merge 2067e39 into 87abcb2
Browse files Browse the repository at this point in the history
  • Loading branch information
YousafAzabi committed Dec 6, 2018
2 parents 87abcb2 + 2067e39 commit 434a0ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/filter/oneway.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ const ogrSQLOSM = " -sql \"SELECT osm_id AS id, name, " +
"CASE WHEN other_tags LIKE '%oneway_=>_yes%' THEN 1 " +
"ELSE 0 END AS direction, geom " +
"FROM lines " +
"WHERE other_tags NOT LIKE '%motor_vehicle_=>_no%' AND " +
"WHERE (other_tags NOT LIKE '%motor_vehicle_=>_no%' OR " +
"other_tags IS NULL) AND " +
"highway in ('motorway', 'motorway_link', 'trunk_link', " +
"'tertiary', 'primary', 'secondary', 'tertiary_link', " +
"'primary_link', 'secondary_link', 'residential', 'trunk', " +
Expand Down

0 comments on commit 434a0ce

Please sign in to comment.