osrm-backend/include/engine/api/flatbuffers/table.fbs
Denis Chaplygin acd3e81ab4 Removed ineffectivness in the serialization schema. Positions are
structs now and distance/duration matrices are just arrays.
2019-08-26 11:08:56 +03:00

12 lines
253 B
Plaintext

include "waypoint.fbs";
namespace osrm.engine.api.fbresult;
table Table {
durations: [float];
rows: [ushort];
cols: [ushort];
distances: [float];
sources: [Waypoint];
destinations: [Waypoint];
fallback_speed_cells: [uint];
}