/* * Yubeshi GPS Parser * * This software is distributed under a zlib-style license. * See license.txt for more information. */ using System; using System.Collections.Generic; using System.Text; namespace Yubeshi { public class EnuVelocity { #region fields #endregion #region constructors public EnuVelocity(double e, double n, double u) { E = e; N = n; U = u; Origin = null; } public EnuVelocity(int e, int n, int u) : this(e * 0.01, n * 0.01, u * 0.01) { } #endregion #region properties public double E { get; set; } public double N { get; set; } public double U { get; set; } public EcefCoordinate Origin { get; private set; } #endregion } }