From e8f935a01d75c89ac591a80b9318eac2480e2dcd Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期四, 27 六月 2024 17:40:01 +0800 Subject: [PATCH] 1. 新增走航轨迹融合功能 --- src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/exceptiontype/ExceptionDataExceed.kt | 23 +++++++++++++++++------ 1 files changed, 17 insertions(+), 6 deletions(-) diff --git a/src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/exceptiontype/ExceptionDataExceed.kt b/src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/exceptiontype/ExceptionDataExceed.kt index 24decf6..0d140d9 100644 --- a/src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/exceptiontype/ExceptionDataExceed.kt +++ b/src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/exceptiontype/ExceptionDataExceed.kt @@ -4,6 +4,7 @@ import com.flightfeather.uav.biz.dataanalysis.model.DataAnalysisConfig import com.flightfeather.uav.biz.dataanalysis.model.ExceptionType import com.flightfeather.uav.domain.entity.BaseRealTimeData +import com.flightfeather.uav.socket.eunm.FactorType /** * 鏁版嵁瓒呮爣寮傚父鍒嗘瀽 @@ -12,18 +13,28 @@ override fun getExceptionType(): ExceptionType = ExceptionType.TYPE2 - override fun judgeException(p: BaseRealTimeData?, n: BaseRealTimeData): List<Boolean> { - val res = mutableListOf<Boolean>() - repeat(config.factorCount) { i -> - val data = n.getByFactorIndex(i) - val limit = config.exceptionSetting.getByFactorIndex(i) + override fun judgeException(p: BaseRealTimeData?, n: BaseRealTimeData): MutableMap<FactorType, Boolean> { + val res = mutableMapOf<FactorType, Boolean>() + config.factorFilter.mainList().forEach { f -> + val data = n.getByFactorType(f) + val limit = config.exceptionSetting.getByFactorType(f) val bool = if (data != null && limit != null) { data >= limit } else { false } - res.add(bool) + res[f] = bool } +// repeat(config.factorCount) { i -> +// val data = n.getByFactorIndex(i) +// val limit = config.exceptionSetting.getByFactorIndex(i) +// val bool = if (data != null && limit != null) { +// data >= limit +// } else { +// false +// } +// res.add(bool) +// } return res } -- Gitblit v1.9.3