EquationHelper.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  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. namespace MuShiApp
  9. {
  10. public class EquationHelper
  11. {
  12. //数据库访问类,dll有
  13. //IDbHelper _db = null;
  14. //http请求类,dll有
  15. IHttpHelper m_HttpHelper = null;
  16. public string baseUrl;
  17. public double x;
  18. public EquationHelper(string baseUrl )
  19. {
  20. this.baseUrl = baseUrl;
  21. m_HttpHelper = new HttpHelper();
  22. //this._db = db;
  23. //m_HttpHelper = Factory.Load();
  24. }
  25. /// <summary>
  26. ///
  27. /// </summary>
  28. /// <param name="aircraftPoint">飞机坐标</param>
  29. /// <param name="targetPoint">目标点坐标</param>
  30. /// <param name="course">航向(度数)</param>
  31. /// <param name="currentDate">(当前日期)</param>
  32. /// <param name="windspeed">风速(km/h)</param>
  33. /// <param name="wavehigh">浪高(m)</param>
  34. /// <param name="targetpye">遇险目标类型</param>
  35. /// <param name="typee">救援场景类型</param>
  36. /// <returns></returns>
  37. public double getProbability(double3 aircraftPoint, double3 targetPoint, double course,double windspeed, double wavehigh, string targetpye, string type)
  38. {
  39. try
  40. {
  41. double Cw = 1;
  42. if (windspeed > 46 && wavehigh > 1.5)
  43. {
  44. if (targetpye == "落水人员")
  45. {
  46. Cw = 0.25;
  47. }
  48. else
  49. {
  50. Cw = 0.6;
  51. }
  52. }
  53. else if (28 < windspeed && windspeed < 46 && 1 < wavehigh && wavehigh < 1.5)
  54. {
  55. if (targetpye == "船")
  56. {
  57. Cw = 0.5;
  58. }
  59. else
  60. {
  61. Cw = 0.9;
  62. }
  63. }
  64. else if (0 < windspeed && windspeed < 28 && 0 < wavehigh && wavehigh < 1)
  65. {
  66. Cw = 1;
  67. }
  68. double Cv = 1;
  69. System.Random ran = new System.Random();
  70. double x = getx(aircraftPoint, targetPoint, course);
  71. double V = 15;//getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
  72. if (V < 6)
  73. {
  74. Cv = 0.4;
  75. }
  76. else if (6 < V && V < 9)
  77. {
  78. Cv = 0.6;
  79. }
  80. else if (9 < V && V < 19)
  81. {
  82. Cv = 0.8;
  83. }
  84. else if (19 < V && V < 28)
  85. {
  86. Cv = 0.9;
  87. }
  88. else if (37 < V)
  89. {
  90. Cv = 1;
  91. }
  92. double pt = this.nextDouble(ran, 0.800, 0.999, 8);
  93. double pb = getPb(targetPoint.x, targetPoint.y);
  94. double D = 0;
  95. double C = Math.Round((double)((pt - pb) / pt), 8);
  96. if(type =="陆地")
  97. {
  98. D = (V / 3.912) * Math.Log10(C / 0.02);
  99. }
  100. else if(type =="海上")
  101. {
  102. if(targetpye == "船")
  103. { D = 31*Cv*Cw; }
  104. else if(targetpye == "落水人员")
  105. { D =0.2 * Cv * Cw; }
  106. }
  107. double px = 1 - Math.Exp((-1 * D * D) / (4 * Math.PI * x * x));
  108. return px;
  109. }
  110. catch (Exception ex)
  111. {
  112. Debug.Print("error!!!!!getProbability:" + ex.ToString());
  113. return -1;
  114. }
  115. }
  116. /// <summary>
  117. ///
  118. /// </summary>
  119. /// <param name="aircraftPoint">飞机坐标</param>
  120. /// <param name="targetPoint">目标点坐标</param>
  121. /// <param name="course">航向(度数)</param>
  122. /// <param name="currentDate">(当前日期)</param>
  123. /// <returns></returns>
  124. public double getProbability(double3 aircraftPoint, double3 targetPoint, double course)
  125. {
  126. try
  127. {
  128. x = getx(aircraftPoint, targetPoint, course);
  129. double V = getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
  130. System.Random ran = new System.Random();
  131. double pt = this.nextDouble(ran, 0.800, 0.999, 8);
  132. double pb = getPb(targetPoint.x, targetPoint.y);
  133. double C = Math.Round((double)((pt - pb) / pt), 8);
  134. double D = (V / 3.912) * Math.Log10(C / 0.02);
  135. double px = 1 - Math.Exp((-1 * D * D) / (4 * Math.PI * x * x));
  136. return px;
  137. }
  138. catch (Exception ex)
  139. {
  140. Console.WriteLine("error!!!!!getProbability:" + ex.ToString());
  141. return -1;
  142. }
  143. }
  144. public double getX(double3 targetPoint)
  145. {
  146. try
  147. {
  148. double result = -1;
  149. double V = getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
  150. double pt = 0.85;
  151. double pb = getPb(targetPoint.x, targetPoint.y);
  152. double C = Math.Round((double)((pt - pb) / pt), 3);
  153. double D = (V / 3.912) * Math.Log10(C / 0.02);
  154. double x = Math.Sqrt(-1 * D * D / Math.Log(1 - 0.85) / 4 / Math.PI);
  155. return x;
  156. }
  157. catch (Exception ex)
  158. {
  159. Debug.Print("error!!!!!getX:" + ex.ToString());
  160. return -1;
  161. }
  162. }
  163. private double nextDouble(System.Random ran, double minValue, double maxValue, int decimalPlace)
  164. {
  165. double randNum = ran.NextDouble() * (maxValue - minValue) + minValue;
  166. return Convert.ToDouble(randNum.ToString("f" + decimalPlace));
  167. }
  168. private double getVisibility(string city_name, string weather_date)
  169. {
  170. try
  171. {
  172. //调在线气象接口,封装到服务中了
  173. HttpCmd cmd = new HttpCmd
  174. {
  175. m_RequestType = HttpRequestType.GET,
  176. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/tbMeteorology/getInfosByNowApi",
  177. m_Args = new List<string> { "city_name", "weather_date" }
  178. };
  179. string response = m_HttpHelper.Request(cmd, new List<string> { city_name, weather_date });
  180. R data = JsonConvert.DeserializeObject<R>(response);
  181. if (data != null && data.code == 200)
  182. {
  183. NAdtListDto rt = JsonConvert.DeserializeObject<NAdtListDto>(data.data.ToString());
  184. double fl = Convert.ToDouble(rt.wtVisibility);
  185. if (fl.Equals(0))
  186. {
  187. fl = 15;
  188. }
  189. return fl;
  190. }
  191. return 15;
  192. }
  193. catch (Exception ex)
  194. {
  195. Debug.Print("error!!!!!getVisibility");
  196. Debug.Print(ex.ToString());
  197. return 15;
  198. }
  199. }
  200. //rescue-platform-service/api/v1/dem/getCityName
  201. // {
  202. // "msg": "success",
  203. // "code": 200,
  204. // "cityName": "承德市"
  205. // }
  206. private string getCityName(double lon, double lat)
  207. {
  208. string cityName = "北京";
  209. // try
  210. // {
  211. // 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);
  212. // DataTable dt = this._db.DoQueryEx(sql);
  213. // if (dt != null && dt.Rows.Count > 0)
  214. // {
  215. // cityName = dt.Rows[0][1].ToString().Replace("市", "").Replace("自治区", "");
  216. // }
  217. // }
  218. // catch (Exception ex)
  219. // {
  220. // Debug.Print("error!!!!!getCityName");
  221. // Debug.Print(ex.ToString());
  222. // }
  223. try
  224. {
  225. //调在线气象接口,封装到服务中了
  226. HttpCmd cmd = new HttpCmd
  227. {
  228. m_RequestType = HttpRequestType.GET,
  229. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/dem/getCityName",
  230. m_Args = new List<string> { "lon", "lat" }
  231. };
  232. string response = m_HttpHelper.Request(cmd, new List<string> { lon.ToString(), lat.ToString() });
  233. JObject jObject = JObject.Parse(response);
  234. cityName = jObject["cityName"].ToString().Replace("市", "").Replace("自治区", "");
  235. }
  236. catch (Exception ex)
  237. {
  238. Debug.Print("error!!!!!getVisibility");
  239. Debug.Print(ex.ToString());
  240. }
  241. return cityName;
  242. }
  243. //rescue-platform-service/api/v1/dem/getCategory
  244. // {
  245. // "msg": "success",
  246. // "code": 200,
  247. // "category": "7 草丛"
  248. // }
  249. private double getPb(double lon, double lat)
  250. {
  251. double pb = 0.13;
  252. try
  253. {
  254. // 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);
  255. // DataTable dt_zb = _db.DoQueryEx(sql_zb);
  256. //调在线气象接口,封装到服务中了
  257. HttpCmd cmd = new HttpCmd
  258. {
  259. m_RequestType = HttpRequestType.GET,
  260. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/dem/getCategory",
  261. m_Args = new List<string> { "lon", "lat" }
  262. };
  263. string response = m_HttpHelper.Request(cmd, new List<string> { lon.ToString(), lat.ToString() });
  264. JObject jObject = JObject.Parse(response);
  265. string fcategory = jObject["category"].ToString();
  266. switch (fcategory)
  267. {
  268. case "1 针叶林":
  269. pb = 0.13;
  270. break;
  271. case "10 高山植被":
  272. pb = 0.13;
  273. break;
  274. case "11 栽培植被":
  275. pb = 0.13;
  276. break;
  277. case "2 针阔叶混交林":
  278. pb = 0.13;
  279. break;
  280. case "3 阔叶林":
  281. pb = 0.13;
  282. break;
  283. case "4 灌丛":
  284. pb = 0.13;
  285. break;
  286. case "5 荒漠":
  287. pb = 0.13;
  288. break;
  289. case "6 草原":
  290. pb = 0.13;
  291. break;
  292. case "7 草丛":
  293. pb = 0.13;
  294. break;
  295. case "8 草甸":
  296. pb = 0.13;
  297. break;
  298. case "9 沼泽":
  299. pb = 0.13;
  300. break;
  301. default:
  302. pb = 0.13;
  303. break;
  304. }
  305. }
  306. catch (Exception ex)
  307. {
  308. Debug.Print("error!!!!!getPb");
  309. Debug.Print(ex.ToString());
  310. }
  311. return pb;
  312. }
  313. //rescue-platform-service/api/v1/dem/getDistance
  314. // {
  315. // "msg": "success",
  316. // "code": 200,
  317. // "data": {
  318. // "differ": 328.31408076,
  319. // "azimuth": 2.400469679065642
  320. // }
  321. // }
  322. private double getx(double3 aircraftPoint, double3 targetPoint, double course)
  323. {
  324. double result = -1;
  325. // 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);
  326. // DataTable dt = _db.DoQueryEx(sql);
  327. HttpCmd cmd = new HttpCmd
  328. {
  329. m_RequestType = HttpRequestType.GET,
  330. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/dem/getDistance",
  331. m_Args = new List<string> { "lon_air", "lat_air","lon_target","lat_target" }
  332. };
  333. string response = m_HttpHelper.Request(cmd, new List<string> {aircraftPoint.x.ToString(), aircraftPoint.y.ToString(), targetPoint.x.ToString(), targetPoint.y.ToString()});
  334. JObject jObject = JObject.Parse(response);
  335. double differ = double.Parse(jObject["data"]["differ"].ToString());
  336. double azimuth = double.Parse(jObject["data"]["azimuth"].ToString());
  337. // differ = Convert.ToDouble(dt.Rows[0][0].ToString());
  338. azimuth = 180 / Math.PI * azimuth;//Convert.ToDouble(dt.Rows[0][1].ToString());
  339. double angle = course - azimuth;
  340. if (angle < 0)
  341. {
  342. angle = -1 * angle;
  343. }
  344. double x = differ * Math.Sin(angle * Math.PI / 180) / 1000;
  345. return x;
  346. }
  347. }
  348. }