osrm-backend/include/engine/api/flatbuffers/table.fbs
2019-08-26 11:08:56 +03:00

15 lines
308 B
Plaintext

include "waypoint.fbs";
namespace osrm.engine.api.fbresult;
table VectorDouble {
column: [double];
}
table Table {
waypoints: [Waypoint];
durations: [VectorDouble];
distances: [VectorDouble];
sources: [Waypoint];
destinations: [Waypoint];
fallback_speed_cells: [VectorDouble];
}