Skip to content

Commit

Permalink
Added allManeuvers field to NavInstruction
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellgoffpc committed Jul 24, 2023
1 parent fdb3080 commit 64d48f2
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion log.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -2082,6 +2082,8 @@ struct NavInstruction {
speedLimit @10 :Float32; # m/s
speedLimitSign @11 :SpeedLimitSign;

allManeuvers @12 :List(Maneuver);

struct Lane {
directions @0 :List(Direction);
active @1 :Bool;
Expand All @@ -2098,7 +2100,13 @@ struct NavInstruction {
enum SpeedLimitSign {
mutcd @0; # US Style
vienna @1; # EU Style
}
}

struct Maneuver {
distance @0 :Float32;
type @1 :Text;
modifier @2 :Text;
}
}

struct NavRoute {
Expand Down

0 comments on commit 64d48f2

Please sign in to comment.