EphType.cs 572 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ips.Library.Entity
  8. {
  9. public enum EphType
  10. {
  11. [Description("双行根")]
  12. Tle = 0,
  13. [Description("高精度")]
  14. High = 1
  15. //[Description("高精度双行根")]
  16. //TleHigh = 20,
  17. //[Description("地理坐标")]
  18. //Coord = 30,
  19. //[Description("长基线")]
  20. //VLBI = 40,
  21. //[Description("光学星历")]
  22. //GDGC = 50
  23. }
  24. }