SeaSJ.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. using OpenCvSharp;
  2. namespace SimulationCommon;
  3. public class WeatherResponse
  4. {
  5. public Wind Wind { get; set; }
  6. }
  7. public class Wind
  8. {
  9. public double Speed { get; set; }
  10. public double Deg { get; set; }
  11. }
  12. public class CurrentResponse
  13. {
  14. public Current Current { get; set; }
  15. }
  16. public class Current
  17. {
  18. public double Speed { get; set; }
  19. public double Direction { get; set; }
  20. }
  21. public class SeaSJ
  22. {
  23. // 生成符合正态分布的随机数
  24. public static double NormalDistributionRandom(double mu, double sigma)
  25. {
  26. Random rand = new Random();
  27. double u1 = 1.0 - rand.NextDouble(); // uniform(0,1] random doubles
  28. double u2 = 1.0 - rand.NextDouble();
  29. double normalRandom = Math.Sqrt(-2.0 * Math.Log(u1)) * Math.Sin(2.0 * Math.PI * u2); // random normal(0,1)
  30. return mu + sigma * normalRandom; // random normal(mean,stdDev^2)
  31. }
  32. // 交付类方法
  33. public static List<double[]> GetDrift(double[] initialPosition, double dt, double totalTime)
  34. {
  35. // run 获取轨迹的函数
  36. // initialPosition --> 初始位置; dt --> 时间步长; totalTime --> 总时长
  37. List<double[]> trajectory = CalculateDriftTrajectory(initialPosition, dt, totalTime);
  38. return trajectory;
  39. }
  40. public static List<double[]> CalculateDriftTrajectory(double[] initialPosition, double dt, double totalTime)
  41. {
  42. int timeSteps = (int)(totalTime / dt);
  43. List<double[]> trajectory = new List<double[]>();
  44. trajectory.Add(new double[] { initialPosition[0], initialPosition[1] });
  45. for (int t = 1; t < timeSteps; t++)
  46. {
  47. double[] currentPos = trajectory[t - 1];
  48. // 动态获取当前位置的风力和洋流数据
  49. double[] windVelocity = GetWindVelocityFromAPI(currentPos[0], currentPos[1], t);
  50. double[] currentVelocity = GetCurrentVelocityFromAPI(currentPos[0], currentPos[1], t);
  51. // 计算漂移速度
  52. double[] driftVelocity =
  53. {
  54. currentVelocity[0] + windVelocity[0],
  55. currentVelocity[1] + windVelocity[1]
  56. };
  57. // 更新位置(假设漂移速度是海里每小时,需要转换成经纬度的变化量)
  58. double[] newPosition =
  59. {
  60. currentPos[0] + (driftVelocity[0] * dt / 60.0), // 纬度变化量
  61. currentPos[1] + (driftVelocity[1] * dt / 60.0) // 经度变化量
  62. };
  63. trajectory.Add(newPosition);
  64. }
  65. return trajectory;
  66. }
  67. public static double[] GetWindVelocityFromAPI(double latitude, double longitude, int time)
  68. {
  69. // 风力数据来自于 double latitude, double longitude, string time
  70. WeatherResponse weatherResponse = new WeatherResponse() { };
  71. double windSpeed = weatherResponse.Wind.Speed;
  72. double windDirection = weatherResponse.Wind.Deg;
  73. // 将风速和风向转换为X和Y分量(单位:海里每小时)
  74. double windSpeedInKnots = windSpeed / 1.852;
  75. double windDirectionInRadians = windDirection * (Math.PI / 180);
  76. double windX = windSpeedInKnots * Math.Cos(windDirectionInRadians);
  77. double windY = windSpeedInKnots * Math.Sin(windDirectionInRadians);
  78. return new double[] { windX, windY };
  79. }
  80. public static double[] GetCurrentVelocityFromAPI(double latitude, double longitude, int time)
  81. {
  82. // 洋流数据来自于 double latitude, double longitude, string time
  83. CurrentResponse currentResponse = new CurrentResponse() { };
  84. double currentSpeed = currentResponse.Current.Speed;
  85. double currentDirection = currentResponse.Current.Direction;
  86. // 将洋流速度和方向转换为X和Y分量(单位:海里每小时)
  87. double currentSpeedInKnots = currentSpeed / 1.852;
  88. double currentDirectionInRadians = currentDirection * (Math.PI / 180);
  89. double currentX = currentSpeedInKnots * Math.Cos(currentDirectionInRadians);
  90. double currentY = currentSpeedInKnots * Math.Sin(currentDirectionInRadians);
  91. return new double[] { currentX, currentY };
  92. }
  93. // 交付部分方法代码
  94. public static Tuple<Point2f[], double> getminEnclosingRect(List<Tuple<double, double>> latLonList)
  95. {
  96. // 转换经纬度为墨卡托投影坐标,并添加到点集合
  97. List<Point2f> pointList = new List<Point2f>();
  98. foreach (var latLon in latLonList)
  99. {
  100. double x = Rectangular_Area_Search_Function.MokatuoLat(latLon.Item1);
  101. double y = Rectangular_Area_Search_Function.MokatuoLon(latLon.Item2);
  102. pointList.Add(new Point2f((float)x, (float)y));
  103. }
  104. // 获取凸包
  105. Point2f[] convexHull = Rectangular_Area_Search_Function.GetConvexHull(pointList);
  106. // 计算最小包围矩形
  107. Tuple<Point2f[], double> minEnclosingRect = Rectangular_Area_Search_Function.MinEnclosingRectangle(convexHull);
  108. return minEnclosingRect;
  109. }
  110. }