EquationHelper.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. using BHJD.DEMdll.Entity;
  2. using BHJD.DEMdll.Public;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Data;
  6. using System.Diagnostics;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using static BHJD.DEMdll.Public.IHttpHelper;
  11. using Unity.Mathematics;
  12. using Newtonsoft.Json;
  13. using Newtonsoft.Json.Linq;
  14. namespace MuShiApp
  15. {
  16. public class EquationHelper
  17. {
  18. //数据库访问类,dll有
  19. //IDbHelper _db = null;
  20. //http请求类,dll有
  21. IHttpHelper m_HttpHelper = null;
  22. public string baseUrl;
  23. public double x;
  24. public EquationHelper(string baseUrl )
  25. {
  26. this.baseUrl = baseUrl;
  27. m_HttpHelper = new HttpHelper();
  28. //this._db = db;
  29. //m_HttpHelper = Factory.Load();
  30. }
  31. /// <summary>
  32. ///
  33. /// </summary>
  34. /// <param name="aircraftPoint">飞机坐标</param>
  35. /// <param name="targetPoint">目标点坐标</param>
  36. /// <param name="course">航向(度数)</param>
  37. /// <param name="currentDate">(当前日期)</param>
  38. /// <returns></returns>
  39. public double getProbability(double3 aircraftPoint, double3 targetPoint, double course, string currentDate)
  40. {
  41. try
  42. {
  43. x = getx(aircraftPoint, targetPoint, course);
  44. double V = getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
  45. System.Random ran = new System.Random();
  46. double pt = this.nextDouble(ran, 0.800, 0.999, 8);
  47. double pb = getPb(targetPoint.x, targetPoint.y);
  48. double C = Math.Round((double)((pt - pb) / pt), 8);
  49. double D = (V / 3.912) * Math.Log10(C / 0.02);
  50. double px = 1 - Math.Exp((-1 * D * D) / (4 * Math.PI * x * x));
  51. return px;
  52. }
  53. catch (Exception ex)
  54. {
  55. Console.WriteLine("error!!!!!getProbability:" + ex.ToString());
  56. return -1;
  57. }
  58. }
  59. public double getX(double3 targetPoint)
  60. {
  61. try
  62. {
  63. double result = -1;
  64. double V = getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
  65. double pt = 0.85;
  66. double pb = getPb(targetPoint.x, targetPoint.y);
  67. double C = Math.Round((double)((pt - pb) / pt), 3);
  68. double D = (V / 3.912) * Math.Log10(C / 0.02);
  69. double x = Math.Sqrt(-1 * D * D / Math.Log(1 - 0.85) / 4 / Math.PI);
  70. return x;
  71. }
  72. catch (Exception ex)
  73. {
  74. Debug.Print("error!!!!!getX:" + ex.ToString());
  75. return -1;
  76. }
  77. }
  78. private double nextDouble(System.Random ran, double minValue, double maxValue, int decimalPlace)
  79. {
  80. double randNum = ran.NextDouble() * (maxValue - minValue) + minValue;
  81. return Convert.ToDouble(randNum.ToString("f" + decimalPlace));
  82. }
  83. private double getVisibility(string city_name, string weather_date)
  84. {
  85. try
  86. {
  87. //调在线气象接口,封装到服务中了
  88. HttpCmd cmd = new HttpCmd
  89. {
  90. m_RequestType = HttpRequestType.GET,
  91. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/tbMeteorology/getInfosByNowApi",
  92. m_Args = new List<string> { "city_name", "weather_date" }
  93. };
  94. string response = m_HttpHelper.Request(cmd, new List<string> { city_name, weather_date });
  95. R data = JsonConvert.DeserializeObject<R>(response);
  96. if (data != null && data.code == 200)
  97. {
  98. NAdtListDto rt = JsonConvert.DeserializeObject<NAdtListDto>(data.data.ToString());
  99. double fl = Convert.ToDouble(rt.wtVisibility);
  100. if (fl.Equals(0))
  101. {
  102. fl = 15;
  103. }
  104. return fl;
  105. }
  106. return 15;
  107. }
  108. catch (Exception ex)
  109. {
  110. Debug.Print("error!!!!!getVisibility");
  111. Debug.Print(ex.ToString());
  112. return 15;
  113. }
  114. }
  115. //rescue-platform-service/api/v1/dem/getCityName
  116. // {
  117. // "msg": "success",
  118. // "code": 200,
  119. // "cityName": "承德市"
  120. // }
  121. private string getCityName(double lon, double lat)
  122. {
  123. string cityName = "北京";
  124. // try
  125. // {
  126. // 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);
  127. // DataTable dt = this._db.DoQueryEx(sql);
  128. // if (dt != null && dt.Rows.Count > 0)
  129. // {
  130. // cityName = dt.Rows[0][1].ToString().Replace("市", "").Replace("自治区", "");
  131. // }
  132. // }
  133. // catch (Exception ex)
  134. // {
  135. // Debug.Print("error!!!!!getCityName");
  136. // Debug.Print(ex.ToString());
  137. // }
  138. try
  139. {
  140. //调在线气象接口,封装到服务中了
  141. HttpCmd cmd = new HttpCmd
  142. {
  143. m_RequestType = HttpRequestType.GET,
  144. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/dem/getCityName",
  145. m_Args = new List<string> { "lon", "lat" }
  146. };
  147. string response = m_HttpHelper.Request(cmd, new List<string> { lon.ToString(), lat.ToString() });
  148. JObject jObject = JObject.Parse(response);
  149. cityName = jObject["cityName"].ToString().Replace("市", "").Replace("自治区", "");
  150. }
  151. catch (Exception ex)
  152. {
  153. Debug.Print("error!!!!!getVisibility");
  154. Debug.Print(ex.ToString());
  155. }
  156. return cityName;
  157. }
  158. //rescue-platform-service/api/v1/dem/getCategory
  159. // {
  160. // "msg": "success",
  161. // "code": 200,
  162. // "category": "7 草丛"
  163. // }
  164. private double getPb(double lon, double lat)
  165. {
  166. double pb = 0.13;
  167. try
  168. {
  169. // 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);
  170. // DataTable dt_zb = _db.DoQueryEx(sql_zb);
  171. //调在线气象接口,封装到服务中了
  172. HttpCmd cmd = new HttpCmd
  173. {
  174. m_RequestType = HttpRequestType.GET,
  175. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/dem/getCategory",
  176. m_Args = new List<string> { "lon", "lat" }
  177. };
  178. string response = m_HttpHelper.Request(cmd, new List<string> { lon.ToString(), lat.ToString() });
  179. JObject jObject = JObject.Parse(response);
  180. string fcategory = jObject["category"].ToString();
  181. switch (fcategory)
  182. {
  183. case "1 针叶林":
  184. pb = 0.13;
  185. break;
  186. case "10 高山植被":
  187. pb = 0.13;
  188. break;
  189. case "11 栽培植被":
  190. pb = 0.13;
  191. break;
  192. case "2 针阔叶混交林":
  193. pb = 0.13;
  194. break;
  195. case "3 阔叶林":
  196. pb = 0.13;
  197. break;
  198. case "4 灌丛":
  199. pb = 0.13;
  200. break;
  201. case "5 荒漠":
  202. pb = 0.13;
  203. break;
  204. case "6 草原":
  205. pb = 0.13;
  206. break;
  207. case "7 草丛":
  208. pb = 0.13;
  209. break;
  210. case "8 草甸":
  211. pb = 0.13;
  212. break;
  213. case "9 沼泽":
  214. pb = 0.13;
  215. break;
  216. default:
  217. pb = 0.13;
  218. break;
  219. }
  220. }
  221. catch (Exception ex)
  222. {
  223. Debug.Print("error!!!!!getPb");
  224. Debug.Print(ex.ToString());
  225. }
  226. return pb;
  227. }
  228. //rescue-platform-service/api/v1/dem/getDistance
  229. // {
  230. // "msg": "success",
  231. // "code": 200,
  232. // "data": {
  233. // "differ": 328.31408076,
  234. // "azimuth": 2.400469679065642
  235. // }
  236. // }
  237. private double getx(double3 aircraftPoint, double3 targetPoint, double course)
  238. {
  239. double result = -1;
  240. // 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);
  241. // DataTable dt = _db.DoQueryEx(sql);
  242. HttpCmd cmd = new HttpCmd
  243. {
  244. m_RequestType = HttpRequestType.GET,
  245. m_Addr = $"{baseUrl}rescue-platform-service/api/v1/dem/getDistance",
  246. m_Args = new List<string> { "lon_air", "lat_air","lon_target","lat_target" }
  247. };
  248. string response = m_HttpHelper.Request(cmd, new List<string> {aircraftPoint.x.ToString(), aircraftPoint.y.ToString(), targetPoint.x.ToString(), targetPoint.y.ToString()});
  249. JObject jObject = JObject.Parse(response);
  250. double differ = double.Parse(jObject["data"]["differ"].ToString());
  251. double azimuth = double.Parse(jObject["data"]["azimuth"].ToString());
  252. // differ = Convert.ToDouble(dt.Rows[0][0].ToString());
  253. azimuth = 180 / Math.PI * azimuth;//Convert.ToDouble(dt.Rows[0][1].ToString());
  254. double angle = course - azimuth;
  255. if (angle < 0)
  256. {
  257. angle = -1 * angle;
  258. }
  259. double x = differ * Math.Sin(angle * Math.PI / 180) / 1000;
  260. return x;
  261. }
  262. }
  263. }