From eb3dd00b0b7fcda477229d518d250f9c842b790b Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期二, 21 十月 2025 17:45:44 +0800
Subject: [PATCH] 2025.10.21 1. 走航季度报告相关数据计算逻辑调整
---
src/test/kotlin/com/flightfeather/uav/Test.kt | 103 ++++++++++++++++++++++++++++++++++++++++++++++-----
1 files changed, 93 insertions(+), 10 deletions(-)
diff --git a/src/test/kotlin/com/flightfeather/uav/Test.kt b/src/test/kotlin/com/flightfeather/uav/Test.kt
index 64a939e..2ca32f5 100644
--- a/src/test/kotlin/com/flightfeather/uav/Test.kt
+++ b/src/test/kotlin/com/flightfeather/uav/Test.kt
@@ -1,18 +1,19 @@
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.common.net.AMapService
+import com.flightfeather.uav.common.utils.*
+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
-import java.math.BigDecimal
import java.text.SimpleDateFormat
import java.util.*
@@ -54,7 +55,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)
@@ -71,8 +73,9 @@
}
@Test
- 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&&"
+ 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
@@ -127,9 +130,89 @@
@Test
fun foo17() {
- repeat(8) {
- if (it == 5) return@repeat
- println(it)
+ 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)
+ }
+
+ @Test
+ fun getDayTimeTag() {
+ val period = TimeUtil.getDayTimeTag(
+ Date(2024, 10, 10, 10, 25, 0),
+ Date(2024, 10, 10, 14, 40, 0)
+ )
+
+ println("${period?.first};${period?.second};${period?.third}")
+ }
+
+ @Test
+ fun foo18() {
+ println(-4.382398 in 4.0..Double.MAX_VALUE)
+ }
+
+ @Test
+ fun foo19() {
+ val timer = Timer(true)
+// var running = true
+ val task = object : TimerTask() {
+ override fun run() {
+ println("task run")
+ println(Date())
+// running = false
+ }
+ }
+ println(Date())
+ timer.schedule(task, 5000)
+ task.cancel()
+ timer.purge()
+
+ val task2 = object : TimerTask() {
+ override fun run() {
+ println("task2 run")
+ println(Date())
+// running = false
+ }
+ }
+ timer.schedule(task2, 4000)
+// while (running) {
+//
+// }
+ val sc = Scanner(System.`in`)
+ while (sc.hasNext()) {
+ println(sc.nextLine())
+ }
+ }
+
+ @Test
+ fun reGeo() {
+ val a = AMapService.reGeo(MapUtil.wgs84ToGcj02(121.45017 to 31.274426))
+ println(a)
+ }
+
+ @Test
+ fun foo20() {
+ val res = AMapService.polyLineJingAn.split(";")
+ .map { it.split(",")}
+ .map { MapUtil.gcj02ToWgs84(Pair(it[0].toDouble(), it[1].toDouble())) }
+ .map { "${it.first},${it.second}" }
+ .joinToString(";")
+ println(res)
}
}
\ No newline at end of file
--
Gitblit v1.9.3