|
@@ -45,6 +45,8 @@ public class SimulationTrackImpl implements SimulationTrackService {
|
|
|
|
|
|
private Integer beidouNewStatus;
|
|
|
|
|
|
+ private Integer beidouType;
|
|
|
+
|
|
|
HashSet<Thread> hlxOneLevelTherads = new HashSet<>();
|
|
|
|
|
|
private Integer hlxOneLevelStatus;
|
|
@@ -59,6 +61,8 @@ public class SimulationTrackImpl implements SimulationTrackService {
|
|
|
|
|
|
private Integer tianaoStatus;
|
|
|
|
|
|
+ private Integer tianaoType;
|
|
|
+
|
|
|
|
|
|
@Override
|
|
|
public void beidouTrack(Integer status) {
|
|
@@ -300,8 +304,9 @@ public class SimulationTrackImpl implements SimulationTrackService {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void tianaoTrack(Integer status) {
|
|
|
+ public void tianaoTrack(Integer status,Integer type) {
|
|
|
tianaoStatus = status;
|
|
|
+ tianaoType = type;
|
|
|
if (0 == tianaoStatus) {
|
|
|
Thread thread = new Thread(() -> {
|
|
|
while (true) {
|
|
@@ -336,7 +341,9 @@ public class SimulationTrackImpl implements SimulationTrackService {
|
|
|
|
|
|
String data = JSONUtil.toJsonStr(tianaoRadar);
|
|
|
try {
|
|
|
- Thread.sleep(2500);
|
|
|
+ if(0 == tianaoType){
|
|
|
+ Thread.sleep(1000);
|
|
|
+ }
|
|
|
kafkaTemplate.send(TopicConstants.TIANAO_TOPIC, data);
|
|
|
log.info(DateUtil.now() + "模拟天奥船舶:天奥模拟船舶1,FusionBatchNum为202302191完成");
|
|
|
} catch (InterruptedException e) {
|
|
@@ -380,7 +387,9 @@ public class SimulationTrackImpl implements SimulationTrackService {
|
|
|
|
|
|
String data = JSONUtil.toJsonStr(tianaoRadar);
|
|
|
try {
|
|
|
- Thread.sleep(2500);
|
|
|
+ if(0 == tianaoType){
|
|
|
+ Thread.sleep(1000);
|
|
|
+ }
|
|
|
kafkaTemplate.send(TopicConstants.TIANAO_TOPIC, data);
|
|
|
log.info(DateUtil.now() + "模拟天奥船舶:天奥模拟船舶2,FusionBatchNum为202302192完成");
|
|
|
} catch (InterruptedException e) {
|
|
@@ -405,18 +414,19 @@ public class SimulationTrackImpl implements SimulationTrackService {
|
|
|
|
|
|
|
|
|
@Override
|
|
|
- public void beidouNewTrack(Integer status) {
|
|
|
+ public void beidouNewTrack(Integer status,Integer type) {
|
|
|
//开始位置 109.11032753891612,19.687745190689267
|
|
|
//结束位置 109.16730608884323,19.68914959156775
|
|
|
//模拟同船的第一个设备
|
|
|
beidouNewStatus = status;
|
|
|
+ beidouType = type;
|
|
|
if (0 == beidouNewStatus) {
|
|
|
Thread thread = new Thread(() -> {
|
|
|
while (true) {
|
|
|
if (beidouNewStatus == 1) {
|
|
|
Thread.currentThread().interrupt();
|
|
|
} else {
|
|
|
- List<Location> list = LocationUtils.generateLogLat("2023-02-19 14:00:00", "2023-02-19 14:30:00", 109.11032753891612, 19.687745190689267, 109.16730608884323,19.68914959156775);
|
|
|
+ List<Location> list = LocationUtils.generateLogLatBeidou("2023-02-19 14:00:00", "2023-02-19 14:30:00", 109.11032753891612, 19.687745190689267, 109.16730608884323,19.68914959156775);
|
|
|
for (Location location : list) {
|
|
|
BeidouShipTrackDTO beidouShipTrackDTO = new BeidouShipTrackDTO();
|
|
|
beidouShipTrackDTO.setId("202302193");
|
|
@@ -431,7 +441,9 @@ public class SimulationTrackImpl implements SimulationTrackService {
|
|
|
beidouShipTrackDTO.setLatitude(location.getLat());
|
|
|
String data = JSONUtil.toJsonStr(beidouShipTrackDTO);
|
|
|
try {
|
|
|
- Thread.sleep(1000 * 60);
|
|
|
+ if(0 == beidouType){
|
|
|
+ Thread.sleep(1000);
|
|
|
+ }
|
|
|
kafkaTemplate.send(TopicConstants.BEIDOU_TOPIC, data);
|
|
|
log.info(DateUtil.now() + "模拟北斗船舶:202302193测试船舶,终端号为202302193完成");
|
|
|
} catch (InterruptedException e) {
|