Пример #1
0
 /// <summary>
 /// Add additional data to the dataset.
 /// This will add the heading, pitch and roll
 /// from the NMEA sentence.
 /// </summary>
 /// <param name="sentence">Sentence containing data.</param>
 public void AddAncillaryData(Prti31Sentence sentence)
 {
     Heading = sentence.Heading;
     Pitch = sentence.Pitch;
     Roll = sentence.Roll;
 }
Пример #2
0
 /// <summary>
 /// This will add additional Bottom Track data from the
 /// Prti31Sentence.
 /// </summary>
 /// <param name="sentence">Additional data to add to the dataset.</param>
 public void AddAdditionalBottomTrackData(Prti31Sentence sentence)
 {
     Heading = sentence.Heading;
     Pitch = sentence.Pitch;
     Roll = sentence.Roll;
 }
Пример #3
0
 /// <summary>
 /// Add additional data to the dataset.
 /// This will add the heading, pitch and roll
 /// from the NMEA sentence.
 /// </summary>
 /// <param name="sentence">Sentence containing data.</param>
 public void AddAncillaryData(Prti31Sentence sentence)
 {
     Heading = sentence.Heading;
     Pitch   = sentence.Pitch;
     Roll    = sentence.Roll;
 }