Re: [OSRM-talk] Foot profile

2014-05-03 Thread Emmanuel Bégué
On Fri, May 2, 2014 at 12:13 PM, Sarah Hoffmann lon...@denofr.de wrote: That's an old unmaintained one which really should be removed. Please try one of those two: https://github.com/sosm/cbf-routing-profiles/blob/master/foot-city.lua

Re: [OSRM-talk] Foot profile

2014-05-03 Thread Martin Koppenhoefer
Am 03/mag/2014 um 15:00 schrieb Sarah Hoffmann lon...@denofr.de: you can exclude all ways with area=yes from routing. Simply add something like this in way_function() of your profile: if way.tags:Find('area') ~= '' then return 0 end But this might do more harm than good. +1, I

Re: [OSRM-talk] Foot profile

2014-05-02 Thread Emmanuel Bégué
Hello, I'm trying to use foot.lua from cbf-routing-profiles direct link: https://github.com/sosm/cbf-routing-profiles/blob/master/foot.lua as a profile for osrm-extract, and it's not working (osrm-extract works fine with profiles from the Project-OSRM repository, but not with cbf ones). At

Re: [OSRM-talk] Foot profile

2014-05-02 Thread Sarah Hoffmann
On Fri, May 02, 2014 at 11:48:56AM +0200, Emmanuel Bégué wrote: Hello, I'm trying to use foot.lua from cbf-routing-profiles direct link: https://github.com/sosm/cbf-routing-profiles/blob/master/foot.lua That's an old unmaintained one which really should be removed. Please try one of

Re: [OSRM-talk] Foot profile

2014-04-29 Thread Dennis Luxen
Salut Emmanuel, the foot profile is the least maintained. And foot data is among the most inconsistent tagged data in OSM. You routing data probably broke into many, many unconnected pieces. —Dennis Am 29.04.2014 um 18:29 schrieb Emmanuel Bégué medu...@gmail.com: Hello, Trying to use

Re: [OSRM-talk] Foot profile

2014-04-29 Thread Carsten Malchow
may be the road network is disconnected, so that the algorthim find a node on a edge that as no connection to the whole network. This is a problem, may be a depth-search-first would help to detected this kind of errors. As far as I know OSRM has no plugin to check the network or? Regards

Re: [OSRM-talk] Foot profile

2014-04-29 Thread Mitchell Oliver
Is there a way we could use the foot profile to generate a set of broken routes we can feed into MapRoulette? Mitch Oliver SENIOR DEVELOPER +1 (513) 319 3230 mi...@roadtrippers.com Website Press Kit Twitter Facebook On Apr 29, 2014, at 1:18 PM, Emmanuel Bégué medu...@gmail.com wrote:

Re: [OSRM-talk] Foot profile

2014-04-29 Thread Sarah Hoffmann
On Tue, Apr 29, 2014 at 07:18:34PM +0200, Emmanuel Bégué wrote: Thanks for a prompt reply, but how would poor data quality explain the fact that two points that are very very near one another result in such a different outcome? Where can I find more information in how to write profiles?