-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from LeoKle/V0.33
V0.33
- Loading branch information
Showing
14 changed files
with
1,847 additions
and
950 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,35 @@ | ||
using System; | ||
using Newtonsoft.Json; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Runtime.Serialization.Formatters; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace ES | ||
namespace EuroscopeSIMBib | ||
{ | ||
internal class Airport | ||
[Serializable] | ||
public class Airport | ||
{ | ||
internal virtual string ICAO { get; set; } | ||
/// <summary> | ||
/// Determines the runway in use i.e. at EDDL 05/23 | ||
/// </summary> | ||
internal virtual List<string> RunwayDirections { get; set; } = new List<string>(); | ||
internal virtual int SelectedRunwayDirectionIndex { get; set; } | ||
internal virtual string RunwayHeadingLastNumber { get; set; } | ||
/// <summary> | ||
/// List of SIDSRoute corresponding to the index of the runway described in property "RunwayDirections" | ||
/// </summary> | ||
internal virtual List<string>[] SIDSRoute { get; set; } | ||
internal virtual List<string>[] SIDSFpln { get; set; } | ||
/// <summary> | ||
/// List of STARs responding to the index of the runway described in property "RunwayDirections" | ||
/// </summary> | ||
internal virtual List<string>[] STARSRoute { get; set; } | ||
internal virtual List<string>[] STARSFpln { get; set; } | ||
/// <summary> | ||
/// List of TRANSITION corresponding to the index of the runway described in property "RunwayDirections" | ||
/// </summary> | ||
internal virtual List<string>[] TRANSITIONRoute { get; set; } | ||
internal virtual List<string>[] TRANSITIONFpln { get; set; } | ||
|
||
internal virtual string[] DepartureAirstart { get; set; } | ||
internal virtual string[] DepartureGroundstart { get; set; } | ||
internal virtual List<string> ArrivalStartPoint { get; set; } = new List<string>(); | ||
|
||
|
||
|
||
|
||
/// <summary> | ||
/// Should be obsolete and property should be in method | ||
/// </summary> | ||
internal virtual string SelectedRunwayDirection { get; set; } | ||
internal virtual int InboundHeading { get; set; } | ||
|
||
#region details ES simfile requires | ||
|
||
internal virtual List<string>[] ILSDefinition { get; set; } | ||
internal virtual string[] Holdings { get; set; } | ||
|
||
internal virtual List<string> Pseudopilots { get; set; } = new List<string>(); | ||
|
||
internal virtual string Elevation { get; set; } | ||
internal virtual string[] RunwayNames { get; set; } | ||
internal virtual List<string> InboundStartPosition { get; set; } = new List<string>(); | ||
internal virtual List<string> InboundAltitude { get; set; } = new List<string>(); | ||
|
||
#endregion | ||
public string ICAO { get; set; } | ||
public string[] RunwayConfigText { get; set; } | ||
public string[] RunwayConfig { get; set; } | ||
public int[] RunwayHeadings { get; set; } | ||
public string Elevation { get; set; } | ||
public string[][] SIDSroute { get; set; } | ||
public string[][] SIDSflightplan { get; set; } | ||
public string[][] SIDSAltitude { get; set; } | ||
public string[][] STARSroute { get; set; } | ||
public string[][] STARSflightplan { get; set; } | ||
public string[][] STARSAltitude { get; set; } | ||
public string[][] TRANSITIONroute { get; set; } | ||
public string[][] TRANSITIONflightplan { get; set; } | ||
public string[][] TRANSITIONAltitude { get; set; } | ||
public string[] DeparturePositionGroundStart { get; set; } | ||
public string[] DeparturePositionAirStart { get; set; } | ||
public string[] ArrivalStartPosition { get; set; } | ||
public int[] ArrivalInitialHeading { get; set; } | ||
public string[] ILSDefinitions { get; set; } | ||
public string[] HoldingDefinitions { get; set; } | ||
public string[] Pseudopilots { get; set; } | ||
} | ||
} |
Oops, something went wrong.