-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Vatsim data collection working Tracking condition implemented Time connected logic still missing Mostly working PMDG 737 gear handle logic, needs tuning
- Loading branch information
Showing
19 changed files
with
434 additions
and
50 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
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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright file="VatsimClientConnection.cs" company="OpenSky"> | ||
// OpenSky project 2021-2023 | ||
// </copyright> | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
|
||
namespace OpenSky.Agent.Simulator.Models | ||
{ | ||
using System; | ||
|
||
/// ------------------------------------------------------------------------------------------------- | ||
/// <summary> | ||
/// Vatsim client connection model. | ||
/// </summary> | ||
/// <remarks> | ||
/// sushi.at, 03/12/2023. | ||
/// </remarks> | ||
/// ------------------------------------------------------------------------------------------------- | ||
public class VatsimClientConnection | ||
{ | ||
/// ------------------------------------------------------------------------------------------------- | ||
/// <summary> | ||
/// Gets or sets the arrival. | ||
/// </summary> | ||
/// ------------------------------------------------------------------------------------------------- | ||
public string Arrival { get; set; } | ||
|
||
/// ------------------------------------------------------------------------------------------------- | ||
/// <summary> | ||
/// Gets or sets the call sign. | ||
/// </summary> | ||
/// ------------------------------------------------------------------------------------------------- | ||
public string Callsign { get; set; } | ||
|
||
/// ------------------------------------------------------------------------------------------------- | ||
/// <summary> | ||
/// Gets or sets the CID. | ||
/// </summary> | ||
/// ------------------------------------------------------------------------------------------------- | ||
public string CID { get; set; } | ||
|
||
/// ------------------------------------------------------------------------------------------------- | ||
/// <summary> | ||
/// Gets or sets the departure. | ||
/// </summary> | ||
/// ------------------------------------------------------------------------------------------------- | ||
public string Departure { get; set; } | ||
|
||
/// ------------------------------------------------------------------------------------------------- | ||
/// <summary> | ||
/// Gets or sets the last updated timestamp. | ||
/// </summary> | ||
/// ------------------------------------------------------------------------------------------------- | ||
public DateTime LastUpdated { get; set; } | ||
|
||
/// ------------------------------------------------------------------------------------------------- | ||
/// <summary> | ||
/// Gets or sets the latitude. | ||
/// </summary> | ||
/// ------------------------------------------------------------------------------------------------- | ||
public double Latitude { get; set; } | ||
|
||
/// ------------------------------------------------------------------------------------------------- | ||
/// <summary> | ||
/// Gets or sets the logon time. | ||
/// </summary> | ||
/// ------------------------------------------------------------------------------------------------- | ||
public DateTime LogonTime { get; set; } | ||
|
||
/// ------------------------------------------------------------------------------------------------- | ||
/// <summary> | ||
/// Gets or sets the longitude. | ||
/// </summary> | ||
/// ------------------------------------------------------------------------------------------------- | ||
public double Longitude { get; set; } | ||
} | ||
} |
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
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
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
Oops, something went wrong.