[OSRM-talk] routing profile tracktype

2017-03-08 Thread KRZ
Hallo, I'm a new in this list and new in using osrm. My first routing-service is working now and embedded in an gis-application. My attention is to find the "nearest school" for an address between some alternatives. Next step is to fine-tune the foot-profile to a "save-way-to-school-profile". Fo

[OSRM-talk] profile-name in url

2017-03-08 Thread KRZ
Hallo, while my first routing-service with osrm-backend now is running on my server, I'm thinking to serve another profile. The documentation https://github.com/Project-OSRM/osrm-backend/blob/master/docs/http.md#general-options ... seems to have the profile-name in the URL. /{service}/{versio

Re: [OSRM-talk] profile-name in url

2017-03-08 Thread Daniel Hofmann
It's reserved for future use, see https://github.com/Project-OSRM/osrm-backend/issues/2512 Yes, at the moment you have to start one server per profile and dispatch with a HTTP server in front of it. If you use e.g. the node-osrm bindings [1] you can build a single express/koa HTTP server doing th

[OSRM-talk] osrm-isochrone, how to install

2017-03-08 Thread KRZ
Hi, my third question for today is about "osrm-isochrone". Is this project still alive? $ npm install osrm-isochrone Gets an ERR: stack Error: 403 status code downloading tarball $ git clone https://github.com/Project-OSRM/osrm-isochrone.git Needs user an password. Frank smime.p7s Descripti

Re: [OSRM-talk] routing profile tracktype

2017-03-08 Thread Daniel Hofmann
Have a look at profiles/lib/handlers.lua - in there you will find handlers for certain situations, for example here for surfaces https://github.com/Project-OSRM/osrm-backend/blob/5.6/profiles/lib/handlers.lua#L275-L293 All handlers are getting called in order here https://github.com/Project-OSRM

Re: [OSRM-talk] osrm-isochrone, how to install

2017-03-08 Thread Daniel Hofmann
There is no Project-OSRM/osrm-isochrone repo. - maybe you want - https://www.npmjs.com/package/osrm-isochrone - https://github.com/mapbox/osrm-isochrone There is also a experimental isochrone feature integrated into osrm, check this branch - https://github.com/Project-OSRM/osrm-backend/pull/3652