first working e2e version

This commit is contained in:
sbriat
2023-09-26 09:51:26 +02:00
parent eafa3c8bdd
commit 528ecfb3f9
10 changed files with 323 additions and 7 deletions

View File

@@ -56,6 +56,35 @@ enum AlgorithmType {
message Match {
string id = 1;
string adId = 2;
string role = 3;
int32 duration = 4;
int32 distance = 5;
repeated Journey journeys = 6;
}
message Journey {
string firstDate = 1;
string lastDate = 2;
repeated Step steps = 3;
}
message Step {
int32 duration = 1;
int32 distance = 2;
double lon = 3;
double lat = 4;
repeated Actor actors = 5;
}
message Actor {
string role = 1;
string target = 2;
string firstDatetime = 3;
string firstMinDatetime = 4;
string firstMaxDatetime = 5;
string lastDatetime = 6;
string lastMinDatetime = 7;
string lastMaxDatetime = 8;
}
message Matches {