|
@@ -26,6 +26,10 @@ public class AircraftSJ : AircraftEntity
|
|
public bool Success = false; //本目标搜救是否成功
|
|
public bool Success = false; //本目标搜救是否成功
|
|
public GetNCData getNCData;
|
|
public GetNCData getNCData;
|
|
|
|
|
|
|
|
+ //private bool isbool;
|
|
|
|
+ //private bool isbool2;
|
|
|
|
+ //Text_readNC text_ReadNC;
|
|
|
|
+
|
|
public SearchMissionMode SearchMode;
|
|
public SearchMissionMode SearchMode;
|
|
|
|
|
|
public override void Reset()
|
|
public override void Reset()
|
|
@@ -50,9 +54,14 @@ public class AircraftSJ : AircraftEntity
|
|
double dt = 1;
|
|
double dt = 1;
|
|
double totalTime = 24.0;
|
|
double totalTime = 24.0;
|
|
|
|
|
|
- Text_readNC text_ReadNC = new Text_readNC();
|
|
|
|
- text_ReadNC.GetNCData();
|
|
|
|
- text_ReadNC.GetWaveHighData();
|
|
|
|
|
|
+ //if (!isbool2)
|
|
|
|
+ //{
|
|
|
|
+ Text_readNC text_ReadNC = new Text_readNC();
|
|
|
|
+ //text_ReadNC = new Text_readNC();
|
|
|
|
+ text_ReadNC.GetNCData();
|
|
|
|
+ text_ReadNC.GetWaveHighData();
|
|
|
|
+ //isbool2 = true;
|
|
|
|
+ //}
|
|
var nCread = text_ReadNC.windNCread;
|
|
var nCread = text_ReadNC.windNCread;
|
|
|
|
|
|
//漂移轨迹
|
|
//漂移轨迹
|
|
@@ -175,10 +184,16 @@ public class AircraftSJ : AircraftEntity
|
|
FlightPlanEditor.targetpoint[0].TargetPointHeight);
|
|
FlightPlanEditor.targetpoint[0].TargetPointHeight);
|
|
|
|
|
|
string cityName = helper.getCityName(targetPoint.x, targetPoint.y);
|
|
string cityName = helper.getCityName(targetPoint.x, targetPoint.y);
|
|
- var vis = 10; //helper.getVisibility(cityName, DateTime.Now.ToString("yyyy-MM-dd HH"));
|
|
|
|
|
|
+ //var vis = helper.getVisibility(cityName, DateTime.Now.ToString("yyyy-MM-dd HH"));
|
|
|
|
+ var vis = helper.getVisibilityByDb(targetPoint.x, targetPoint.y, DateTime.Now.ToString("yyyy-MM-dd HH"));
|
|
|
|
+
|
|
|
|
+ //if (!isbool)
|
|
|
|
+ //{
|
|
|
|
+ getNCData = new GetNCData();
|
|
|
|
+ getNCData.GetData();
|
|
|
|
+ //isbool = true;
|
|
|
|
+ //}
|
|
|
|
|
|
- getNCData = new GetNCData();
|
|
|
|
- getNCData.GetData();
|
|
|
|
Task.Run(() =>
|
|
Task.Run(() =>
|
|
{
|
|
{
|
|
bool isseePerson = false;
|
|
bool isseePerson = false;
|
|
@@ -239,7 +254,8 @@ public class AircraftSJ : AircraftEntity
|
|
// 到搜寻航路点的最后一个点 (?)
|
|
// 到搜寻航路点的最后一个点 (?)
|
|
Log.Info(
|
|
Log.Info(
|
|
$"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},是否看到落水人员:{isseePerson}");
|
|
$"海上任务:{taskContent.missionInformation.MissionName} 机型: {AircraftId} 当前时间:{temptime},当前位置:{currentLocation.CurrentLon},{currentLocation.CurrentLat},{currentLocation.CurrentHei},概率:{probability},是否看到落水人员:{isseePerson}");
|
|
- double randomValue = random.NextInt64(9015 , 10000); // 生成随机数比较概率 //0.03 第一个参数越高概率越低 8985 0.212 100 9000 0 100 8995 0.14 100 8997 0.25 20 8998 0.3 20
|
|
|
|
|
|
+ double randomValue = random.NextInt64(9006, 10000); // 生成随机数比较概率 //0.05 第一个参数越高概率越低 / 8985 0.212 100 / 9000 0.16 100 / 8995 0.14 100 / 8997 0.12 100 / 8999 0.18 100 / 9006 0.11 100 / 9010 0.12 100 / 9030 0.03 100 / 9026 0.07 0.04 100 / 9028 0.03 100 / 9027 0.04 100 / 9025 0.05 100 /
|
|
|
|
+ //9025 0.02 100 / 9015 0.02 100 / 9020 0.04 100 / 9022 0.05 100 / 9022 0.04 100 / 9022 0 100 /9018 0.01 100 / 9021 0.01 100 / 9023 0.03 100 / 9000 0.08 100 / 9006
|
|
randomValue /= 10000;
|
|
randomValue /= 10000;
|
|
if (randomValue < probability) // 1 - finalProbability
|
|
if (randomValue < probability) // 1 - finalProbability
|
|
{
|
|
{
|