groundSpeed property

  1. @TagNumber(15)
int get groundSpeed

Ground speed in m/s and True North TRACK in 1/100 degrees Clarification of terms:

  • "track" is the direction of motion (measured in horizontal plane)
  • "heading" is where the fuselage points (measured in horizontal plane)
  • "yaw" indicates a relative rotation about the vertical axis TODO: REMOVE/INTEGRATE

Implementation

@$pb.TagNumber(15)
$core.int get groundSpeed => $_getIZ(14);
  1. @TagNumber(15)
set groundSpeed (int value)

Implementation

@$pb.TagNumber(15)
set groundSpeed($core.int value) => $_setUnsignedInt32(14, value);