using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DW5S.KxcApi { /// /// 对应地图上一个点 /// public class MapDot { public MapDot() { } public MapDot(double lon, double lat, double alt) { this.Lon = lon; this.Lat = lat; this.Alt = alt; } public double Lon { get; set; } public double Lat { get; set; } public double Alt { get; set; } } public class ErrDistanceMapPoints { public double ErrDistance { get; set; }//单位m public string ErrDistanceKm => $"{ErrDistance / 1e3}km"; public List<(double lon, double lat)> MapDots { get; set; } = new List<(double lon, double lat)>(); } public class MapSatInfo { public int? SatCode { get; set; } public double SatLon { get; set; } public double SatLat { get; set; } } }