public Decoded(GeoPosition currentLocation, DateTime currentTime, Heading currentHeading, Speed currentSpeed)
 {
     CurrentLocation = currentLocation;
     CurrentTime = currentTime;
     CurrentHeading = currentHeading;
     CurrentSpeed = currentSpeed;
 }
Esempio n. 2
0
 public Datum(DateTime time, Latitude latitude, Longitude longitude, Length altitude = null, Speed speed = null, Heading heading = null)
 {
     _time = time;
     _location = new GeoPosition(latitude, longitude, altitude);
     _speed = speed;
     _heading = heading;
 }
 public LocationChangedEventArgs(GeoPosition position, Heading heading)
 {
     _position = position;
     _heading = heading;
 }
 public Decoded(Heading trueCourse, Heading magneticCourse, Speed speed)
 {
     TrueCourse = trueCourse;
     MagneticCourse = magneticCourse;
     Speed = speed;
 }