12345678910111213141516171819202122232425262728293031323334353637 |
- using Newtonsoft.Json;
- namespace Model;
- public class TurningPoint //类中删除了转弯半径
- {
- public string TurningPointName;
- public double TurningPointLongitude;
- public double TurningPointLatitude;
- public double TurningPointHeight;
- public string TurningPointType;
- public double SegmentFlightFuelConsumption;
- public double SegmentFlightTime;
- public double RemainingFuel; //新添加了当前剩余油量
- public TurningPoint[] turningpoint;
- }
- //
- public class MissionEndPoint
- {
- public double MissionEndPointLongitude;
- public double MissionEndPointLatitude;
- public double MissionEndPointHeight;
- public MissionEndPoint missionendpoint;
- }
- //
- public class CurrentLocation
- {
- public double CurrentLon;
- public double CurrentLat;
- public double CurrentHei;
- public double Currentvelo;
- public double CurrentFuel;
- public double CurrentCourse;//添加了当前航向
- public int Currentsegnum;//添加了当前航段数
- }
|