bearing property

  1. @TagNumber(3)
double get bearing

Bearing, in degrees, clockwise from North, i.e., 0 is North and 90 is East. This can be the compass bearing, or the direction towards the next stop or intermediate location. This should not be direction deduced from the sequence of previous positions, which can be computed from previous data.

Implementation

@$pb.TagNumber(3)
$core.double get bearing => $_getN(2);
  1. @TagNumber(3)
set bearing (double v)

Implementation

@$pb.TagNumber(3)
set bearing($core.double v) { $_setFloat(2, v); }