Skip to content

Commit

Permalink
rigour
Browse files Browse the repository at this point in the history
  • Loading branch information
haraschax committed Feb 26, 2020
1 parent 25eaf9d commit 365abba
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions log.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -790,6 +790,32 @@ struct PathPlan {
}
}

struct LiveLocationKalman {

positionECEF @0 : Measurement;
positionGeodetic @1 : Measurement;
velocityECEF @2 : Measurement;
velocityNED @3 : Measurement;
velocityDevice @4 : Measurement;
accelerationDevice @5: Measurement;


# These angles are all eulers and roll, pitch, yaw
# orientationECEF transforms to rot matrix: ecef_from_device
orientationECEF @6 : Measurement;
orientationNED @7 : Measurement;
angularVelocityDevice @8 : Measurement;

gpsWeek @16 :Int32;
gpsTimeOfWeek @17 :Float64;

struct Measurement {
val @0 : List(float64);
std @1 : List(float64);

}
}

struct LiveLocationData {
status @0 :UInt8;

Expand Down

0 comments on commit 365abba

Please sign in to comment.