Replies: 6 comments
-
Hey there, Anything routing related is a bit tricky. wanderer uses the valhalla routing engine. Routing is a very resource and storage space intensive endeavor. Currently there is no budget to provide our own routing data. So we use a public instance of valhalla in the standard installation: Line 60 in 98691dc As a result, we do not have any influence over which route gets calculated by the server. |
Beta Was this translation helpful? Give feedback.
-
Hi, However, I just looked into valhalla and (at least the web interface) allows to configure the necessary settings by setting "use hills", "maximum hiking difficulty" and "shortest" (see link/screenshot at the bottom). Exposing these parameters as wanderer settings (best case general settings + possibility to override for specific route) is what #204 refers to. Does the public valhalla API not expose these parameters? #202 is a bit different, as it is not referring to the routing or modifications to routing, but the visualization of trails being closed. Valhalla seems to be aware of these closures, but also does not display them. I wasn't able to figure out where this info is stored in osm, but will update if I find something. Thanks for your work! |
Beta Was this translation helpful? Give feedback.
-
Oh sweet, I hadn't had a proper look at these settings. I'll do so next week and probably create a dedicated settings page for default values that can be fine tuned when drawing a route. Thanks! |
Beta Was this translation helpful? Give feedback.
-
Perfect, thank you! :) |
Beta Was this translation helpful? Give feedback.
-
So, I just managed to take a closer look regarding closures. They are available through the "access" tag of the highway=path tag, see https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath Thus, the feature request is to |
Beta Was this translation helpful? Give feedback.
-
v0.16.2 adds the aforementioned settings to the routing algorithm. The dedicated settings page will follow in a later update. I'll have a look at the trail closures. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Sometimes trails are closed due to damage, construction, etc. I guess that this is stored as a trail attribute in osm. The wanderer trail planner seems to observe this attribute and disallow auto-route through trails that are closed. However, it does not indicate that the trail is closed (i.e., why auto-route is not working).
Therefore, feature request 1 is that the map indicates trail closures. As a reference, komoot shows trail closures this way:
For testing, I created a trail that tries to use a closed trail in the demo instance: https://demo.wanderer.to/trail/view/0ee6257a3510946
It would be even more amazing (feature request 2) to have the option to ignore trail closures during planning (e.g., for planning journeys ahead of time and expect the trail to be open when visiting it).
Beta Was this translation helpful? Give feedback.
All reactions