Skip to content

Commit

Permalink
feat: update lap_data names
Browse files Browse the repository at this point in the history
  • Loading branch information
Pippo98 committed Jul 30, 2024
1 parent c9d30f8 commit 8cd1964
Showing 1 changed file with 10 additions and 16 deletions.
26 changes: 10 additions & 16 deletions proto/data/telemetry_lap_data.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,17 @@ syntax = "proto3";

package Data;

message VectorDouble{
repeated double buffer = 1;
}
message VectorDouble { repeated double buffer = 1; }

message DataFile {
map<string, VectorDouble> data = 6;
}
message DataFile { map<string, VectorDouble> data = 6; }

message TelemetryLapData{
string dateTime = 1;
string circuitId = 2;
string layoutId = 3;
string driverId = 4;
uint32 lapNumber = 5;
string filenameHash = 6;
message TelemetryLapData {
string dateTime = 1;
string trackLocation = 2;
string tracklayout = 3;
string driver = 4;
uint32 lapNumber = 5;
string filenameHash = 6;
}

message DataBase{
repeated TelemetryLapData lapsData = 1;
}
message DataBase { repeated TelemetryLapData lapsData = 1; }

0 comments on commit 8cd1964

Please sign in to comment.