using System; using System.Collections.Generic; using System.Text; namespace Ips.Library.Entity { /// /// 定位参数项 /// public class PstItemOptions { /// /// 主星位置 /// public GeoXYZ MainPlaGeo { get; set; } /// /// 邻星位置 /// public GeoXYZ AdjaPlaGeo { get; set; } /// /// 主星接收位置 /// public GeoLLA MainRecvGeo { get; set; } /// /// 邻星接收位置 /// public GeoLLA AdjaRecvGeo { get; set; } /// /// 目标信号相关结果 /// public CorResult TarCrResult { get; set; } /// /// 参考信号位置 /// public GeoLLA RftGeo { get; set; } /// /// 主星参考相关结果 /// public CorResult MainRfCrResult { get; set; } /// /// 邻星参考相关结果 /// public CorResult AdjaRfCrResult { get; set; } } }