From e5bdf2e02090357cbd580d54e6cd2406dd541760 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期五, 21 三月 2025 17:39:30 +0800 Subject: [PATCH] 1. 新增卫星遥测网格热力图计算逻辑(待完成) --- src/test/kotlin/com/flightfeather/uav/Test.kt | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 55 insertions(+), 3 deletions(-) diff --git a/src/test/kotlin/com/flightfeather/uav/Test.kt b/src/test/kotlin/com/flightfeather/uav/Test.kt index 52fc02f..ead18b4 100644 --- a/src/test/kotlin/com/flightfeather/uav/Test.kt +++ b/src/test/kotlin/com/flightfeather/uav/Test.kt @@ -1,12 +1,17 @@ package com.flightfeather.uav +import com.flightfeather.uav.common.utils.DateUtil import com.flightfeather.uav.common.utils.FileExchange +import com.flightfeather.uav.common.utils.FileUtil +import com.flightfeather.uav.domain.entity.BaseRealTimeData import com.flightfeather.uav.domain.entity.Company +import com.flightfeather.uav.domain.entity.GridDataDetail import com.flightfeather.uav.socket.bean.DataUnit import com.flightfeather.uav.socket.decoder.AirDataDecoder import com.flightfeather.uav.socket.eunm.AirCommandUnit import com.google.gson.Gson import org.junit.Test +import org.springframework.beans.BeanUtils import java.io.File import java.io.FileOutputStream import java.io.OutputStreamWriter @@ -51,7 +56,8 @@ @Test fun listCopy() { - val l1 = listOf(Company().apply { ciGuid = "a" }, Company().apply { ciGuid = "b" }, Company().apply { ciGuid = "c" }) + val l1 = + listOf(Company().apply { ciGuid = "a" }, Company().apply { ciGuid = "b" }, Company().apply { ciGuid = "c" }) val l2 = mutableListOf<Company>().apply { addAll(l1) } l2[1].ciGuid = "d" println(l1) @@ -68,8 +74,9 @@ } @Test - fun get_crc16(){ - val dataSegment = "QN=20210713115502858;ST=22;CN=2011;PW=555555;MN=FYHB0MH0300045;Flag=1;CP=&&DataTime=20210713115000;a34001-Avg=0.025,a34001-CPM=5.9,a34001-Flag=N;a50001-Avg=0.0,a50001-Flag=D;a01001-Avg=33.0,a01001-Flag=N;a01002-Avg=68.2,a01002-Flag=N;a01007-Avg=0.0,a01007-Flag=N;a01008-Avg=0.0,a01008-Flag=N;Period=5;Scale=0.0;SelfTemp=0.0;SelfHum=0.0;IsReplacement=N&&" + fun get_crc16() { + val dataSegment = + "QN=20210713133901044;ST=22;CN=2011;PW=555555;MN=FYHB0DT0100001;Flag=1;CP=&&DataTime=20210713133800;a34001-Avg=0.017,a34001-CPM=3.9,a34001-Flag=N;a50001-Avg=71.1,a50001-Flag=N;a01001-Avg=34.0,a01001-Flag=N;a01002-Avg=59.3,a01002-Flag=N;a01007-Avg=0.6,a01007-Flag=N;a01008-Avg=256.3,a01008-Flag=N;Period=1;Scale=1.0;SelfTemp=0.0;SelfHum=0.0;IsReplacement=N&&" var CRC = 0x0000ffff val POLYNOMIAL = 0x0000a001 var i: Int @@ -100,4 +107,49 @@ } println(strCRC) } + + @Test + fun foo15() { + var i = 0 + do { + if (i == 3) { + FileUtil.instance?.saveObdData("msg", true) + } else { + FileUtil.instance?.saveObdData("msg") + } + i++ + } while (i < 10) + } + + @Test + fun foo16() { + val d = "2023-06-13 00:01:50.0\t".trim().split(".")[0] + val t = DateUtil.instance.StringToDate(d, DateUtil.DateStyle.YYYY_MM_DD_HH_MM_SS) + println(d) + println(t) + } + + @Test + fun foo17() { + val avgData = BaseRealTimeData().apply { + no2 = 50f + co = 50f + h2s = 50f + so2 = 50f + o3 = 50f + pm25 = 50f + pm10 = 50f + temperature = 50f + humidity = 50f + voc = 50f + noi = 50f + no = 50f + windSpeed = 2f + windDirection = 240f + } + val dataDetail = GridDataDetail() + BeanUtils.copyProperties(avgData, dataDetail) + + println(dataDetail) + } } \ No newline at end of file -- Gitblit v1.9.3