EquationHelper.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472
  1. using BHJD.DEMdll.Entity;
  2. using BHJD.DEMdll.Public;
  3. using System.Diagnostics;
  4. using static BHJD.DEMdll.Public.IHttpHelper;
  5. using Unity.Mathematics;
  6. using Newtonsoft.Json;
  7. using Newtonsoft.Json.Linq;
  8. using SJ;
  9. using Model;
  10. namespace MuShiApp
  11. {
  12. public class EquationHelper
  13. {
  14. //数据库访问类,dll有
  15. //IDbHelper _db = null;
  16. //http请求类,dll有
  17. IHttpHelper m_HttpHelper = null;
  18. public string baseUrl;
  19. public double x;
  20. public EquationHelper(string baseUrl)
  21. {
  22. this.baseUrl = baseUrl;
  23. m_HttpHelper = new HttpHelper();
  24. //this._db = db;
  25. //m_HttpHelper = Factory.Load();
  26. }
  27. //距离(km)举例
  28. double distance = 2;
  29. //能见度(km)举例
  30. double visibility = 7.5;
  31. //浪高(m)举例;陆上搜救任务可取0
  32. double WaveHeight = 1.5;
  33. //a、b、c、d、r、e均为修正系数
  34. double[] a = { 9.5128, 1.3738, 0.0875 };
  35. double[] b = { -49.6937, -13.2945, -2.5112 };
  36. double[] c = { 31.6031, 13.1456, 6.1604 };
  37. double[] d = { 95.0664, 97.0952, 94.9145 };
  38. double[][] r = new double[3][];
  39. double[][] e = new double[3][];
  40. double[] posibility = { 0, 0, 0 };
  41. public double GetMushiSeaProbability(double3 aircraftPoint, double3 targetPoint,double visibility, double wavehigh, TargetPoint targetPoint1, string type)
  42. {
  43. r[0] = new double[] { 4.375, 1.18, 1.01, 1 };
  44. r[1] = new double[] { 2.85, 1.51, 1.18, 1 };
  45. r[2] = new double[] { 2.75, 2.1, 1.2, 1 };
  46. e[0] = new double[] { -10, -30, -50, -65, -80, -90 };
  47. e[1] = new double[] { -2, -15, -30, -50, -70, -80 };
  48. e[2] = new double[] { 0, 0, -10, -20, -30, -40 };
  49. double[] posibility = { 0, 0, 0 };
  50. distance = GetDistance(aircraftPoint.x, targetPoint.x,aircraftPoint.y,targetPoint.y);
  51. WaveHeight = wavehigh;
  52. if (distance >= 0 && distance < 2)
  53. {
  54. posibility = MuShiModel.GetPosibilityClear(distance, a, b, c, d, r, e, visibility, WaveHeight);
  55. while (posibility[0] <= 0 || posibility[1] <= 0 || posibility[2] <= 0)
  56. {
  57. distance += 0.1;
  58. posibility = MuShiModel.GetPosibilityClear(distance, a, b, c, d, r, e, visibility, WaveHeight);
  59. }
  60. }
  61. if (distance >= 2)
  62. {
  63. posibility = MuShiModel.GetPosibilityFar(distance, a, b, c, d);
  64. while (posibility[0] <= 0 || posibility[1] <= 0 || posibility[2] <= 0)
  65. {
  66. distance += 0.5;
  67. posibility = MuShiModel.GetPosibilityFar(distance, a, b, c, d);
  68. }
  69. if (distance > 3.5)
  70. {
  71. posibility[0] = 0;
  72. }
  73. if (distance > 5)
  74. {
  75. posibility[1] = 0;
  76. }
  77. if (distance > 10)
  78. {
  79. posibility[2] = 0;
  80. }
  81. }
  82. if(targetPointID)
  83. return 0;
  84. }
  85. public static double GetDistance(double lon1, double lon2, double lat1, double lat2)
  86. {
  87. double R = 6371; // 地球的半径(公里)
  88. double dLat = (lat2 - lat1) * Math.PI / 180.0;
  89. double dLon = (lon2 - lon1) * Math.PI / 180.0;
  90. double a = Math.Sin(dLat / 2) * Math.Sin(dLat / 2) +
  91. Math.Cos(lat1 * Math.PI / 180.0) * Math.Cos(lat2 * Math.PI / 180.0) *
  92. Math.Sin(dLon / 2) * Math.Sin(dLon / 2);
  93. double c = 2 * Math.Atan2(Math.Sqrt(a), Math.Sqrt(1 - a));
  94. double distance = R * c;
  95. return distance;
  96. }
  97. /// <summary>
  98. ///
  99. /// </summary>
  100. /// <param name="aircraftPoint">飞机坐标</param>
  101. /// <param name="targetPoint">目标点坐标</param>
  102. /// <param name="course">航向(度数)</param>
  103. /// <param name="currentDate">(当前日期)</param>
  104. /// <param name="windspeed">风速(km/h)</param>
  105. /// <param name="wavehigh">浪高(m)</param>
  106. /// <param name="targetpye">遇险目标类型</param>
  107. /// <param name="typee">救援场景类型</param>
  108. /// <returns></returns>
  109. public double getProbability(double3 aircraftPoint, double3 targetPoint, double pb, double course, double windspeed, double wavehigh, string targetpye, string type)
  110. {
  111. try
  112. {
  113. double Cw = 1;
  114. if (windspeed > 46 && wavehigh > 1.5)
  115. {
  116. if (targetpye == "落水人员")
  117. {
  118. Cw = 0.25;
  119. }
  120. else
  121. {
  122. Cw = 0.6;
  123. }
  124. }
  125. else if (28 < windspeed && windspeed < 46 && 1 < wavehigh && wavehigh < 1.5)
  126. {
  127. if (targetpye == "船")
  128. {
  129. Cw = 0.5;
  130. }
  131. else
  132. {
  133. Cw = 0.9;
  134. }
  135. }
  136. else if (0 < windspeed && windspeed < 28 && 0 < wavehigh && wavehigh < 1)
  137. {
  138. Cw = 1;
  139. }
  140. double Cv = 1;
  141. System.Random ran = new System.Random();
  142. double x = getx(aircraftPoint, targetPoint, course);
  143. double V = 15;//getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
  144. if (V < 6)
  145. {
  146. Cv = 0.4;
  147. }
  148. else if (6 < V && V < 9)
  149. {
  150. Cv = 0.6;
  151. }
  152. else if (9 < V && V < 19)
  153. {
  154. Cv = 0.8;
  155. }
  156. else if (19 < V && V < 28)
  157. {
  158. Cv = 0.9;
  159. }
  160. else if (37 < V)
  161. {
  162. Cv = 1;
  163. }
  164. double pt = this.nextDouble(ran, 0.800, 0.999, 8);
  165. //double pb = targetPoint;//getPb(targetPoint.x, targetPoint.y);
  166. double D = 0;
  167. double C = Math.Round((double)((pt - pb) / pt), 8);
  168. if (type == "陆地")
  169. {
  170. D = (V / 3.912) * Math.Log10(C / 0.02);
  171. }
  172. else if (type == "海上")
  173. {
  174. if (targetpye == "船")
  175. { D = 31 * Cv * Cw; }
  176. else if (targetpye == "落水人员")
  177. { D = 0.2 * Cv * Cw; }
  178. }
  179. double px = 1 - Math.Exp((-1 * D * D) / (4 * Math.PI * x * x));
  180. return px;
  181. }
  182. catch (Exception ex)
  183. {
  184. Debug.Print("error!!!!!getProbability:" + ex.ToString());
  185. return -1;
  186. }
  187. }
  188. /// <summary>
  189. ///
  190. /// </summary>
  191. /// <param name="aircraftPoint">飞机坐标</param>
  192. /// <param name="targetPoint">目标点坐标</param>
  193. /// <param name="course">航向(度数)</param>
  194. /// <param name="currentDate">(当前日期)</param>
  195. /// <returns></returns>
  196. public double getProbability(double3 aircraftPoint, double3 targetPoint, double course)
  197. {
  198. try
  199. {
  200. x = getx(aircraftPoint, targetPoint, course);
  201. double V = getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
  202. System.Random ran = new System.Random();
  203. double pt = this.nextDouble(ran, 0.800, 0.999, 8);
  204. double pb = getPb(targetPoint.x, targetPoint.y);
  205. double C = Math.Round((double)((pt - pb) / pt), 8);
  206. double D = (V / 3.912) * Math.Log10(C / 0.02);
  207. double px = 1 - Math.Exp((-1 * D * D) / (4 * Math.PI * x * x));
  208. return px;
  209. }
  210. catch (Exception ex)
  211. {
  212. Console.WriteLine("error!!!!!getProbability:" + ex.ToString());
  213. return -1;
  214. }
  215. }
  216. public double getX(double3 targetPoint)
  217. {
  218. try
  219. {
  220. double result = -1;
  221. double V = getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
  222. double pt = 0.85;
  223. double pb = getPb(targetPoint.x, targetPoint.y);
  224. double C = Math.Round((double)((pt - pb) / pt), 3);
  225. double D = (V / 3.912) * Math.Log10(C / 0.02);
  226. double x = Math.Sqrt(-1 * D * D / Math.Log(1 - 0.85) / 4 / Math.PI);
  227. return x;
  228. }
  229. catch (Exception ex)
  230. {
  231. Debug.Print("error!!!!!getX:" + ex.ToString());
  232. return -1;
  233. }
  234. }
  235. private double nextDouble(System.Random ran, double minValue, double maxValue, int decimalPlace)
  236. {
  237. double randNum = ran.NextDouble() * (maxValue - minValue) + minValue;
  238. return Convert.ToDouble(randNum.ToString("f" + decimalPlace));
  239. }
  240. private double getVisibility(string city_name, string weather_date)
  241. {
  242. try
  243. {
  244. //调在线气象接口,封装到服务中了
  245. HttpCmd cmd = new HttpCmd
  246. {
  247. m_RequestType = HttpRequestType.GET,
  248. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/tbMeteorology/getInfosByNowApi",
  249. m_Args = new List<string> { "city_name", "weather_date" }
  250. };
  251. string response = m_HttpHelper.Request(cmd, new List<string> { city_name, weather_date });
  252. R data = JsonConvert.DeserializeObject<R>(response);
  253. if (data != null && data.code == 200)
  254. {
  255. NAdtListDto rt = JsonConvert.DeserializeObject<NAdtListDto>(data.data.ToString());
  256. double fl = Convert.ToDouble(rt.wtVisibility);
  257. if (fl.Equals(0))
  258. {
  259. fl = 15;
  260. }
  261. return fl;
  262. }
  263. return 15;
  264. }
  265. catch (Exception ex)
  266. {
  267. Debug.Print("error!!!!!getVisibility");
  268. Debug.Print(ex.ToString());
  269. return 15;
  270. }
  271. }
  272. //rescue-platform-service/api/v1/dem/getCityName
  273. // {
  274. // "msg": "success",
  275. // "code": 200,
  276. // "cityName": "承德市"
  277. // }
  278. private string getCityName(double lon, double lat)
  279. {
  280. string cityName = "北京";
  281. // try
  282. // {
  283. // string sql = string.Format("select a.f_xzqdm cityCode, a.f_xzqmc cityName from xzq_ds a where ST_Contains(shape,st_geomfromtext('POINT({0} {1})',4326)) limit 1", lon, lat);
  284. // DataTable dt = this._db.DoQueryEx(sql);
  285. // if (dt != null && dt.Rows.Count > 0)
  286. // {
  287. // cityName = dt.Rows[0][1].ToString().Replace("市", "").Replace("自治区", "");
  288. // }
  289. // }
  290. // catch (Exception ex)
  291. // {
  292. // Debug.Print("error!!!!!getCityName");
  293. // Debug.Print(ex.ToString());
  294. // }
  295. try
  296. {
  297. //调在线气象接口,封装到服务中了
  298. HttpCmd cmd = new HttpCmd
  299. {
  300. m_RequestType = HttpRequestType.GET,
  301. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/dem/getCityName",
  302. m_Args = new List<string> { "lon", "lat" }
  303. };
  304. string response = m_HttpHelper.Request(cmd, new List<string> { lon.ToString(), lat.ToString() });
  305. JObject jObject = JObject.Parse(response);
  306. cityName = jObject["cityName"].ToString().Replace("市", "").Replace("自治区", "");
  307. }
  308. catch (Exception ex)
  309. {
  310. Debug.Print("error!!!!!getVisibility");
  311. Debug.Print(ex.ToString());
  312. }
  313. return cityName;
  314. }
  315. //rescue-platform-service/api/v1/dem/getCategory
  316. // {
  317. // "msg": "success",
  318. // "code": 200,
  319. // "category": "7 草丛"
  320. // }
  321. public double getPb(double lon, double lat)
  322. {
  323. double pb = 0.13;
  324. try
  325. {
  326. // string sql_zb = string.Format("select f_category from ly_vegetation where ST_Contains(st_geomfromtext(st_astext(shape) ),st_geomfromtext('POINT({0} {1})'))", lon, lat);
  327. // DataTable dt_zb = _db.DoQueryEx(sql_zb);
  328. //调在线气象接口,封装到服务中了
  329. HttpCmd cmd = new HttpCmd
  330. {
  331. m_RequestType = HttpRequestType.GET,
  332. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/dem/getCategory",
  333. m_Args = new List<string> { "lon", "lat" }
  334. };
  335. string response = m_HttpHelper.Request(cmd, new List<string> { lon.ToString(), lat.ToString() });
  336. JObject jObject = JObject.Parse(response);
  337. string fcategory = jObject["category"].ToString();
  338. switch (fcategory)
  339. {
  340. case "1 针叶林":
  341. pb = 0.13;
  342. break;
  343. case "10 高山植被":
  344. pb = 0.13;
  345. break;
  346. case "11 栽培植被":
  347. pb = 0.13;
  348. break;
  349. case "2 针阔叶混交林":
  350. pb = 0.13;
  351. break;
  352. case "3 阔叶林":
  353. pb = 0.13;
  354. break;
  355. case "4 灌丛":
  356. pb = 0.13;
  357. break;
  358. case "5 荒漠":
  359. pb = 0.13;
  360. break;
  361. case "6 草原":
  362. pb = 0.13;
  363. break;
  364. case "7 草丛":
  365. pb = 0.13;
  366. break;
  367. case "8 草甸":
  368. pb = 0.13;
  369. break;
  370. case "9 沼泽":
  371. pb = 0.13;
  372. break;
  373. default:
  374. pb = 0.13;
  375. break;
  376. }
  377. }
  378. catch (Exception ex)
  379. {
  380. Debug.Print("error!!!!!getPb");
  381. Debug.Print(ex.ToString());
  382. }
  383. return pb;
  384. }
  385. //rescue-platform-service/api/v1/dem/getDistance
  386. // {
  387. // "msg": "success",
  388. // "code": 200,
  389. // "data": {
  390. // "differ": 328.31408076,
  391. // "azimuth": 2.400469679065642
  392. // }
  393. // }
  394. private double getx(double3 aircraftPoint, double3 targetPoint, double course)
  395. {
  396. double result = -1;
  397. // string sql = string.Format("select ST_Distance( ST_SetSRID(ST_MakePoint({0},{1}),4326)::geography, ST_SetSRID(ST_MakePoint({2},{3}),4326)::geography) as differ,ST_azimuth(st_geomfromtext('POINT({0} {1})'),st_geomfromtext('POINT({2} {3})')) as azimuth", aircraftPoint.x, aircraftPoint.y, targetPoint.x, targetPoint.y);
  398. // DataTable dt = _db.DoQueryEx(sql);
  399. HttpCmd cmd = new HttpCmd
  400. {
  401. m_RequestType = HttpRequestType.GET,
  402. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/dem/getDistance",
  403. m_Args = new List<string> { "lon_air", "lat_air", "lon_target", "lat_target" }
  404. };
  405. string response = m_HttpHelper.Request(cmd, new List<string> { aircraftPoint.x.ToString(), aircraftPoint.y.ToString(), targetPoint.x.ToString(), targetPoint.y.ToString() });
  406. JObject jObject = JObject.Parse(response);
  407. double differ = double.Parse(jObject["data"]["differ"].ToString());
  408. double azimuth = double.Parse(jObject["data"]["azimuth"].ToString());
  409. // differ = Convert.ToDouble(dt.Rows[0][0].ToString());
  410. azimuth = 180 / Math.PI * azimuth;//Convert.ToDouble(dt.Rows[0][1].ToString());
  411. double angle = course - azimuth;
  412. if (angle < 0)
  413. {
  414. angle = -1 * angle;
  415. }
  416. double x = differ * Math.Sin(angle * Math.PI / 180) / 1000;
  417. return x;
  418. }
  419. }
  420. }