I have the OSRM setup up and running in my CentOS 7 and I have used car.lua profile with little modification to extract the osm data.
Also, with the GPS traces I have(which further converted to gpx format) I generated real "travel time models" using the below programs.
http://wiki.openstreetmap.org/wiki/Routing/Travel_Time_Analysis
and the result wold be like the below:
<models-db>
<model node-from="338720677" node-to="832908078" way="214413814" freeflow="5.4" avg-delay="0.9" />
<model node-from="832908078" node-to="315264821" way="214413814" freeflow="1.0" avg-delay="0.2" />
<model node-from="315264821" node-to="315264861" way="28682394" freeflow="7.3" avg-delay="2.1" />
<model node-from="256019073" node-to="256019073" way="30625842" freeflow="18.0" avg-delay="5.9">
<traffic-delay from="03:15:00" to="07:15:00" day="Any" delay="0.2" />
<traffic-delay from="15:00:00" to="19:15:00" day="Any" delay="0.9" />
<traffic-delay from="19:15:00" to="23:30:00" day="Any" delay="5.4" />
</model>
..........
..........
Is there a way to use this "travel time model" results in OSRM data as the node-from and node-to are directly connected to the osm node id.
I know we can change the speed (forward and backward) using the lua profile and re populate the data. As the above results gives in time "freeflow" & "avg-delay", I am struggling in using the live travel time models in osrm data.
Also I found the feature "Traffic" in OSRM wiki from the below link
https://github.com/Project-OSRM/osrm-backend/wiki/Traffic
but again we need to give the input as node along with speed(edge_speed_in_km_h).
Thanks in advance.