From 42dc1d36235292786322d28340a81c6cb3fd46c0 Mon Sep 17 00:00:00 2001 From: hurter Date: Wed, 31 Aug 2011 16:25:05 +0000 Subject: --- Data/AircraftPosition.cs | 73 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 Data/AircraftPosition.cs (limited to 'Data/AircraftPosition.cs') diff --git a/Data/AircraftPosition.cs b/Data/AircraftPosition.cs new file mode 100644 index 0000000..a80ada2 --- /dev/null +++ b/Data/AircraftPosition.cs @@ -0,0 +1,73 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Data +{ + public class AircraftPosition + { + #region Attributes + + public string Flight; + public string CallSign; + + /// + /// SSR Code + /// + public string Ssr; + + public string Sector; + public string Layers; + + public double X; + public double Y; + + + public double GroundSpeed; + public int Heading; + public double Vx; + public double Vy; + + /// + /// Flight level + /// + public int AFL; + + /// + /// fts/min + /// + public int Rate; + + /// + /// O : Stable + /// 1 : climb + /// -1 : Descent + /// -2 : unknown + /// + public int Tendency; + + /// + /// HH:MM:SS + /// + public int Time_Of_Plot; + + /// + /// The minimum séparation with another aircraft + /// existe if the vertical separation is below 1000ft + /// + public double MinSeparation; + + /// + /// the closest aircraft + /// + public string MinSeparationCallSign; + + /// + /// The speed alteration given with Erasmus -100% -> +100% + /// + public double ErasmusDeltaGroundSpeed; + + #endregion + } +} -- cgit v1.1