a-b-street / osm2lanes

A common library and set of test cases for transforming OSM tags to lane specifications
https://a-b-street.github.io/osm2lanes/
Apache License 2.0
34 stars 2 forks source link

highway=footway turns into a driveable lane #245

Open dabreegster opened 2 years ago

dabreegster commented 2 years ago

https://www.openstreetmap.org/way/150133153 yields:

{
  "highway": "footway",
  "lit": "yes",
  "smoothness": "good",
  "lanes": [
    {
      "type": "travel",
      "direction": "both",
      "designated": "motor_vehicle",
      "width": 3.0
    },
    {
      "type": "separator",
      "markings": [
        {
          "style": "solid_line",
          "width": 0.2,
          "color": "white"
        }
      ]
    }
  ]
}
dabreegster commented 2 years ago

Reported by @RobinLovelace