From d3845f2b4f0e83f4e58e879004a4481a8da1a2ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=A3=E5=AE=8F=E5=AE=87?= Date: Tue, 14 Sep 2021 16:15:40 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9A=E4=B9=89V2X=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=AE=9E=E4=BD=93=EF=BC=8CV2N=E3=80=81OBU=E3=80=81ADAS?= =?UTF-8?q?=E9=A2=84=E8=AD=A6=E9=80=9A=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../module/data/model/V2XThreatIndInfo.kt | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 modules/mogo-module-data/src/main/java/com/mogo/module/data/model/V2XThreatIndInfo.kt diff --git a/modules/mogo-module-data/src/main/java/com/mogo/module/data/model/V2XThreatIndInfo.kt b/modules/mogo-module-data/src/main/java/com/mogo/module/data/model/V2XThreatIndInfo.kt new file mode 100644 index 0000000000..a6c74539d9 --- /dev/null +++ b/modules/mogo-module-data/src/main/java/com/mogo/module/data/model/V2XThreatIndInfo.kt @@ -0,0 +1,44 @@ +package com.mogo.module.data.model + +/** + *@author xiaoyuzhou + *@date 2021/9/14 3:51 下午 + */ +class V2XThreatIndInfo { +// /** +// * RV temperary vehicle ID +// */ +// private val vehicle_id: String? = null +// /** +// * V2V threat status 0: update 1: add 2: delete +// * range(0..2) +// * [com.zhidao.support.obu.constants.ObuConstants.STATUS] +// */ +// private val status = 0 +// +// /** +// * RV threat information 目前判断RV方向使用的是 ext_info 中的 target_classification 变量 +// */ +// private val threat_info: V2vThreat? = null +// +// /** +// * 目前判断RV方向使用的是 ext_info 中的 target_classification 变量 +// * The extension information of V2V threat +// */ +// private val ext_info: V2vThreatExt? = null +// +// /** +// * RV basic information +// */ +// private val basic_info: MovingObjectInfo? = null +// /** +// * Wgs84坐标系,线性经纬度轨迹列表 +// */ +// private val locus_list: List? = null +// +// /** +// * 高德坐标系Gcj,线性经纬度轨迹列表 +// */ +// private val gd_locus_list: List? = null + +} \ No newline at end of file