Define.cs 996 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using Newtonsoft.Json;
  2. namespace Model;
  3. public class TurningPoint //类中删除了转弯半径
  4. {
  5. public string TurningPointName;
  6. public double TurningPointLongitude;
  7. public double TurningPointLatitude;
  8. public double TurningPointHeight;
  9. public string TurningPointType;
  10. public double SegmentFlightFuelConsumption;
  11. public double SegmentFlightTime;
  12. public double RemainingFuel; //新添加了当前剩余油量
  13. public TurningPoint[] turningpoint;
  14. }
  15. //
  16. public class MissionEndPoint
  17. {
  18. public double MissionEndPointLongitude;
  19. public double MissionEndPointLatitude;
  20. public double MissionEndPointHeight;
  21. public MissionEndPoint missionendpoint;
  22. }
  23. //
  24. public class CurrentLocation
  25. {
  26. public double CurrentLon;
  27. public double CurrentLat;
  28. public double CurrentHei;
  29. public double Currentvelo;
  30. public double CurrentFuel;
  31. public double CurrentCourse;//添加了当前航向
  32. public int Currentsegnum;//添加了当前航段数
  33. }