Changeset 33728 in osm for applications
- Timestamp:
- 2017-10-22T17:02:03+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/utils/RouteUtils.java
r33727 r33728 272 272 } 273 273 274 275 /** 276 * Checks if this way is suitable for bicycles 277 * @param way way 278 * @return {@code true} if this way is suitable for bicycles 279 */ 280 public static boolean isWaySuitableForBicycle(Way way) { 281 282 return way.hasTag("highway", "cycleway") 283 || !(way.hasKey("highway", "motorway") 284 || way.hasKey("bicycle", "no") 285 || way.hasKey("bicycle", "use_sidepath")); 286 } 287 274 288 public static boolean isFootRoute(Relation r) { 275 289 if (r == null) {
Note:
See TracChangeset
for help on using the changeset viewer.