12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Library.Entity
- {
- public enum EphType
- {
- [Description("双行根")]
- Tle = 0,
- [Description("高精度")]
- High = 1
- //[Description("高精度双行根")]
- //TleHigh = 20,
- //[Description("地理坐标")]
- //Coord = 30,
- //[Description("长基线")]
- //VLBI = 40,
- //[Description("光学星历")]
- //GDGC = 50
- }
- }
|