|
@@ -5,6 +5,8 @@ using static BHJD.DEMdll.Public.IHttpHelper;
|
|
|
using Unity.Mathematics;
|
|
|
using Newtonsoft.Json;
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
+using SJ;
|
|
|
+using Model;
|
|
|
|
|
|
namespace MuShiApp
|
|
|
{
|
|
@@ -16,16 +18,102 @@ namespace MuShiApp
|
|
|
IHttpHelper m_HttpHelper = null;
|
|
|
|
|
|
public string baseUrl;
|
|
|
-
|
|
|
+
|
|
|
public double x;
|
|
|
- public EquationHelper(string baseUrl )
|
|
|
+ public EquationHelper(string baseUrl)
|
|
|
{
|
|
|
this.baseUrl = baseUrl;
|
|
|
m_HttpHelper = new HttpHelper();
|
|
|
//this._db = db;
|
|
|
//m_HttpHelper = Factory.Load();
|
|
|
}
|
|
|
- /// <summary>
|
|
|
+
|
|
|
+ //距离(km)举例
|
|
|
+ double distance = 2;
|
|
|
+
|
|
|
+ //能见度(km)举例
|
|
|
+ double visibility = 7.5;
|
|
|
+
|
|
|
+ //浪高(m)举例;陆上搜救任务可取0
|
|
|
+ double WaveHeight = 1.5;
|
|
|
+
|
|
|
+ //a、b、c、d、r、e均为修正系数
|
|
|
+ double[] a = { 9.5128, 1.3738, 0.0875 };
|
|
|
+ double[] b = { -49.6937, -13.2945, -2.5112 };
|
|
|
+ double[] c = { 31.6031, 13.1456, 6.1604 };
|
|
|
+ double[] d = { 95.0664, 97.0952, 94.9145 };
|
|
|
+
|
|
|
+ double[][] r = new double[3][];
|
|
|
+
|
|
|
+
|
|
|
+ double[][] e = new double[3][];
|
|
|
+
|
|
|
+
|
|
|
+ double[] posibility = { 0, 0, 0 };
|
|
|
+
|
|
|
+ public double GetMushiSeaProbability(double3 aircraftPoint, double3 targetPoint,double visibility, double wavehigh, TargetPoint targetPoint1, string type)
|
|
|
+ {
|
|
|
+ r[0] = new double[] { 4.375, 1.18, 1.01, 1 };
|
|
|
+ r[1] = new double[] { 2.85, 1.51, 1.18, 1 };
|
|
|
+ r[2] = new double[] { 2.75, 2.1, 1.2, 1 };
|
|
|
+ e[0] = new double[] { -10, -30, -50, -65, -80, -90 };
|
|
|
+ e[1] = new double[] { -2, -15, -30, -50, -70, -80 };
|
|
|
+ e[2] = new double[] { 0, 0, -10, -20, -30, -40 };
|
|
|
+ double[] posibility = { 0, 0, 0 };
|
|
|
+
|
|
|
+ distance = GetDistance(aircraftPoint.x, targetPoint.x,aircraftPoint.y,targetPoint.y);
|
|
|
+ WaveHeight = wavehigh;
|
|
|
+
|
|
|
+ if (distance >= 0 && distance < 2)
|
|
|
+ {
|
|
|
+ posibility = MuShiModel.GetPosibilityClear(distance, a, b, c, d, r, e, visibility, WaveHeight);
|
|
|
+ while (posibility[0] <= 0 || posibility[1] <= 0 || posibility[2] <= 0)
|
|
|
+ {
|
|
|
+ distance += 0.1;
|
|
|
+ posibility = MuShiModel.GetPosibilityClear(distance, a, b, c, d, r, e, visibility, WaveHeight);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (distance >= 2)
|
|
|
+ {
|
|
|
+ posibility = MuShiModel.GetPosibilityFar(distance, a, b, c, d);
|
|
|
+ while (posibility[0] <= 0 || posibility[1] <= 0 || posibility[2] <= 0)
|
|
|
+ {
|
|
|
+ distance += 0.5;
|
|
|
+ posibility = MuShiModel.GetPosibilityFar(distance, a, b, c, d);
|
|
|
+ }
|
|
|
+ if (distance > 3.5)
|
|
|
+ {
|
|
|
+ posibility[0] = 0;
|
|
|
+ }
|
|
|
+ if (distance > 5)
|
|
|
+ {
|
|
|
+ posibility[1] = 0;
|
|
|
+ }
|
|
|
+ if (distance > 10)
|
|
|
+ {
|
|
|
+ posibility[2] = 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if(targetPointID)
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ public static double GetDistance(double lon1, double lon2, double lat1, double lat2)
|
|
|
+ {
|
|
|
+ double R = 6371; // 地球的半径(公里)
|
|
|
+ double dLat = (lat2 - lat1) * Math.PI / 180.0;
|
|
|
+ double dLon = (lon2 - lon1) * Math.PI / 180.0;
|
|
|
+ double a = Math.Sin(dLat / 2) * Math.Sin(dLat / 2) +
|
|
|
+ Math.Cos(lat1 * Math.PI / 180.0) * Math.Cos(lat2 * Math.PI / 180.0) *
|
|
|
+ Math.Sin(dLon / 2) * Math.Sin(dLon / 2);
|
|
|
+ double c = 2 * Math.Atan2(Math.Sqrt(a), Math.Sqrt(1 - a));
|
|
|
+ double distance = R * c;
|
|
|
+
|
|
|
+ return distance;
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
/// <param name="aircraftPoint">飞机坐标</param>
|
|
@@ -37,12 +125,12 @@ namespace MuShiApp
|
|
|
/// <param name="targetpye">遇险目标类型</param>
|
|
|
/// <param name="typee">救援场景类型</param>
|
|
|
/// <returns></returns>
|
|
|
- public double getProbability(double3 aircraftPoint,double3 targetPoint ,double pb, double course,double windspeed, double wavehigh, string targetpye, string type)
|
|
|
+ public double getProbability(double3 aircraftPoint, double3 targetPoint, double pb, double course, double windspeed, double wavehigh, string targetpye, string type)
|
|
|
{
|
|
|
try
|
|
|
{
|
|
|
double Cw = 1;
|
|
|
-
|
|
|
+
|
|
|
if (windspeed > 46 && wavehigh > 1.5)
|
|
|
{
|
|
|
if (targetpye == "落水人员")
|
|
@@ -70,13 +158,13 @@ namespace MuShiApp
|
|
|
Cw = 1;
|
|
|
}
|
|
|
double Cv = 1;
|
|
|
-
|
|
|
+
|
|
|
System.Random ran = new System.Random();
|
|
|
double x = getx(aircraftPoint, targetPoint, course);
|
|
|
|
|
|
- double V = 15;//getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
|
|
|
-
|
|
|
-
|
|
|
+ double V = 15;//getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
|
|
|
+
|
|
|
+
|
|
|
if (V < 6)
|
|
|
{
|
|
|
Cv = 0.4;
|
|
@@ -98,21 +186,21 @@ namespace MuShiApp
|
|
|
Cv = 1;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+
|
|
|
double pt = this.nextDouble(ran, 0.800, 0.999, 8);
|
|
|
//double pb = targetPoint;//getPb(targetPoint.x, targetPoint.y);
|
|
|
double D = 0;
|
|
|
double C = Math.Round((double)((pt - pb) / pt), 8);
|
|
|
- if(type =="陆地")
|
|
|
+ if (type == "陆地")
|
|
|
{
|
|
|
D = (V / 3.912) * Math.Log10(C / 0.02);
|
|
|
}
|
|
|
- else if(type =="海上")
|
|
|
+ else if (type == "海上")
|
|
|
{
|
|
|
- if(targetpye == "船")
|
|
|
- { D = 31*Cv*Cw; }
|
|
|
- else if(targetpye == "落水人员")
|
|
|
- { D =0.2 * Cv * Cw; }
|
|
|
+ if (targetpye == "船")
|
|
|
+ { D = 31 * Cv * Cw; }
|
|
|
+ else if (targetpye == "落水人员")
|
|
|
+ { D = 0.2 * Cv * Cw; }
|
|
|
}
|
|
|
double px = 1 - Math.Exp((-1 * D * D) / (4 * Math.PI * x * x));
|
|
|
return px;
|
|
@@ -136,9 +224,9 @@ namespace MuShiApp
|
|
|
try
|
|
|
{
|
|
|
x = getx(aircraftPoint, targetPoint, course);
|
|
|
-
|
|
|
+
|
|
|
double V = getVisibility(getCityName(targetPoint.x, targetPoint.y), DateTime.Now.ToString("yyyy-MM-dd HH"));
|
|
|
-
|
|
|
+
|
|
|
System.Random ran = new System.Random();
|
|
|
double pt = this.nextDouble(ran, 0.800, 0.999, 8);
|
|
|
|
|
@@ -222,7 +310,7 @@ namespace MuShiApp
|
|
|
}
|
|
|
|
|
|
//rescue-platform-service/api/v1/dem/getCityName
|
|
|
-
|
|
|
+
|
|
|
// {
|
|
|
// "msg": "success",
|
|
|
// "code": 200,
|
|
@@ -245,7 +333,7 @@ namespace MuShiApp
|
|
|
// Debug.Print("error!!!!!getCityName");
|
|
|
// Debug.Print(ex.ToString());
|
|
|
// }
|
|
|
-
|
|
|
+
|
|
|
try
|
|
|
{
|
|
|
//调在线气象接口,封装到服务中了
|
|
@@ -281,7 +369,7 @@ namespace MuShiApp
|
|
|
{
|
|
|
// 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);
|
|
|
// DataTable dt_zb = _db.DoQueryEx(sql_zb);
|
|
|
-
|
|
|
+
|
|
|
//调在线气象接口,封装到服务中了
|
|
|
HttpCmd cmd = new HttpCmd
|
|
|
{
|
|
@@ -342,7 +430,7 @@ namespace MuShiApp
|
|
|
}
|
|
|
|
|
|
//rescue-platform-service/api/v1/dem/getDistance
|
|
|
-
|
|
|
+
|
|
|
// {
|
|
|
// "msg": "success",
|
|
|
// "code": 200,
|
|
@@ -360,16 +448,16 @@ namespace MuShiApp
|
|
|
{
|
|
|
m_RequestType = HttpRequestType.GET,
|
|
|
m_Addr = $"{baseUrl}rescue-platform-service/api/v1/dem/getDistance",
|
|
|
- m_Args = new List<string> { "lon_air", "lat_air","lon_target","lat_target" }
|
|
|
+ m_Args = new List<string> { "lon_air", "lat_air", "lon_target", "lat_target" }
|
|
|
};
|
|
|
- string response = m_HttpHelper.Request(cmd, new List<string> {aircraftPoint.x.ToString(), aircraftPoint.y.ToString(), targetPoint.x.ToString(), targetPoint.y.ToString()});
|
|
|
+ string response = m_HttpHelper.Request(cmd, new List<string> { aircraftPoint.x.ToString(), aircraftPoint.y.ToString(), targetPoint.x.ToString(), targetPoint.y.ToString() });
|
|
|
|
|
|
JObject jObject = JObject.Parse(response);
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
double differ = double.Parse(jObject["data"]["differ"].ToString());
|
|
|
double azimuth = double.Parse(jObject["data"]["azimuth"].ToString());
|
|
|
-
|
|
|
+
|
|
|
// differ = Convert.ToDouble(dt.Rows[0][0].ToString());
|
|
|
azimuth = 180 / Math.PI * azimuth;//Convert.ToDouble(dt.Rows[0][1].ToString());
|
|
|
double angle = course - azimuth;
|