osrm-backend/src
Daniel J. Hofmann 363d2145bd
Register a way's .nodes() function for use in the profile's way_function.
Can be used as in:

    function way_function(way, result)
      for node in way:get_nodes() do
        local id = node:id()
        io.write(">>> " .. id .. "\n")
      end

      -- ...
    end

Warning: we do not use libosmium's location cache, therefore .location()
on the nodes will crash at runtime. Once we switch to using libosmium's
cache this should work. Until then, you can use the node id now.
2016-05-04 15:28:34 +02:00
..
benchmarks Modularize benchmarks subproject 2016-04-06 18:36:08 +02:00
contractor Implement arbitrary turn penalty file IO and integration (#2306) 2016-04-29 00:48:13 -07:00
engine Introduce on_ramp and off_ramp, deprecate ramp 2016-05-04 12:09:54 +02:00
extractor Register a way's .nodes() function for use in the profile's way_function. 2016-05-04 15:28:34 +02:00
osrm Add support for tile plugin 2016-04-05 22:58:32 +02:00
server Fix syntax error position indicators in parameters queries 2016-04-27 19:52:23 +02:00
storage Remove typename prefix from non-dependent type alias 2016-05-03 12:00:40 +02:00
tools Fix naming convention of Percent 2016-05-02 17:25:58 +02:00
util Inline and vectorize haversine for GetPathDistance 2016-05-02 19:53:42 +02:00