> There needs to > be some logic that says "if at_sea: ignore_all_intersections" > to get rid of this behaviour.
Looking at the OSM tag definitions at http://wiki.openstreetmap.org/wiki/Key:route?uselang=en-US this would be if (route == ferry) { skip_intersections() } A more flexible alternative might be if (route != road) { skip_intersections() } The latter allows future expansions of OSRM to bike, hike and public transport with less hassle. Z _______________________________________________ OSRM-talk mailing list [email protected] https://lists.openstreetmap.org/listinfo/osrm-talk
