summaryrefslogtreecommitdiff
path: root/SimpleRadar_old/Aircraft.cs
blob: d6ee22d42c67f0930fd467879016578d367f9869 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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;

        /// <summary>
        /// SSR Code
        /// </summary>
        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;

        /// <summary>
        /// Flight level
        /// </summary>
        public int AFL;

        /// <summary>
        /// fts/min
        /// </summary>
        public int Rate;

        /// <summary>
        /// O : Stable
        /// 1  : climb
        /// -1 : Descent
        /// -2 : unknown
        /// </summary>
        public int Tendency;

        /// <summary>
        /// HH:MM:SS
        /// </summary>
        public int Time_Of_Plot;

        /// <summary>
        /// The minimum séparation with another aircraft
        /// existe if the vertical separation is below 1000ft
        /// </summary>
        public double MinSeparation;

        /// <summary>
        /// the closest aircraft
        /// </summary>
        public string MinSeparationCallSign;

        /// <summary>
        /// The speed alteration given with Erasmus -100% -> +100%
        /// </summary>
        public double ErasmusDeltaGroundSpeed;

    }
}