EquationHelper.cs 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  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. return 0;
  83. }
  84. public static double GetDistance(double lon1, double lon2, double lat1, double lat2)
  85. {
  86. double R = 6371; // 地球的半径(公里)
  87. double dLat = (lat2 - lat1) * Math.PI / 180.0;
  88. double dLon = (lon2 - lon1) * Math.PI / 180.0;
  89. double a = Math.Sin(dLat / 2) * Math.Sin(dLat / 2) +
  90. Math.Cos(lat1 * Math.PI / 180.0) * Math.Cos(lat2 * Math.PI / 180.0) *
  91. Math.Sin(dLon / 2) * Math.Sin(dLon / 2);
  92. double c = 2 * Math.Atan2(Math.Sqrt(a), Math.Sqrt(1 - a));
  93. double distance = R * c;
  94. return distance;
  95. }
  96. /// <summary>
  97. ///
  98. /// </summary>
  99. /// <param name="aircraftPoint">飞机坐标</param>
  100. /// <param name="targetPoint">目标点坐标</param>
  101. /// <param name="course">航向(度数)</param>
  102. /// <param name="currentDate">(当前日期)</param>
  103. /// <param name="windspeed">风速(km/h)</param>
  104. /// <param name="wavehigh">浪高(m)</param>
  105. /// <param name="targetpye">遇险目标类型</param>
  106. /// <param name="typee">救援场景类型</param>
  107. /// <returns></returns>
  108. public double getProbability(double3 aircraftPoint, double3 targetPoint, double pb, double course, double windspeed, double wavehigh, string targetpye, string type)
  109. {
  110. try
  111. {
  112. double Cw = 1;
  113. if (windspeed > 46 && wavehigh > 1.5)
  114. {
  115. if (targetpye == "落水人员")
  116. {
  117. Cw = 0.25;
  118. }
  119. else
  120. {
  121. Cw = 0.6;
  122. }
  123. }
  124. else if (28 < windspeed && windspeed < 46 && 1 < wavehigh && wavehigh < 1.5)
  125. {
  126. if (targetpye == "船")
  127. {
  128. Cw = 0.5;
  129. }
  130. else
  131. {
  132. Cw = 0.9;
  133. }
  134. }
  135. else if (0 < windspeed && windspeed < 28 && 0 < wavehigh && wavehigh < 1)
  136. {
  137. Cw = 1;
  138. }
  139. double Cv = 1;
  140. System.Random ran = new System.Random();
  141. double x = getx(aircraftPoint, targetPoint, course);
  142. double V = 15;//getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
  143. if (V < 6)
  144. {
  145. Cv = 0.4;
  146. }
  147. else if (6 < V && V < 9)
  148. {
  149. Cv = 0.6;
  150. }
  151. else if (9 < V && V < 19)
  152. {
  153. Cv = 0.8;
  154. }
  155. else if (19 < V && V < 28)
  156. {
  157. Cv = 0.9;
  158. }
  159. else if (37 < V)
  160. {
  161. Cv = 1;
  162. }
  163. double pt = this.nextDouble(ran, 0.800, 0.999, 8);
  164. //double pb = targetPoint;//getPb(targetPoint.x, targetPoint.y);
  165. double D = 0;
  166. double C = Math.Round((double)((pt - pb) / pt), 8);
  167. if (type == "陆地")
  168. {
  169. D = (V / 3.912) * Math.Log10(C / 0.02);
  170. }
  171. else if (type == "海上")
  172. {
  173. if (targetpye == "船")
  174. { D = 31 * Cv * Cw; }
  175. else if (targetpye == "落水人员")
  176. { D = 0.2 * Cv * Cw; }
  177. }
  178. double px = 1 - Math.Exp((-1 * D * D) / (4 * Math.PI * x * x));
  179. return px;
  180. }
  181. catch (Exception ex)
  182. {
  183. Debug.Print("error!!!!!getProbability:" + ex.ToString());
  184. return -1;
  185. }
  186. }
  187. /// <summary>
  188. ///
  189. /// </summary>
  190. /// <param name="aircraftPoint">飞机坐标</param>
  191. /// <param name="targetPoint">目标点坐标</param>
  192. /// <param name="course">航向(度数)</param>
  193. /// <param name="currentDate">(当前日期)</param>
  194. /// <returns></returns>
  195. public double getProbability(double3 aircraftPoint, double3 targetPoint, double course)
  196. {
  197. try
  198. {
  199. x = getx(aircraftPoint, targetPoint, course);
  200. double V = getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
  201. System.Random ran = new System.Random();
  202. double pt = this.nextDouble(ran, 0.800, 0.999, 8);
  203. double pb = getPb(targetPoint.x, targetPoint.y);
  204. double C = Math.Round((double)((pt - pb) / pt), 8);
  205. double D = (V / 3.912) * Math.Log10(C / 0.02);
  206. double px = 1 - Math.Exp((-1 * D * D) / (4 * Math.PI * x * x));
  207. return px;
  208. }
  209. catch (Exception ex)
  210. {
  211. Console.WriteLine("error!!!!!getProbability:" + ex.ToString());
  212. return -1;
  213. }
  214. }
  215. public double getX(double3 targetPoint)
  216. {
  217. try
  218. {
  219. double result = -1;
  220. double V = getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
  221. double pt = 0.85;
  222. double pb = getPb(targetPoint.x, targetPoint.y);
  223. double C = Math.Round((double)((pt - pb) / pt), 3);
  224. double D = (V / 3.912) * Math.Log10(C / 0.02);
  225. double x = Math.Sqrt(-1 * D * D / Math.Log(1 - 0.85) / 4 / Math.PI);
  226. return x;
  227. }
  228. catch (Exception ex)
  229. {
  230. Debug.Print("error!!!!!getX:" + ex.ToString());
  231. return -1;
  232. }
  233. }
  234. private double nextDouble(System.Random ran, double minValue, double maxValue, int decimalPlace)
  235. {
  236. double randNum = ran.NextDouble() * (maxValue - minValue) + minValue;
  237. return Convert.ToDouble(randNum.ToString("f" + decimalPlace));
  238. }
  239. private double getVisibility(string city_name, string weather_date)
  240. {
  241. try
  242. {
  243. //调在线气象接口,封装到服务中了
  244. HttpCmd cmd = new HttpCmd
  245. {
  246. m_RequestType = HttpRequestType.GET,
  247. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/tbMeteorology/getInfosByNowApi",
  248. m_Args = new List<string> { "city_name", "weather_date" }
  249. };
  250. string response = m_HttpHelper.Request(cmd, new List<string> { city_name, weather_date });
  251. R data = JsonConvert.DeserializeObject<R>(response);
  252. if (data != null && data.code == 200)
  253. {
  254. NAdtListDto rt = JsonConvert.DeserializeObject<NAdtListDto>(data.data.ToString());
  255. double fl = Convert.ToDouble(rt.wtVisibility);
  256. if (fl.Equals(0))
  257. {
  258. fl = 15;
  259. }
  260. return fl;
  261. }
  262. return 15;
  263. }
  264. catch (Exception ex)
  265. {
  266. Debug.Print("error!!!!!getVisibility");
  267. Debug.Print(ex.ToString());
  268. return 15;
  269. }
  270. }
  271. //rescue-platform-service/api/v1/dem/getCityName
  272. // {
  273. // "msg": "success",
  274. // "code": 200,
  275. // "cityName": "承德市"
  276. // }
  277. private string getCityName(double lon, double lat)
  278. {
  279. string cityName = "北京";
  280. // try
  281. // {
  282. // 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);
  283. // DataTable dt = this._db.DoQueryEx(sql);
  284. // if (dt != null && dt.Rows.Count > 0)
  285. // {
  286. // cityName = dt.Rows[0][1].ToString().Replace("市", "").Replace("自治区", "");
  287. // }
  288. // }
  289. // catch (Exception ex)
  290. // {
  291. // Debug.Print("error!!!!!getCityName");
  292. // Debug.Print(ex.ToString());
  293. // }
  294. try
  295. {
  296. //调在线气象接口,封装到服务中了
  297. HttpCmd cmd = new HttpCmd
  298. {
  299. m_RequestType = HttpRequestType.GET,
  300. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/dem/getCityName",
  301. m_Args = new List<string> { "lon", "lat" }
  302. };
  303. string response = m_HttpHelper.Request(cmd, new List<string> { lon.ToString(), lat.ToString() });
  304. JObject jObject = JObject.Parse(response);
  305. cityName = jObject["cityName"].ToString().Replace("市", "").Replace("自治区", "");
  306. }
  307. catch (Exception ex)
  308. {
  309. Debug.Print("error!!!!!getVisibility");
  310. Debug.Print(ex.ToString());
  311. }
  312. return cityName;
  313. }
  314. //rescue-platform-service/api/v1/dem/getCategory
  315. // {
  316. // "msg": "success",
  317. // "code": 200,
  318. // "category": "7 草丛"
  319. // }
  320. public double getPb(double lon, double lat)
  321. {
  322. double pb = 0.13;
  323. try
  324. {
  325. // 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);
  326. // DataTable dt_zb = _db.DoQueryEx(sql_zb);
  327. //调在线气象接口,封装到服务中了
  328. HttpCmd cmd = new HttpCmd
  329. {
  330. m_RequestType = HttpRequestType.GET,
  331. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/dem/getCategory",
  332. m_Args = new List<string> { "lon", "lat" }
  333. };
  334. string response = m_HttpHelper.Request(cmd, new List<string> { lon.ToString(), lat.ToString() });
  335. JObject jObject = JObject.Parse(response);
  336. string fcategory = jObject["category"].ToString();
  337. switch (fcategory)
  338. {
  339. case "1 针叶林":
  340. pb = 0.13;
  341. break;
  342. case "10 高山植被":
  343. pb = 0.13;
  344. break;
  345. case "11 栽培植被":
  346. pb = 0.13;
  347. break;
  348. case "2 针阔叶混交林":
  349. pb = 0.13;
  350. break;
  351. case "3 阔叶林":
  352. pb = 0.13;
  353. break;
  354. case "4 灌丛":
  355. pb = 0.13;
  356. break;
  357. case "5 荒漠":
  358. pb = 0.13;
  359. break;
  360. case "6 草原":
  361. pb = 0.13;
  362. break;
  363. case "7 草丛":
  364. pb = 0.13;
  365. break;
  366. case "8 草甸":
  367. pb = 0.13;
  368. break;
  369. case "9 沼泽":
  370. pb = 0.13;
  371. break;
  372. default:
  373. pb = 0.13;
  374. break;
  375. }
  376. }
  377. catch (Exception ex)
  378. {
  379. Debug.Print("error!!!!!getPb");
  380. Debug.Print(ex.ToString());
  381. }
  382. return pb;
  383. }
  384. //rescue-platform-service/api/v1/dem/getDistance
  385. // {
  386. // "msg": "success",
  387. // "code": 200,
  388. // "data": {
  389. // "differ": 328.31408076,
  390. // "azimuth": 2.400469679065642
  391. // }
  392. // }
  393. private double getx(double3 aircraftPoint, double3 targetPoint, double course)
  394. {
  395. double result = -1;
  396. // 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);
  397. // DataTable dt = _db.DoQueryEx(sql);
  398. HttpCmd cmd = new HttpCmd
  399. {
  400. m_RequestType = HttpRequestType.GET,
  401. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/dem/getDistance",
  402. m_Args = new List<string> { "lon_air", "lat_air", "lon_target", "lat_target" }
  403. };
  404. string response = m_HttpHelper.Request(cmd, new List<string> { aircraftPoint.x.ToString(), aircraftPoint.y.ToString(), targetPoint.x.ToString(), targetPoint.y.ToString() });
  405. JObject jObject = JObject.Parse(response);
  406. double differ = double.Parse(jObject["data"]["differ"].ToString());
  407. double azimuth = double.Parse(jObject["data"]["azimuth"].ToString());
  408. // differ = Convert.ToDouble(dt.Rows[0][0].ToString());
  409. azimuth = 180 / Math.PI * azimuth;//Convert.ToDouble(dt.Rows[0][1].ToString());
  410. double angle = course - azimuth;
  411. if (angle < 0)
  412. {
  413. angle = -1 * angle;
  414. }
  415. double x = differ * Math.Sin(angle * Math.PI / 180) / 1000;
  416. return x;
  417. }
  418. }
  419. }