From 42dc1d36235292786322d28340a81c6cb3fd46c0 Mon Sep 17 00:00:00 2001 From: hurter Date: Wed, 31 Aug 2011 16:25:05 +0000 Subject: --- SimpleRadar_old/Aircraft.cs | 73 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 SimpleRadar_old/Aircraft.cs (limited to 'SimpleRadar_old/Aircraft.cs') diff --git a/SimpleRadar_old/Aircraft.cs b/SimpleRadar_old/Aircraft.cs new file mode 100644 index 0000000..d6ee22d --- /dev/null +++ b/SimpleRadar_old/Aircraft.cs @@ -0,0 +1,73 @@ + +using System; +using System.Collections.Generic; +using System.Text; +using System.Drawing; +using Microsoft.VisualBasic; + +namespace SimpleRadar +{ + public class AircraftPosition + { + + 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; + + } +} -- cgit v1.1