internal BasePositionVelocityTimeEventArgs(HnrPvt hnrPvt)
 {
     GpsTimeOfWeek              = hnrPvt.GpsTimeOfWeek;
     DateTime                   = hnrPvt.UbloxDateTime.DateTime;
     FixType                    = hnrPvt.FixType;
     Flags                      = hnrPvt.Flags;
     Latitude                   = hnrPvt.Latitude;
     Longitude                  = hnrPvt.Longitude;
     Height                     = hnrPvt.Height;
     HeightAboveMeanSeaLevel    = hnrPvt.HeightAboveMeanSeaLevel;
     HorizontalAccuracyEstimate = hnrPvt.HorizontalAccuracyEstimate;
     VerticalAccuracyEstimate   = hnrPvt.VerticalAccuracyEstimate;
     GroundSpeed                = hnrPvt.GroundSpeed;
     HeadingOfMotion            = hnrPvt.HeadingOfMotion;
     SpeedAccuracyEstimate      = hnrPvt.SpeedAccuracyEstimate;
     HeadingAccuracyEstimate    = hnrPvt.HeadingAccuracyEstimate;
     HeadingOfVehicle           = hnrPvt.HeadingOfVehicle;
 }
 internal HighNavRatePositionVelocityTimeEventArgs(HnrPvt hnrPvt) : base(hnrPvt)
 {
     Speed = hnrPvt.Speed;
 }