liyang 7 tháng trước cách đây
mục cha
commit
7ec8b0187e

+ 115 - 27
Models/SimulationCommon/EquationHelper.cs

@@ -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;

+ 168 - 0
Models/SimulationCommon/MuShi.cs

@@ -0,0 +1,168 @@
+using System;
+
+namespace SJ
+{
+    public class MuShiModel
+    {
+        static void Main(string[] args)
+        {
+            //距离(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][];
+            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 };
+
+            double[][] e = new double[3][];
+            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 };
+
+            if (distance >= 0 && distance < 2)
+            {
+                posibility = GetPosibilityClear(distance, a, b, c, d, r, e, visibility, WaveHeight);
+                while (posibility[0] <= 0 || posibility[1] <= 0 || posibility[2] <= 0)
+                {
+                    distance += 0.1;
+                    posibility = GetPosibilityClear(distance, a, b, c, d, r, e, visibility, WaveHeight);
+                }
+            }
+            if (distance >= 2)
+            {
+                posibility = GetPosibilityFar(distance, a, b, c, d);
+                while (posibility[0] <= 0 || posibility[1] <= 0 || posibility[2] <= 0)
+                {
+                    distance += 0.5;
+                    posibility = 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;
+                }
+            }
+
+            // double[] posibilityTest = GetPosibilityFar(distance, a, b, c, d);
+
+            // Console.WriteLine(posibilityTest[0]);
+            // Console.WriteLine(posibilityTest[1]);
+            // Console.WriteLine(posibilityTest[2]);
+            // Console.ReadKey();
+
+            Console.WriteLine(posibility[0]);
+            Console.WriteLine(posibility[1]);
+            Console.WriteLine(posibility[2]);
+            Console.ReadKey();
+
+        }
+
+        //Clear为2Km以内的模型
+        public static double[] GetPosibilityClear(double distance, double[] a, double[] b, double[] c, double[] d, double[][] r, double[][] e, double visibility, double WaveHeight)
+        {
+            //r取值范围判断
+            int i = 0;
+            if (visibility >= 0 && visibility < 3)
+            {
+                i = 0;
+            }
+            if (visibility >= 3 && visibility < 5)
+            {
+                i = 1;
+            }
+            if (visibility >= 5 && visibility < 10)
+            {
+                i = 2;
+            }
+            if (visibility >= 10)
+            {
+                i = 3;
+            }
+
+            //e取值范围判断
+            int j = 0;
+            if (WaveHeight >= 0 && WaveHeight < 0.5)
+            {
+                j = 0;
+            }
+            if (WaveHeight >= 0.5 && WaveHeight < 1.25)
+            {
+                j = 1;
+            }
+            if (WaveHeight >= 1.25 && WaveHeight < 2.5)
+            {
+                j = 2;
+            }
+            if (WaveHeight >= 2.5 && WaveHeight < 4)
+            {
+                j = 3;
+            }
+            if (WaveHeight >= 4 && WaveHeight < 6)
+            {
+                j = 4;
+            }
+            if (WaveHeight >= 6 && WaveHeight < 9)
+            {
+                j = 5;
+            }
+
+            //posibility1为小目标目视发现概率
+            double posibility1 = (a[0] * Math.Pow((distance * r[0][i]), 3) + b[0] * Math.Pow((distance * r[0][i]), 2) + c[0] * Math.Pow((distance * r[0][i]), 1) + d[0] + e[0][j]) / 100;
+
+            ////posibility2为中目标目视发现概率
+            double posibility2 = (a[1] * Math.Pow((distance * r[1][i]), 3) + b[1] * Math.Pow((distance * r[1][i]), 2) + c[1] * Math.Pow((distance * r[1][i]), 1) + d[1] + e[1][j]) / 100;
+
+            ////posibility3为大目标目视发现概率
+            double posibility3 = (a[2] * Math.Pow((distance * r[2][i]), 3) + b[2] * Math.Pow((distance * r[2][i]), 2) + c[2] * Math.Pow((distance * r[2][i]), 1) + d[2] + e[2][j]) / 100;
+
+            double[] posibility = new double[3];
+            posibility[0] = posibility1;
+            posibility[1] = posibility2;
+            posibility[2] = posibility3;
+
+            return posibility;
+        }
+
+        //Far为2km以外的模型
+        public static double[] GetPosibilityFar(double distance, double[] a, double[] b, double[] c, double[] d)
+        {
+            //posibility1为小目标目视发现概率
+            double posibility1 = (a[0] * Math.Pow(distance, 3) + b[0] * Math.Pow(distance, 2) + c[0] * Math.Pow(distance, 1) + d[0]) / 100;
+
+            ////posibility2为中目标目视发现概率
+            double posibility2 = (a[1] * Math.Pow(distance, 3) + b[1] * Math.Pow(distance, 2) + c[1] * Math.Pow(distance, 1) + d[1]) / 100;
+
+            ////posibility3为大目标目视发现概率
+            double posibility3 = (a[2] * Math.Pow(distance, 3) + b[2] * Math.Pow(distance, 2) + c[2] * Math.Pow(distance, 1) + d[2]) / 100;
+
+            double[] posibility = new double[3];
+            posibility[0] = posibility1;
+            posibility[1] = posibility2;
+            posibility[2] = posibility3;
+
+            return posibility;
+        }
+    }
+
+}

+ 2 - 2
Models/SimulationCommon/TaskConfig.cs

@@ -57,9 +57,9 @@ public class AircraftInfo
     [JsonProperty("加油基地")]
     public string RefuelingBase;
     [JsonProperty("加油基地编号")]
-    public string RefuelingBaseId;
+    public int RefuelingBaseId;
     [JsonProperty("任务结束返回点")]
-    public string TaskEndReturnPoint;
+    public int TaskEndReturnPoint;
 }
 
 public class MissionPoint

+ 4 - 2
SimulationServer/Entity/AircraftLandSJ.cs

@@ -23,14 +23,15 @@ public class AircraftLandSJ : AircraftEntity
 
     public MissionEndPoint MissionEndPoint;
     public SearchMissionMode SearchMissionMode;
-    public bool Success = true; //本目标搜救是否成功
+    public bool Success = false; //本目标搜救是否成功
+    public TargetPoint targetPoint1;
 
     public override void Reset()
     {
         base.Reset();
         IsOver = false;
         isseePerson = false;
-        Success = true;
+        Success = false;
         SearchTime = 0;
         TotalTime = 0;
     }
@@ -166,6 +167,7 @@ public class AircraftLandSJ : AircraftEntity
                     this.isseePerson = true;
                     fireIndex = currentLocation.Currentsegnum; // 记录当前航路点位置
                     IsOver = true;
+                    Success = true;
                 }
                 else
                 {

+ 2 - 2
SimulationServer/Entity/AircraftSJ.cs

@@ -167,7 +167,7 @@ public class AircraftSJ : AircraftEntity
             FlightPlanEditor.targetpoint[0].TargetPointLatitude,
             FlightPlanEditor.targetpoint[0].TargetPointHeight);
 
-        double a = helper.getPb(targetPoint.x, targetPoint.y);
+        double pb = helper.getPb(targetPoint.x, targetPoint.y);
 
         getNCData = new GetNCData();
         getNCData.GetData();
@@ -207,7 +207,7 @@ public class AircraftSJ : AircraftEntity
                 Log.Info("距离:====================" + distance);
                 if (distance < 20)
                 {
-                    probability = helper.getProbability(aricraftPoint, targetPoint,a, currentLocation.CurrentCourse,
+                    probability = helper.getProbability(aricraftPoint, targetPoint,pb, currentLocation.CurrentCourse,
                         windSpeed, waveHigh, "落水人员", "海上"); // 计算发现概率,需要其他模型输入 // 计算发现概率,需要其他模型输入
                 }
 

+ 2 - 2
SimulationServer/Entity/LandSJRescueMission.cs

@@ -96,10 +96,10 @@ public class LandSJRescueMission : Entity
             aircraftSJDatas[key]["任务准备时间"].Add(aircraftEntity.TaskReadyTime.ToString());
             if (!aircraftSJDatas[key].ContainsKey("平均搜索时间"))
                 aircraftSJDatas[key]["平均搜索时间"] = new List<string>();
-            aircraftSJDatas[key]["平均搜索时间"].Add(aircraftEntity.SearchTime.ToString());
+            aircraftSJDatas[key]["平均搜索时间"].Add(aircraftEntity.SearchTime.ToString("f4"));
             if (!aircraftSJDatas[key].ContainsKey("总飞行时间"))
                 aircraftSJDatas[key]["总飞行时间"] = new List<string>();
-            aircraftSJDatas[key]["总飞行时间"].Add(aircraftEntity.TotalTime.ToString());
+            aircraftSJDatas[key]["总飞行时间"].Add(aircraftEntity.TotalTime.ToString("f4"));
             if (!aircraftSJDatas[key].ContainsKey("人员存活率"))
                 aircraftSJDatas[key]["人员存活率"] = new List<string>();
             aircraftSJDatas[key]["人员存活率"].Add(aircraftEntity.Success ? "1" : "0");

+ 2 - 2
SimulationServer/Entity/SeaSJRescueMission.cs

@@ -96,10 +96,10 @@ public class SeaSJRescueMission : Entity
             aircraftSJDatas[key]["任务准备时间"].Add(aircraftEntity.TaskReadyTime.ToString());
             if (!aircraftSJDatas[key].ContainsKey("平均搜索时间"))
                 aircraftSJDatas[key]["平均搜索时间"] = new List<string>();
-            aircraftSJDatas[key]["平均搜索时间"].Add(aircraftEntity.SearchTime.ToString());
+            aircraftSJDatas[key]["平均搜索时间"].Add(aircraftEntity.SearchTime.ToString("f4"));
             if (!aircraftSJDatas[key].ContainsKey("总飞行时间"))
                 aircraftSJDatas[key]["总飞行时间"] = new List<string>();
-            aircraftSJDatas[key]["总飞行时间"].Add(aircraftEntity.TotalTime.ToString());
+            aircraftSJDatas[key]["总飞行时间"].Add(aircraftEntity.TotalTime.ToString("f4"));
             if (!aircraftSJDatas[key].ContainsKey("人员存活率"))
                 aircraftSJDatas[key]["人员存活率"] = new List<string>();
             aircraftSJDatas[key]["人员存活率"].Add(aircraftEntity.Success ? "1" : "0");

+ 1 - 0
SimulationServer/EventHandler/CreateTaskEventHandler.cs

@@ -333,6 +333,7 @@ public class CreateLandSJEventHandler : AEvent<CreateLandSXTask>
             mission.aircrafts.Add(aircraft);
             aircraft.taskContent = config.LandSXTask;
             aircraft.AircraftId = config.LandSXTask.aircraftInfos[i].AircraftId;
+            aircraft.targetPoint1 = targetPoint;
             aircraft.MissionEndPoint = new MissionEndPoint
             {
                 MissionEndPointLongitude = targetPoint.TargetPointLongitude,

+ 11 - 11
SimulationServer/EventHandler/ServerStartEventHandler.cs

@@ -97,17 +97,17 @@ public class ServerStartEventHandler : AEvent<ServerStart>
         }
         //Console.WriteLine("taskConfig.seaSouJiuTasks.Count:" + taskConfig.seaSouJiuTasks.Count);
         //创建搜救
-        //foreach (var seaSJTask in taskConfig.seaSouJiuTasks)
-        //{
-        //    //Console.WriteLine("seaSJTask.missionInformation.MissionName:" + seaSJTask.missionInformation.MissionName);
-        //    //Console.WriteLine("TargetPointId:" + seaSJTask.TargetPointId);
-        //    //Console.WriteLine("SearchPayload:" + seaSJTask.SearchPayload);
-        //    //Console.WriteLine("SearchMode:" + seaSJTask.SearchMode);
-        //    //Console.WriteLine("RadarTransmitterPower:" + seaSJTask.RadarTransmitterPower);
-        //    //Console.WriteLine("仿真次数:" + editorConfig.runCounts);
-        //    Game.EventSystem.Publish(new CreateSeaSJTask
-        //    { EditorConfig = editorConfig, SeaSJTask = seaSJTask });
-        //}
+        foreach (var seaSJTask in taskConfig.seaSouJiuTasks)
+        {
+            //Console.WriteLine("seaSJTask.missionInformation.MissionName:" + seaSJTask.missionInformation.MissionName);
+            //Console.WriteLine("TargetPointId:" + seaSJTask.TargetPointId);
+            //Console.WriteLine("SearchPayload:" + seaSJTask.SearchPayload);
+            //Console.WriteLine("SearchMode:" + seaSJTask.SearchMode);
+            //Console.WriteLine("RadarTransmitterPower:" + seaSJTask.RadarTransmitterPower);
+            //Console.WriteLine("仿真次数:" + editorConfig.runCounts);
+            Game.EventSystem.Publish(new CreateSeaSJTask
+            { EditorConfig = editorConfig, SeaSJTask = seaSJTask });
+        }
 
         foreach (var landSXTask in taskConfig.LandSouXunTasks)
         {

+ 10 - 10
SimulationServer/bin/Debug/net7.0/Missions/task_config.json

@@ -25,8 +25,8 @@
                     "应用机型": "M-171",
                     "应用飞机编号": "1-1",
                     "加油基地": "成都航站",
-                    "加油基地编号": "1",
-                    "任务结束返回点": "原地待命"
+                    "加油基地编号": 1,
+                    "任务结束返回点": 0
                 }
             ],
             "侦查方式": [
@@ -166,8 +166,8 @@
                     "应用机型": "S-76",
                     "应用飞机编号": "3-1",
                     "加油基地": "西昌航站",
-                    "加油基地编号": "3",
-                    "任务结束返回点": "3"
+                    "加油基地编号": 3,
+                    "任务结束返回点": 3
                 }
             ],
             "战术战法": {
@@ -217,8 +217,8 @@
                     "应用机型": "S-76",
                     "应用飞机编号": "3-2",
                     "加油基地": "西昌航站",
-                    "加油基地编号": "3",
-                    "任务结束返回点": "3"
+                    "加油基地编号": 3,
+                    "任务结束返回点": 3
                 }
             ],
             "战术战法": {
@@ -273,8 +273,8 @@
                     "应用机型": "AW-189",
                     "应用飞机编号": "4-1",
                     "加油基地": "西昌航站",
-                    "加油基地编号": "4",
-                    "任务结束返回点": "4"
+                    "加油基地编号": 4,
+                    "任务结束返回点": 4
                 }
             ],
             "战术战法": {
@@ -328,8 +328,8 @@
                     "应用机型": "AW-189",
                     "应用飞机编号": "4-1",
                     "加油基地": "西昌航站",
-                    "加油基地编号": "4",
-                    "任务结束返回点": "4"
+                    "加油基地编号": 4,
+                    "任务结束返回点": 4
                 }
             ],
             "索滑降参数": [