Point3D.cs 195 B

12345678
  1. namespace SimulationCommon;
  2. public class Point3D
  3. {
  4. public double Lon { get; set; } // 经度
  5. public double Lat { get; set; } // 纬度
  6. public double Z { get; set; } // 高度
  7. }