2019-08-02 07:30:09 -04:00
|
|
|
include "waypoint.fbs";
|
|
|
|
namespace osrm.engine.api.fbresult;
|
|
|
|
|
2024-07-10 14:44:36 -04:00
|
|
|
table TableResult {
|
2019-08-06 05:51:38 -04:00
|
|
|
durations: [float];
|
2019-08-12 07:26:22 -04:00
|
|
|
rows: ushort;
|
|
|
|
cols: ushort;
|
2019-08-06 05:51:38 -04:00
|
|
|
distances: [float];
|
2019-08-02 07:30:09 -04:00
|
|
|
destinations: [Waypoint];
|
2019-08-06 05:51:38 -04:00
|
|
|
fallback_speed_cells: [uint];
|
2019-08-02 07:30:09 -04:00
|
|
|
}
|