From a549d6bbd7cb6f2a0dda1234c1b4df072a9e1d61 Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期一, 18 十月 2021 09:34:05 +0800 Subject: [PATCH] 1. 新增车载、无人机和网格化三个单独的实时数据存储表 2. 新增数据转存方法,后续待补充转换中的数据预处理逻辑 --- src/main/kotlin/com/flightfeather/uav/model/epw/EPWDataPrep.kt | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/main/kotlin/com/flightfeather/uav/model/epw/EPWDataPrep.kt b/src/main/kotlin/com/flightfeather/uav/model/epw/EPWDataPrep.kt index 3f23d11..5da6409 100644 --- a/src/main/kotlin/com/flightfeather/uav/model/epw/EPWDataPrep.kt +++ b/src/main/kotlin/com/flightfeather/uav/model/epw/EPWDataPrep.kt @@ -86,7 +86,8 @@ } lastData.clear() - mDataList.subList(mDataList.lastIndex - ncal + 1, mDataList.lastIndex + 1).forEach { + val s = if ((mDataList.lastIndex - ncal + 1) < 0) 0 else mDataList.lastIndex - ncal + 1 + mDataList.subList(s, mDataList.lastIndex + 1).forEach { lastData.add(it.copy()) } -- Gitblit v1.9.3