Re: [OSRM-talk] URL parameters for http://map.project-osrm.org - supporting end point only?

2015-11-11 Thread Daniel Patterson
Hi Robert, http://map.project-orsm.org/ isn't really intended for linking to like your'e describing. It's more of a demo interface to OSRM itself. Have you explored using LRM (Leaflet Routing Machine) http://www.liedman.net/leaflet-routing-machine/

Re: [OSRM-talk] OSRM-talk Digest, Vol 35, Issue 7

2015-11-11 Thread Paul Friedman
I'm also starting to use this API (and completely love the results). It appears the default for –max-matching-size is 2. Is there a reason the limit is so low (or is it even enforced?)? Thanks. ---Paul -Original Message- Date: Wed, 11 Nov 2015 00:07:32 +0100 From: Patrick Niklaus

Re: [OSRM-talk] How to disable all ferry routes?

2015-11-11 Thread Peter Becker
Thank you this works 2015-11-11 16:23 GMT+01:00 Daniel Hofmann : > If you take a look at the car profile, you will see a ferry_mode variable, > that sets the travel mode: > >

Re: [OSRM-talk] How to disable all ferry routes?

2015-11-11 Thread Daniel Hofmann
If you take a look at the car profile, you will see a ferry_mode variable, that sets the travel mode: https://github.com/Project-OSRM/osrm-backend/blob/8f6fc0146ba76d34d20c5b7a87b75249bbb12b82/profiles/car.lua#L151 If you set this to 0 (i.e. 'inaccessible") as defined here:

Re: [OSRM-talk] How to disable all ferry routes?

2015-11-11 Thread Richard Marsden
thanks - I was still at the LUA stage (and quite a bit can be worked out from just this level). The explanation below explains 0 and 1, but I couldn't see any explanation of the other values - despite some c++ code that set default TravelMode values of 4 in a couple of places. No

Re: [OSRM-talk] How to disable all ferry routes?

2015-11-11 Thread Daniel Hofmann
Let me show you how you can find out more about specific variables like mode_ferry: your best bet is to search the code base, for example, see this initial search for mode_ferry: https://github.com/Project-OSRM/osrm-backend/search?utf8=%E2%9C%93=mode_ferry=Code you can see how we set

Re: [OSRM-talk] How to disable all ferry routes?

2015-11-11 Thread Richard Marsden
By coincidence I was working through the lua scripts trying to understand them. So what is the significance of the 1,2,3? Just unique identifiers. As long as they're non-zero, they will be enabled? Richard On Nov 11, 2015, at 9:23 AM, Daniel Hofmann wrote: > If you take

Re: [OSRM-talk] Some OSRM Match questions

2015-11-11 Thread Artur Bialecki
I'm not sure how --max-matching-size works. I'm running osrm-routed (v4.8.1) without any options and I’m successfully matching a trip with 815 locations. Artur... -Original Message- From: Paul Friedman [mailto:paul.fried...@streetlightdata.com] Sent: Wednesday, November 11, 2015 1:29

Re: [OSRM-talk] Some OSRM Match questions

2015-11-11 Thread Paul Friedman
Sorry, wrong subject line. Reposting to link the thread. I'm also starting to use this API (and completely love the results). It appears the default for –max-matching-size is 2. Is there a reason the limit is so low (or is it even enforced?)? Thanks. ---Paul -Original Message- Date:

Re: [OSRM-talk] URL parameters for

2015-11-11 Thread Patrick Niklaus
Mapsmarker.com seems to be a commercial service. We only offer access to the demo server for non-commercial services. Please remove OSRM from your commercial service and refrain from linking `map.project-osrm.org` or using `router.project-osrm.org`. Thank you, Patrick On Wed, Nov 11, 2015 at

Re: [OSRM-talk] URL parameters for

2015-11-11 Thread MapsMarker.com
Hi Patrick, too bad to hear that. When I started coding my plugin in 2011, there was no commercial version available yet when I added map.project-osrm.org as directions provider and that parts of the code were not changed since then & also used within the pro version. Personally I thought that

Re: [OSRM-talk] URL Parameters

2015-11-11 Thread MapsMarker.com
Hi Daniel, thanks for the link to details - I guess the best long-term approach will be to set up my own OSRM instance, anyway this will still need some time... best, Robert Hi Robert, See https://github.com/Project-OSRM/osrm-backend/wiki/Api-usage-policy

Re: [OSRM-talk] Extended graph output file

2015-11-11 Thread Daniel Hofmann
The edge-expanded graph already gets written to disk; this was introduced in the following commit: https://github.com/Project-OSRM/osrm-backend/commit/e45656e5bfb0b61a2859f0c754e66322996f1640 which is not yet in the latest release, so you have to build from the develop branch. If you search

Re: [OSRM-talk] Extended graph output file

2015-11-11 Thread Sotorrio, Pedro
Thanks a lot, Daniel! —Pedro From: Daniel Hofmann > Reply-To: Mailing list to discuss Project OSRM > Date: Wednesday, November 11, 2015 at 1:26 PM To: Mailing list to discuss Project

Re: [OSRM-talk] URL parameters for

2015-11-11 Thread Daniel Patterson
Hi Robert, See https://github.com/Project-OSRM/osrm-backend/wiki/Api-usage-policy for our published policy on this. The service you can access publicly is a *demo* service, and can change at any time, for any reason. If

Re: [OSRM-talk] Extended graph output file

2015-11-11 Thread Daniel Patterson
Pedro, There is some work-in-progress on the `edge_segment_lookup` branch that can give you some insight. If you enable the `-DDEBUG_GEOMETRY` flag with `make`, then `osrm-extract` and `osrm-prepare` can be instructed (with a new command-line parameter) to dump out some geometry information

Re: [OSRM-talk] Extended graph output file

2015-11-11 Thread Daniel Patterson
Sorry, autocorrect modified my last email. To enable, do: `cmake -DDEBUG_GEOMETRY=ON ..` daniel > On Nov 11, 2015, at 5:22 PM, Sotorrio, Pedro wrote: > > Thanks, Daniel! > > —Pedro > > From: Daniel Patterson > > Reply-To: