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;
}
}