Commit d0e4e0f9 authored by p x's avatar p x
Browse files

增加文档

parent a3f2ec3b
......@@ -39,4 +39,15 @@ var dic = mapOf(
## 获取订单信息 getOrderData 后只有当avpStatus=3或5的时候需要路径规划
## 地锁
有四个状态 down(0, "已落下"),
up(1, "已升起"),
downing(2, "落下中"),
upping(3, "升起中"),
地锁状态变化时,会通过 /topic/parkingLockStatusChange 把状态发
## 问题
全局没有是因为路径没有发生切换
局部没有是因为路上没有障碍物,没有推送避障路线
syntax = "proto3";
package com.cusc.data.clean.module;
option java_multiple_files = true;
option java_outer_classname = "Point";
message PointCloud {
repeated Result results = 1;
}
message Result {
double x = 1;
double y = 2;
double z = 3;
double angle = 4;
}
<template>
<div class="cesium-page-css">
<basis-cesium ref="basisCesium" :access-token="this.$setting.cesiumSetting.defaultAccessToken" />
<div class="cesiumContainer2d">
<div ref="cesiumRef2D" id="cesium2d"></div>
</div>
<main-view ref="mainView" :speed="speed" :heading="heading2" :v2xname="v2xname" :driveMode="driveMode"
:endTime="endTime" :rsiChange="rsiChange" :infowindowChange="infowindowChange" />
<div class="showBuildingBtn">
<el-switch active-text="建筑物" v-model="showBuilding" active-color="rgb(99, 122, 190)"
@change="setBuildingVisibility">
</el-switch>
</div>
<div class="videoBox">
<video controls>
<source src="" type="video/mp4">
</video>
</div>
</div>
</template>
<script>
import Worker from "@/assets/js/bessel.worker.js";
import basisCesium from "@/components/cesium/basis-cesium.vue";
import mainView from "@/components/other/main-view.vue";
import websocket from "@/utils/ws/websocket.js";
import axios from "axios";
import SpaceData from "@/assets/SpaceJSON.json";
import CarJSON from "@/assets/CarJSON.json";
// import * as Cesium from "cesium/Cesium";
import * as turf from "@turf/turf";
import cesiumMainIns from "@/utils/cesiumMain";
import carpng_src from "@/assets/img/car.png";
let v2xdata = {
v2xArray: [],
};
let baseData = {
mainCarID: "",
mainLocation: {
lon: 116.50304817785404,
lat: 39.80882415169232,
},
};
let carArr = []
let lineArr = []
window.carArr = carArr
window.lineArr = lineArr
window.bblineArr = []
window.recordData = {};
window.needRecord = false;
// 记录rsi高亮的感知物数组
let rsiHighlightArr = [];
// 记录rsi数组
let rsiEventArr = [];
// 感知目标物topic对象,主要用于记录感知目标物什么时候结束,以及结束后的操作
let dataMergeTopicObj = {
timer: null, // 计时器
lastSecond: null, // 最新记录的秒数
};
// 停车位编码
let spaceCode = "";
let worker = null;
let postData = [];
let AllTingCheChang = [];
let viewer2d; // 二维视图
let car2d; // 二维车辆
let polyine2d = {}; // 二维路线
let billboardCollection2d; // 二维图标集合
let primitiveCollection3d; // 三维primitive集合
let polylineCollection2d; // 二维poliline集合
let singleLinePathPosition = []; // 整体路径的坐标
let highlightSpaceEntity = null;
// basis-cesium 中已经算好了路径,就不需要重复计算,直接使用
window.beforePath = [] // 车辆前面还没走的路径
window.afterPath = [] // 车辆前面还没走的路径
window.leftPath = [] // 倒车入库左边的路径
window.rightPath = [] // 倒车入库右边的路径
export default {
name: "HomeView",
components: {
basisCesium,
mainView,
},
//L
data() {
return {
heading2: "—— ——", //航向角显示
v2xname: "-", //预警事件名称
driveMode: "—— ——", //驾驶模式
driveModeCode: -1, //驾驶模式
speed: 0, //速度
endTime: false, //用于判断预警事件是否展示完毕,false为没有预警事件
// 是否是车内视角
firstPerspective: false,
audioSrc: "@/assets/11582.mp3",
rsiChange: {}, // rsi改变,界面弹窗
infowindowChange: {}, // 弹窗信息改变,界面弹窗
showBuilding: true, // 是否显示停车场外围建筑物
};
},
//A
mounted() {
this.initMap();
this.initViewer2d(); // 初始化二维场景
// todo 采用测试数据 todo 暂时注释
this.websocketClient();
// this.addTestCar()
// 采用worker的目的是,当websoket推送频率降低,两帧数据之间的点位距离较大,在这两个点之间做插值,使路线平滑
worker = new Worker();
worker.onmessage = (e) => {
let lon = e.data[0];
let lat = e.data[1];
let alt = e.data[2];
if (this.needDealPath) {
// 根据车辆位置计算已经走过的点
this.$refs.basisCesium.updatePathPlanLine(lon, lat);
// 小地图中路径
cesiumMainIns.updateLinePosition2D(polyine2d, {
before: window.beforePath,
after: window.afterPath,
left: window.leftPath,
right: window.rightPath,
});
// console.log('window.leftPath', window.leftPath)
}
// 移动车辆位置
this.moveCar(lon, lat, alt);
// carArr.push([lon, lat, alt])
};
// 延时5秒查询车位信息
setTimeout(this.getSpaceData, 5000);
// 每隔20s查询一次车位信息
setInterval(this.getSpaceData, 20000);
// todo 测试代码
// this.addTest()
},
methods: {
/**
* 模拟入库
*/
addTest() {
let gui = new dat.GUI();
let param = {
mockCar: () => {
spaceCode = "C002";
let index = 50;
setInterval(() => {
let bodyData = CarJSON[index];
this.topicVehicle(bodyData);
index++;
if (index == CarJSON.length) {
index = 50;
}
}, 300);
},
startParking: () => {
this.needDealPath = true;
spaceCode = "1D-005";
this.setAvpStatus(true);
},
changeParking: () => {
spaceCode = "C004";
let parkingSpot = this.getParkingSpot(spaceCode);
this.$refs.basisCesium.updateParkingSpace(parkingSpot);
},
startAvoidance: () => {
let obj = {
objectData: [
{
taskType: 1,
vehiclePlate: "吉AC242",
lineName: "",
pointStr: "[]",
tenantCode: "VL961",
type: 2, // 1避障 2倒车入库
},
],
wsTime: 1720253314196,
};
this.topicPartLine(obj);
},
endAvoidance: () => {
this.$refs.basisCesium.removeAvoidanceEffect();
},
backPath: () => {
this.$refs.basisCesium.addBackParkingEffect({
spaceInfo: {
spaceCode: "1D-005",
coordinates: [
[
125.14352243,
43.8387679
],
[
125.14349542,
43.83875615
],
[
125.14346121,
43.83879796
],
[
125.14348784,
43.83880941
],
[
125.14352243,
43.8387679
]
],
type: "car",
heading: 130,
center: [120.70663029752453, 31.32409853737599],
},
});
},
endParking: () => {
this.$refs.basisCesium.removeParkingEffect();
},
startV2x1: () => {
this.topicv2xStart({
v2xStartData: [
{
id: "111",
name: "弱势交通参与者碰撞预警",
priority: 2,
},
],
});
},
startV2x2: () => {
this.topicv2xStart({
v2xStartData: [
{
id: "222",
name: "弱势交通参与者碰撞预警",
priority: 3,
},
],
});
},
endV2x1: () => {
this.topicv2xEnd({
v2xEndData: [
{
id: "111",
},
],
});
},
endV2x2: () => {
this.topicv2xEnd({
v2xEndData: [
{
id: "222",
},
],
});
},
addMerge: () => {
let bodyData = {
objectData: [
{
participant: [
{
ptcId: "7113",
ptcType: "pedestrian",
heading: 90,
longitude: 120.70653432313952,
latitude: 31.32399543429305,
},
],
deviceCode: "merge111deviceCode",
},
],
};
this.topicDataMerge(bodyData);
},
highlightMerge: () => {
this.$refs.basisCesium.highlightPerceive("1363547912");
},
cancleHighlightMerge: () => {
this.$refs.basisCesium.cancleHighlightPerceive("1363547912");
},
startCongestion: () => {
this.$refs.basisCesium.addCongestionEffect({
eventId: "707",
eventPosition: {
lon: 120.70650368953218,
lat: 31.32387012500568,
},
eventRadius: 25,
});
},
startCongestion2: () => {
this.$refs.basisCesium.addCongestionEffect({
eventId: "707",
eventPosition: {
lon: 120.70627736888751,
lat: 31.324424454655308,
},
eventRadius: 15,
});
},
startCongestion3: () => {
this.$refs.basisCesium.addCongestionEffect({
eventId: "707",
eventPosition: {
lon: 120.7064005384187,
lat: 31.324587955182743,
},
eventRadius: 15,
});
},
startCongestion4: () => {
this.$refs.basisCesium.addCongestionEffect({
eventId: "707",
eventPosition: {
lon: 120.70640680679377,
lat: 31.324612419581705,
},
eventRadius: 15,
});
},
endCongestion: () => {
this.$refs.basisCesium.removeCongestionEffect("707");
},
startRoadConstruction: () => {
this.$refs.basisCesium.addRoadConstructionEffect({
eventId: "38",
eventPosition: {
lon: 120.70640680679377,
lat: 31.324612419581705,
},
eventRadius: 15,
});
},
endRoadConstruction: () => {
this.$refs.basisCesium.removeRoadConstructionEffect("38");
},
startRsi: () => {
let obj = {
objectData: [
{
reportData: [
{
eventId: "100",
eventType: "707",
eventPosition: {
lon: 120.70575286803157,
lat: 31.32438408479422,
},
},
],
tenantCode: "VL961",
},
],
wsTime: 1720059537473,
};
this.topicRsiEvent(obj);
},
startRsi2: () => {
let obj = {
objectData: [
{
reportData: [
{
eventId: "901-2",
eventRadius: 1,
referencePaths: [
{
activePath: [
{
lon: 120.1234567,
lat: 30.7654321,
},
],
},
],
eventSource: "3",
eventDescription: "3",
eventObjId: ["119951397"],
eventType: "901",
eventPriority: "17",
referenceLinkList: [
{
upstreamNodeId: 63880,
downstreamNodeId: 63880,
},
],
eventPosition: {
lon: 120.70575286803157,
lat: 31.32438408479422,
},
},
],
tenantCode: "VL961",
},
],
wsTime: 1720059537473,
};
this.topicRsiEvent(obj);
},
endRsi: () => {
this.topicRsiEvent({
objectData: [],
});
},
startRecord: () => {
window.needRecord = true;
window.recordData = {
vehicle: [],
vehicleStatus: [],
dataMerge: [],
v2xStart: [],
v2xEnd: [],
points: [],
linePlaning: [],
linePlaningHttp: [],
partLine: [],
rsiEvent: [],
getOrderParkingInfoForPlate: [],
spaceNo: [],
};
},
endRecord: () => {
needRecord = false;
},
linePlaningInfowindow: () => {
// 弹窗显示
this.infowindowChange = {
time: new Date().getTime(),
type: "linePlaning",
text: "已重新规划路线",
};
},
mockGetSpaceData: () => {
let response = {
code: "0",
msg: "pgs.common.msg.success",
data: {
total: 85,
pageNo: 1,
pageSize: 1000,
totalPage: 1,
list: [
{
spaceSyscode: "fe3960ce3dd9420d915785d5a7b2255f",
spaceNo: "1C-033",
// "spaceNo": "1A-053",
parkSyscode: "8abec9a2db5f442a86ba563b40c41f00",
parkName: "博览中心",
floorSyscode: "2a6452b0a9fb4d1fa02bcf7e1dc16817",
floorName: "负1",
longitude: "946.0",
latitude: "657.0",
state: 1,
inTime: "2024-10-28T11:29:27+08:00",
spacePicUri:
"/pic?0d2500=d580ip-beo621-f67*1o5=2503*7l0=0106078763t0=912**ps==810b*=22a0*3b4250a17-82375e-0*l10aod04952=004",
plateNoPicUri: null,
aswSyscode: "f52ac7d7-b3f9-4a5e-8844-c999b1bd76aa",
plateNos: "苏A2T9C7,苏EAVP002,吉AC242",
alarmPlateNos: null,
spaceTypeKey: "1",
spaceType: "允许停放车位",
plateNo: "苏EFP9932",
spacePicUrl:
"http://10.16.14.20:6120/pic?0d2500=d580ip-beo621-f67*1o5=2503*7l0=0106078763t0=912**ps==810b*=22a0*3b4250a17-82375e-0*l10aod04952=004&AccessKeyId=sdY2KWVe/wHUcN0P&Expires=1730709991&Signature=OjTzwM3ZwMnA4eiszgd6SBXX+IY=",
plateNoPicUrl: null,
},
],
},
};
AllTingCheChang = [];
const newData = response.data.list;
postData = newData;
// 遍历新数据,根据state值添加或移除模型
postData.forEach((car) => {
const parkingSpot = SpaceData.find(
(spot) => spot.spaceCode === car.spaceNo
);
if (parkingSpot) {
// 检查该车位是否已经添加模型
if (car.state === 1) {
//将车位信息添加到已添加模型的数据中;
const name = parkingSpot.spaceCode;
const latlon = [parkingSpot.center[0], parkingSpot.center[1]];
let distance = this.getDistance(
baseData.mainLocation.lon,
baseData.mainLocation.lat,
latlon[0],
latlon[1]
);
if (distance > 2) {
AllTingCheChang.push({
id: name,
longitude: latlon[0],
latitude: latlon[1],
heading: parkingSpot.heading,
});
}
}
}
});
this.$refs.basisCesium.beginParkingLot(AllTingCheChang);
if (needRecord) {
window.recordData.spaceNo.push(response);
}
},
};
gui.add(param, "mockCar").name("模拟跑车");
gui.add(param, "startParking").name("开始泊车");
gui.add(param, "changeParking").name("切换车位");
gui.add(param, "startAvoidance").name("开始避让");
gui.add(param, "endAvoidance").name("结束避让");
gui.add(param, "backPath").name("倒车入库");
gui.add(param, "endParking").name("结束自主泊车");
gui.add(param, "startV2x1").name("开始v2x1");
gui.add(param, "endV2x1").name("结束v2x1");
gui.add(param, "startV2x2").name("开始v2x2");
gui.add(param, "endV2x2").name("结束v2x2");
gui.add(param, "addMerge").name("添加感知物");
gui.add(param, "highlightMerge").name("高亮感知物");
gui.add(param, "cancleHighlightMerge").name("取消高亮感知物");
gui.add(param, "startCongestion").name("发生拥堵");
gui.add(param, "startCongestion2").name("发生拥堵2");
gui.add(param, "startCongestion3").name("发生拥堵3");
gui.add(param, "startCongestion4").name("发生拥堵4");
gui.add(param, "endCongestion").name("拥堵结束");
gui.add(param, "startRoadConstruction").name("发生道路施工");
gui.add(param, "endRoadConstruction").name("结束道路施工");
gui.add(param, "startRsi").name("开始rsi");
gui.add(param, "startRsi2").name("结束rsi1");
gui.add(param, "startRsi2").name("开始rsi2");
gui.add(param, "startRsi").name("结束rsi2");
gui.add(param, "endRsi").name("结束所有rsi");
gui.add(param, "startRecord").name("开始记录");
gui.add(param, "endRecord").name("结束记录");
gui.add(param, "linePlaningInfowindow").name("切换路径弹窗");
gui.add(param, "mockGetSpaceData").name("停车位信息");
},
addTestCar() {
const res = pathRes
this.$refs.basisCesium.findPathPlanning(res);
// 高亮车位
spaceCode = "1D-005";
this.highlightSpaceEntity(spaceCode)
setTimeout(() => {
spaceCode = "1D-004";
this.highlightSpaceEntity(spaceCode)
}, 5000)
setTimeout(() => {
spaceCode = "";
this.highlightSpaceEntity(spaceCode)
}, 8000)
let index = 0
const timer = setInterval(() => {
if (index == pathCar.length) {
clearInterval(timer)
return
}
const ele = pathCar[index]
const bodyData = {
"vehicleData": [
{
"altitude": 0,
"brake": 30,
"gasPedal": 20,
"gear": 1,
"heading": 0,
"latitude": ele[1],
"longitude": ele[0],
"obuCode": "O-HK-2687",
"reportTime": 1748411699632,
"speed": 0,
"vehicleId": "1694264612474306561",
"vehiclePlate": "吉AC242",
"vehiclePurpose": "avp",
"vehiclePurposeName": "AVP车辆",
"wheelAngle": 2
}
],
"wsTime": 1748411699632
}
this.topicVehicle(bodyData);
index++
}, 1)
},
// 设置停车场外围建筑物的显示和隐藏
setBuildingVisibility(value) {
this.$refs.basisCesium.setBuildingVisibility(value);
},
initMap() {
this.$refs.basisCesium.buildCesiumWorld();
this.$refs.basisCesium.inject3DtilesMapByUrl("unit/tileset.json"); // 停车场外部建筑
// this.$refs.basisCesium.inject3DtilesMapByUrl_two("garage/tileset.json"); // 停车场内部建筑
this.$refs.basisCesium.addWmsDT(); // 低精地图
this.$refs.basisCesium.addWmsGQDT(); // 高精地图
this.$refs.basisCesium.cesiumCameraflyTo(
125.142191,
43.829754,
600,
356,
-33,
0
);
},
async websocketClient() {
await websocket.connectSocket();
// 2.2. 联网车辆位姿数据topic
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/vehicle"],
(message) => {
let bodyData = JSON.parse(message.body);
this.topicVehicle(bodyData);
// console.log('车辆', bodyData)
if (needRecord) {
window.recordData.vehicle.push(bodyData);
}
}
);
// 2.3. 联网车辆状态数据topic
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/vehicleStatus"],
(message) => {
var bodyData = JSON.parse(message.body);
this.topicVehicleStatus(bodyData);
if (needRecord) {
window.recordData.vehicleStatus.push(bodyData);
}
}
);
// 2.4. 感知目标物数据topic
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/dataMerge"],
(message) => {
var bodyData = JSON.parse(message.body);
this.topicDataMerge(bodyData);
if (needRecord) {
window.recordData.dataMerge.push(bodyData);
}
// 2秒没有消息推过来,则需要清除所有感知目标物了
dataMergeTopicObj.lastSecond = new Date().getTime();
if (dataMergeTopicObj.timer) {
return;
}
dataMergeTopicObj.timer = setInterval(() => {
let newSecond = new Date().getTime();
if (newSecond - dataMergeTopicObj.lastSecond > 2000) {
// 清除所有感知目标物
this.removeDataMerge();
clearInterval(dataMergeTopicObj.timer);
dataMergeTopicObj.timer = null;
console.log("2s接收不到感知目标物,清除感知目标物");
}
}, 500);
// console.log(bodyData)
}
);
// 2.5. V2X预警开始topic
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/v2xStart"],
(message) => {
var bodyData = JSON.parse(message.body);
this.topicv2xStart(bodyData);
if (needRecord) {
window.recordData.v2xStart.push(bodyData);
}
}
);
// 2.6. V2X预警结束topic
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/v2xEnd"],
(message) => {
var bodyData = JSON.parse(message.body);
this.topicv2xEnd(bodyData);
if (needRecord) {
window.recordData.v2xEnd.push(bodyData);
}
}
);
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/points"],
(message) => {
var bodyData = JSON.parse(message.body);
this.topicvPoints(bodyData);
if (needRecord) {
window.recordData.points.push(bodyData);
}
}
);
// 全局路径发生切换
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/linePlaning"],
(message) => {
var bodyData = JSON.parse(message.body);
this.topicLinePlaning(bodyData);
if (needRecord) {
window.recordData.linePlaning.push(bodyData);
}
// console.log('/topic/linePlaning', bodyData)
}
);
// 局部路径
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/partLine"],
(message) => {
var bodyData = JSON.parse(message.body);
this.topicPartLine(bodyData);
if (needRecord) {
window.recordData.partLine.push(bodyData);
}
// console.log('局部路径', bodyData)
}
);
// rsi事件
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/rsiEvent"],
(message) => {
var bodyData = JSON.parse(message.body);
this.topicRsiEvent(bodyData);
if (needRecord) {
window.recordData.rsiEvent.push(bodyData);
}
// console.log(bodyData)
}
);
},
/**
* 车辆驾驶模式
* @param {*} msg
*/
topicVehicleStatus(msg) {
if (msg.vehicleStatusList.length != 0) {
let driveMode1 = msg.vehicleStatusList[0].driveMode;
this.driveModeCode = driveMode1;
switch (driveMode1) {
case 0:
this.driveMode = "自动驾驶";
// 如果有全局路径,那么显示全局路径
this.$refs.basisCesium.organizePathLine({
type: "driveMode0",
});
break;
case 1:
this.driveMode = "人工驾驶";
// 如果有全局路径,那么隐藏全局路径
this.$refs.basisCesium.organizePathLine({
path: [],
type: "driveMode1",
});
break;
case 2:
this.driveMode = "远程驾驶";
break;
default:
this.driveMode = "—— ——";
break;
}
}
},
/**
* v2x开始
* @param {*} msg
*/
topicv2xStart(msg) {
let v2xStartName = msg.v2xStartData[0].name;
if (
v2xStartName == "异常车辆预警" ||
v2xStartName == "车辆入场预警" ||
v2xStartName == "前向碰撞预警" ||
v2xStartName == "盲区/变道预警" ||
v2xStartName == "交叉路口碰撞预警" ||
v2xStartName == "弱势交通参与者碰撞预警"
) {
v2xdata.v2xArray.push({
id: msg.v2xStartData[0].id,
name: msg.v2xStartData[0].name,
priority: msg.v2xStartData[0].priority,
no: msg.v2xStartData[0].no,
});
//通过冒泡排序对插入在v2xArray的数组按照priority优先级由低到高进行排序
const n = v2xdata.v2xArray.length;
if (n > 1) {
for (let i = 0; i < n - 1; i++) {
let swapped = false; // 优化:如果某一轮没有进行交换,则说明数组已经有序,可以提前结束循环
for (let j = 0; j < n - 1 - i; j++) {
if (
parseInt(v2xdata.v2xArray[j].priority) >
parseInt(v2xdata.v2xArray[j + 1].priority)
) {
// 交换位置
const temp = v2xdata.v2xArray[j];
v2xdata.v2xArray[j] = v2xdata.v2xArray[j + 1];
v2xdata.v2xArray[j + 1] = temp;
swapped = true;
}
}
if (!swapped) {
break; // 优化:如果没有进行交换,则说明数组已经有序,可以提前结束排序
}
}
}
this.v2xname = v2xdata.v2xArray[n - 1].name;
this.endTime = true;
}
// 高亮目标物
if (
msg.v2xStartData[0] &&
msg.v2xStartData[0].mec &&
msg.v2xStartData[0].mec.length
) {
console.log(msg.v2xStartData[0]);
let needHighIds = msg.v2xStartData[0].mec;
for (let i = 0; i < needHighIds.length; i++) {
let nendId = needHighIds[i].id;
let eventType = needHighIds[i].type;
this.$refs.basisCesium.highlightPerceive({
nendId,
eventType,
iconType: "v2xicon",
mainCarID: baseData.mainCarID,
});
}
}
},
/**
* v2x结束
* @param {*} msg
*/
topicv2xEnd(msg) {
v2xdata.v2xArray.forEach((item, index) => {
if (item.id === msg.v2xEndData[0].id) {
v2xdata.v2xArray.splice(index, 1); // 如果找到匹配的id,则删除该数组
}
});
const n = v2xdata.v2xArray.length;
if (n == 0) {
//如果数组为空,则将endTime变为false,表示预警事件全部结束,隐藏预警
this.endTime = false;
} else {
this.v2xname = v2xdata.v2xArray[n - 1].name;
this.endTime = true;
//否则会将优先级最高的事件进行展示
}
// 取消高亮目标物
if (
msg.v2xEndData[0] &&
msg.v2xEndData[0].mec &&
msg.v2xEndData[0].mec.length
) {
console.log(msg.v2xEndData[0]);
let needHighIds = msg.v2xEndData[0].mec;
for (let i = 0; i < needHighIds.length; i++) {
let nendId = needHighIds[i].id;
this.$refs.basisCesium.cancleHighlightPerceive(nendId);
}
}
},
/**
* 车辆实时位置、航向角等信息
* @param {*} msg
*/
topicVehicle(msg) {
if (!msg || !msg.vehicleData || !msg.vehicleData.length) {
return;
}
let vehicleData = msg.vehicleData[0];
let { speed, heading, longitude, latitude } = vehicleData;
let curHeading = heading - 90;
this.speed = speed;
// 设置界面上显示的角度
this.setUIHeading(heading);
if (baseData.mainCarID == "") {
let id = msg.vehicleData[0].vehicleId;
let url = "./cesium/yqcar.glb";
this.$refs.basisCesium.addOneModelById({
id,
url,
longitude,
latitude,
angle: curHeading,
scale: 0.8,
});
baseData.mainCarID = id;
} else {
// 采用多线程插值
worker.postMessage([longitude, latitude, curHeading]);
// 如果不采用多线程插值,就需要在这里移动车辆位置
// this.moveCar(longitude, latitude, heading);
}
// 记录车辆位置
baseData.mainLocation.lon = longitude;
baseData.mainLocation.lat = latitude;
},
/**
* 设置界面上显示的角度
* @param {*} heading
*/
setUIHeading(heading) {
let heading1 = Math.floor(heading);
if (heading1 < 0) {
heading1 += 360;
}
switch (true) {
case heading1 === 0:
this.heading2 = "正北";
break;
case heading1 === 90:
this.heading2 = "正东";
break;
case heading1 === 180:
this.heading2 = "正南";
break;
case heading1 === 270:
this.heading2 = "正西";
break;
case heading1 > 0 && heading1 <= 45:
this.heading2 = "北偏东 " + heading1 + "°";
break;
case heading1 > 45 && heading1 < 90:
this.heading2 = "东偏北 " + (90 - heading1) + "°";
break;
case heading1 > 90 && heading1 <= 135:
this.heading2 = "东偏南 " + (heading1 - 90) + "°";
break;
case heading1 > 135 && heading1 < 180:
this.heading2 = "南偏东 " + (180 - heading1) + "°";
break;
case heading1 > 180 && heading1 <= 225:
this.heading2 = "南偏西 " + (heading1 - 180) + "°";
break;
case heading1 > 225 && heading1 < 270:
this.heading2 = "西偏南 " + (270 - heading1) + "°";
break;
case heading1 > 270 && heading1 <= 315:
this.heading2 = "西偏北 " + (heading1 - 270) + "°";
break;
case heading1 > 315 && heading1 < 360:
this.heading2 = "北偏西 " + (360 - heading1) + "°";
break;
default:
break;
}
},
/**
* 停车位变更
* @param {*} msg
*/
topicvPoints(msg) {
let curValue = msg.parkingSpace;
if (spaceCode) {
// 更新停车位的信息
let parkingSpot = this.getParkingSpot(curValue);
this.$refs.basisCesium.updateParkingSpace(parkingSpot);
} else {
// 第一次需要添加停车位的效果
let carPostion = [baseData.mainLocation.lon, baseData.mainLocation.lat];
// 开启前进自主泊车效果
let parkingSpot = this.getParkingSpot(curValue);
this.$refs.basisCesium.addForwardParkingEffect({
id: baseData.mainCarID,
carPostion: carPostion,
spaceInfo: parkingSpot,
});
}
// 记录 spaceCode 给倒车入库的时候用
spaceCode = curValue;
this.highlightSpaceEntity(spaceCode)
},
/**
* 全局路径规划切换
* @param {*} msg
*/
topicLinePlaning(msg) {
if (msg.objectData && msg.objectData[0] && msg.objectData[0].line) {
this.$refs.basisCesium.organizePathLine({
path: msg.objectData[0].line,
type: "linePlaning",
});
// 弹窗显示
this.infowindowChange = {
time: new Date().getTime(),
type: "linePlaning",
text: "已重新规划路线",
};
}
},
/**
* 局部路径发生改变
* @param {*} msg
*/
topicPartLine(msg) {
// 先判断类型
if (msg.objectData && msg.objectData[0] && msg.objectData[0]) {
let objectData = msg.objectData[0];
let { type, pointStr, globalPath } = objectData;
let pointArr = JSON.parse(pointStr);
if (pointArr) {
if (type == 1) {
// 避障
this.$refs.basisCesium.addAvoidanceEffect({
line: pointArr,
globalPath,
});
// 更新全局路径
this.$refs.basisCesium.organizePathLine({
path: globalPath,
partLine: pointArr,
type: "partLine",
});
// singleLinePathPosition = [...pointArr, ...globalPath]
// 记录前后路径
// window.beforePath = [...globalPath]
// window.afterPath = [...pointArr]
// 避障需要前端判断结束,持续5s没有收到避障的topic,则任务避障结束
clearInterval(this.addAvoidanceTimer);
let voidanceLastSecond = new Date().getTime();
this.addAvoidanceTimer = setInterval(() => {
let newSecond = new Date().getTime();
if (newSecond - voidanceLastSecond > 2000) {
// 清除避障效果
this.$refs.basisCesium.removeAvoidanceEffect();
// 清除全局路径
this.$refs.basisCesium.organizePathLine({
type: "partLine",
});
// 清除定时器
clearInterval(this.addAvoidanceTimer);
this.addAvoidanceTimer = null;
}
}, 1000);
} else {
if (!spaceCode) {
return;
}
// lineArr.push(pointArr)
// 开始后退,不需要再跳转视角了,因此用 singleLinePathPosition 长度控制
// singleLinePathPosition = []
let parkingSpot = this.getParkingSpot(spaceCode);
this.$refs.basisCesium.addBackParkingEffect({
carPos: baseData.mainLocation,
line: pointArr,
spaceInfo: parkingSpot,
});
}
}
}
},
/**
* 根据停车位编号,获取停车位的具体信息
* @param {*} parkingValue
*/
getParkingSpot(parkingValue) {
// 查询倒车入库的车位
const parkingSpot = SpaceData.find(
(spot) => spot.spaceCode === parkingValue
);
return parkingSpot;
},
/**
* 获取路径规划
*/
async findPathPlanning(ifParking = true) {
await this.request
.post("/avp/linePlaning/get", { vehiclePlate: "吉AC242" })
.then((res) => {
if (res.line && res.line.length) {
this.$refs.basisCesium.findPathPlanning(res);
// 泊车需要高亮车位,召车不高亮
if (ifParking) {
spaceCode = res.spaceCode
} else {
spaceCode = ''
}
this.highlightSpaceEntity(spaceCode)
} else {
console.log(res);
}
});
},
/**
* rsi事件
* 感知物高亮:如果eventObjId有值,那么就高亮对应的感知物,当连续几帧(比如3帧)没有某个感知物的id,则取消这个感知物的高亮
* 道路面高亮:当eventType为拥堵时,需要高亮道路面,当连续几帧(比如3帧)不拥堵,则取消这个道路面的高亮
* 事件优先级展示
* @param {*} msg
*/
topicRsiEvent(msg) {
// 先得到所有需要高亮的感知物id
let needHighIds = []; // 把所有rsi感知到的所有感知物id放在一个数组中,用于判断感知物高亮的结束
let needRsiIds = []; // 把所有rsi的id放在一个数组中,用于判断rsi的结束
for (let i = 0; i < msg.objectData.length; i++) {
for (let j = 0; j < msg.objectData[i].reportData.length; j++) {
let curData = msg.objectData[i].reportData[j];
let eventId = curData.eventId;
let eventType = curData.eventType;
// console.log(eventId, eventType)
// console.log(eventType)
// 这一步的目的是把所有的事件id放到一个数组
needRsiIds.push(eventId);
// 设置当前rsi事件在rsiEventArr数组中的状态
let obj = rsiEventArr.find((rs) => {
return rs.eventId == eventId;
});
if (obj) {
obj.number = 1;
} else {
let eventPriority = curData.eventPriority;
rsiEventArr.push({
eventId: eventId,
priority: eventPriority,
type: eventType,
number: 1,
});
// 添加这个事件对应的弹窗
this.rsiChange = {
type: "add",
eventId,
eventType,
};
}
if (eventType == "707") {
// 如果当前是拥堵事件,则添加道路面,或者根据eventDescriptionI字段更新道路面的颜色
this.$refs.basisCesium.addCongestionEffect({
...curData,
eventId,
});
} else if (eventType == "38") {
// 如果当前事件是道路施工,则根据传过来的经纬度添加施工图标
// console.log('道路施工:接收到推送消息' + eventId)
this.$refs.basisCesium.addRoadConstructionEffect({
...curData,
eventId,
});
}
// 这一步的目的是把所有的感知物id放到一个数组
let curRsi = msg.objectData[i].reportData[j];
if (curRsi.eventObjId) {
if (Array.isArray(curRsi.eventObjId)) {
curRsi.eventObjId.forEach((tr) => {
needHighIds.push({
id: tr,
eventType: curRsi.eventType,
});
// console.log('交通事件', '事件id:' + eventId, '事件type:' + eventType, '参与者id:' + tr)
});
} else {
// console.log('交通事件', '事件id:' + eventId, '事件type:' + eventType, '参与者id:' + curRsi.eventObjId)
needHighIds.push({
id: curRsi.eventObjId,
eventType: curRsi.eventType,
});
}
}
}
}
// 高亮感知物
this.dealHighlightRsi(needHighIds);
// 事件优先级展示
this.dealUIShow(needRsiIds);
},
/**
* 处理感知物的高亮,包括高亮当前感知物 + 取消前面几帧高亮的感知物
* @param {*} needHighIds
*/
dealHighlightRsi(needHighIds) {
// 高亮感知物
for (let i = 0; i < needHighIds.length; i++) {
let nendId = needHighIds[i].id;
let eventType = needHighIds[i].eventType;
let obj = rsiHighlightArr.find((rs) => {
return rs.id == nendId;
});
if (obj) {
obj.number = 1;
} else {
rsiHighlightArr.push({
id: nendId,
number: 1,
});
}
// 高亮感知物
this.$refs.basisCesium.highlightPerceive({
nendId,
eventType,
iconType: "rsiicon",
mainCarID: baseData.mainCarID,
});
}
// 取消连续5帧不存在的感知物高亮
for (let i = rsiHighlightArr.length - 1; i >= 0; i--) {
let curRsi = rsiHighlightArr[i];
let deleteObject = needHighIds.find((ni) => ni.id == curRsi.id);
if (!deleteObject) {
curRsi.number += 1;
if (curRsi.number > 5) {
this.$refs.basisCesium.cancleHighlightPerceive(curRsi.id);
rsiHighlightArr.splice(i, 1);
}
}
}
},
/**
* 处理界面上的弹窗显示,按照优先级高低
* @param {*} needRsiIds
*/
dealUIShow(needRsiIds) {
// 连续5帧没有同一个eventId的事件,则认为这个事件结束了
for (let i = rsiEventArr.length - 1; i >= 0; i--) {
let curRsi = rsiEventArr[i];
let deleteObject = needRsiIds.find((ni) => ni == curRsi.eventId);
if (!deleteObject) {
curRsi.number += 1;
if (curRsi.number > 5) {
rsiEventArr.splice(i, 1);
if (curRsi.type == "707") {
// 删除这个事件对应的道路面高亮
this.$refs.basisCesium.removeCongestionEffect(curRsi.eventId);
} else if (curRsi.type == "38") {
// 删除这个事件对应的道路施工图标
// console.log('道路施工:连续5帧没有' + curRsi.eventId)
this.$refs.basisCesium.removeRoadConstructionEffect(
curRsi.eventId
);
}
// 删除这个事件对应的弹窗
this.rsiChange = {
type: "remove",
eventId: curRsi.eventId,
eventType: curRsi.type,
};
}
}
}
},
/**
* 移动车辆位置
* @param {*} longitude
* @param {*} latitude
* @param {*} heading
*/
moveCar(longitude, latitude, heading) {
if (this.firstPerspective) {
this.$refs.basisCesium.moveModelById({
id: baseData.mainCarID,
longitude,
latitude,
angle: heading,
follow: true,
offset: [-1, 0, 0],
firstPer: true,
});
} else {
this.$refs.basisCesium.moveModelById({
id: baseData.mainCarID,
longitude,
latitude,
angle: heading,
follow: true,
offset: [-31.5, 0, 9],
});
}
// 更新2d车辆位置,需要跟随视角
cesiumMainIns.updateBillboard(car2d, {
viewer: viewer2d,
position: [longitude, latitude],
heading: heading - 60,
});
// if (car2d) {
// cesiumMainIns.updateGlbModelPrimitive(car2d, {
// position: [longitude, latitude],
// heading: heading + 90,
// })
// }
},
/**
* 两点之间的距离
* @param {*} lng1
* @param {*} lat1
* @param {*} lng2
* @param {*} lat2
*/
getDistance(lng1, lat1, lng2, lat2) {
let radLat1 = (lat1 * Math.PI) / 180.0;
let radLat2 = (lat2 * Math.PI) / 180.0;
let a = radLat1 - radLat2;
let b = (lng1 * Math.PI) / 180.0 - (lng2 * Math.PI) / 180.0;
let s =
2 *
Math.asin(
Math.sqrt(
Math.pow(Math.sin(a / 2), 2) +
Math.cos(radLat1) *
Math.cos(radLat2) *
Math.pow(Math.sin(b / 2), 2)
)
);
s = s * 6378137;
s = Math.round(s * 10000) / 10000;
return s;
},
/**
* 感知目标物
* @param {*} msg
*/
topicDataMerge(msg) {
for (let i = 0; i < msg.objectData.length; i++) {
let allPerceive = [];
for (let j = 0; j < msg.objectData[i].participant.length; j++) {
let participant = msg.objectData[i].participant[j];
let { longitude, latitude, ptcId, ptcType, heading } = participant;
// 计算主车辆和感知目标物的距离
let distance = this.getDistance(
baseData.mainLocation.lon,
baseData.mainLocation.lat,
longitude,
latitude
);
// 距离小于100米才显示感知目标物
// if (distance < 100) {
allPerceive.push({
id: ptcId,
type: ptcType,
longitude: longitude,
latitude: latitude,
heading: heading,
});
// }
}
let deviceCode = msg.objectData[i].deviceCode;
this.$refs.basisCesium.beginPerceive(deviceCode, allPerceive);
}
},
/**
* 清除所有感知目标物
*/
removeDataMerge() {
this.$refs.basisCesium.removeDataMerge();
},
/**
* 开始泊车
*/
startParkingVehicle() {
// worker中处理路径规划显示的路径
this.needDealPath = true;
// 获取规划好的路径
this.findPathPlanning();
},
/**
* 结束泊车
*/
endParkingVehicle() {
// 移除自主泊车所有效果
this.$refs.basisCesium.removeParkingEffect();
// 停车位信息重置
spaceCode = "";
this.highlightSpaceEntity(spaceCode)
// 是否处理路径规划显示的路径
this.needDealPath = false;
// 小地图上不显示线
cesiumMainIns.updateLinePosition2D(polyine2d, {
before: [],
after: [],
left: [],
right: []
});
// console.log('window.leftPath', window.leftPath)
},
/**
* 开始招车,显示路径规划路径
*/
startRecruitmentVehicle() {
// worker不处理路径规划显示的路径
this.needDealPath = true;
// 获取规划好的路径
this.findPathPlanning(false);
// 开始招车的时候就开始记录了
// window.needRecord = true;
// window.recordData = {
// vehicle: [],
// vehicleStatus: [],
// dataMerge: [],
// v2xStart: [],
// v2xEnd: [],
// points: [],
// linePlaning: [],
// linePlaningHttp: [],
// partLine: [],
// rsiEvent: [],
// }
},
/**
* 由招车转为其他状态,移除路径规划路线
*/
endRecruitmentVehicle() {
// worker中不处理路径规划显示的路径
this.needDealPath = false;
// 移除路面上的路线
this.$refs.basisCesium.removePathPlanLine();
// 小地图上不显示线
cesiumMainIns.updateLinePosition2D(polyine2d, {
before: [],
after: [],
left: [],
right: []
});
},
/**
* 查询车位信息
*/
async getSpaceData() {
let data = JSON.stringify({
pageNo: 20,
pageSize: 1000,
});
await axios
.post(
"https://faw.cuscavp.cn:8443/hkapi/pms/v1/parkingSpace/spaceNo",
data,
{
headers: {
"Content-Type": "application/json",
},
}
)
.then((response) => {
AllTingCheChang = [];
const newData = response.data.data.list;
postData = newData;
// 遍历新数据,根据state值添加或移除模型
postData.forEach((car) => {
const parkingSpot = SpaceData.find(
(spot) => spot.spaceCode === car.spaceNo
);
if (parkingSpot) {
// 检查该车位是否已经添加模型
if (car.state === 1) {
//将车位信息添加到已添加模型的数据中;
const name = parkingSpot.spaceCode;
const latlon = [parkingSpot.center[0], parkingSpot.center[1]];
let distance = this.getDistance(
baseData.mainLocation.lon,
baseData.mainLocation.lat,
latlon[0],
latlon[1]
);
if (distance > 2) {
AllTingCheChang.push({
id: name,
longitude: latlon[0],
latitude: latlon[1],
heading: parkingSpot.heading,
});
}
}
}
});
this.$refs.basisCesium.beginParkingLot(AllTingCheChang);
if (needRecord) {
window.recordData.spaceNo.push(response);
}
});
},
// 添加二维内容
async initViewer2d() {
// 初始化二维场景
viewer2d = cesiumMainIns.initScene(this.$refs.cesiumRef2D, {
// sceneMode: Cesium.SceneMode.SCENE2D,
});
window.viewer2d = viewer2d;
window.getCurrentCameraView = cesiumMainIns.getCurrentCameraView;
// 设置二维视角
cesiumMainIns.setView(viewer2d, {
"longitude": 125.143565,
"latitude": 43.838348,
"height": 89.988899,
"heading": 330,
"pitch": -88.630968,
"roll": 0
});
cesiumMainIns.addWmsLayer(viewer2d, {
url: "https://faw.cuscavp.cn:8443/geoserver/changchun/wms?SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&FORMAT=image/png&TRANSPARENT=true",
layers: "changchun:HMI_AVP_BASE",
});
cesiumMainIns.addWmsLayer(viewer2d, {
url: "https://faw.cuscavp.cn:8443/geoserver/changchun/wms?service=WMS&version=1.1.0&request=GetMap&srs=EPSG:4326&styles=",
layers: "changchun:CHANGCHUN_HMI_AVP_GJDT",
});
// 加载车位
// cesiumMainIns.addGeojson(viewer2d, {
// url: "cesium/Parking.geojson",
// alpha: 0.5,
// strokeAlpha: 1,
// fill: "#BEDDFF",
// strokeColor: "#BEDDFF",
// });
// 添加二维poliline集合
polylineCollection2d = cesiumMainIns.addPolylineCollection(viewer2d);
// 二维路径
polyine2d.before = cesiumMainIns.addPolyline(polylineCollection2d, {
path: [],
width: 5,
type: "color",
color: "#5b81f6",
});
polyine2d.after = cesiumMainIns.addPolyline(polylineCollection2d, {
path: [],
width: 5,
type: "color",
color: "#54B19B",
});
polyine2d.left = cesiumMainIns.addPolyline(polylineCollection2d, {
path: [],
width: 3,
type: "gradientPolylineDash",
color: "#fff",
});
polyine2d.right = cesiumMainIns.addPolyline(polylineCollection2d, {
path: [],
width: 3,
type: "gradientPolylineDash",
color: "#fff",
});
// 添加二维图标集合
billboardCollection2d = cesiumMainIns.addBillboardCollection(viewer2d);
car2d = cesiumMainIns.addBillboard(billboardCollection2d, {
position: [baseData.mainLocation.lon, baseData.mainLocation.lat],
heading: 0,
scale: 1,
// image: "./cesium/car.png",
image: carpng_src,
nearFarScalar: [50, 0.5, 300, 0.3]
});
console.log('加载car.png', car2d)
// 三维primitive集合
// primitiveCollection3d = cesiumMainIns.addPrimitiveCollection(viewer2d)
// let url = "cesium/XC60.glb";
// car2d = await cesiumMainIns.addGlbModelPrimitive(primitiveCollection3d, {
// url: url,
// position: [125.143684, 43.838424],
// heading: 0,
// follow: false,
// scale: 0.5,
// viewer: viewer2d,
// lightingFactor: 2
// });
setInterval(() => {
if (!window.leftPath.length && [...window.afterPath, ...window.beforePath].length) {
this.flyToRect([...window.afterPath, ...window.beforePath], {
scale: 1.5
})
} else {
cesiumMainIns.flyToPoint(viewer2d, {
position: [baseData.mainLocation.lon, baseData.mainLocation.lat, 30],
orientation: {
heading: 330,
pitch: -89,
roll: 0
}
})
}
}, 3000)
},
flyToRect(lineCoors, options = {}) {
const { scale = 1.5 } = options
// 设置二维地图的视角
const line = turf.lineString(lineCoors); // 得到路径
const length = turf.length(line, { units: "kilometers" }) * 1000;
// console.log(length)
if (length < 18) return
const bbox = turf.bbox(line); // 计算路径的边界框
var poly = turf.bboxPolygon(bbox); // 计算路径的边界多边形
let result = turf.transformScale(poly, scale); // 缩放1.2倍,主要是为了让地图边界留点空间
const bbox2 = turf.bbox(result); // 需要跳转的矩形
cesiumMainIns.flyToRect(viewer2d, bbox2, {
orientation: {
heading: 330,
pitch: -89,
roll: 0
}
})
},
highlightSpaceEntity(spaceCode) {
if (spaceCode) {
const parkingSpot = this.getParkingSpot(spaceCode);
const coordinates = parkingSpot.coordinates
if (highlightSpaceEntity) {
cesiumMainIns.updatePolygonEntity(highlightSpaceEntity, {
coordinates
})
} else {
highlightSpaceEntity = cesiumMainIns.addPolygon(viewer2d, {
coordinates,
fill: '#72f8f4',
alpha: 0.6
})
}
} else {
if (highlightSpaceEntity) {
cesiumMainIns.updatePolygonEntity(highlightSpaceEntity, {
coordinates: []
})
}
}
}
},
destroyed() {
if (window.viewer) {
if (window.viewer.primitive) {
window.viewer.primitives.removeAll();
}
window.viewer.destroy();
Cesium.CameraEventAggregator.prototype.removeInputAction;
Cesium.Texture.prototype.destroy;
delete window.viewer;
}
worker.postMessage("线程关闭");
worker.terminate();
},
};
</script>
<style scoped>
#cesium-page-css {
position: absolute;
height: 100%;
width: 100%;
}
.showBuildingBtn {
position: absolute;
right: 1%;
top: 13%;
}
.cesiumContainer2d {
position: absolute;
width: 20vw;
height: 40vh;
bottom: 4vh;
right: 1vw;
/* width: 300px;
height: 380px;
right: 20px;
bottom: 20px; */
&::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
box-shadow: 0rem 0rem 0.5rem 0.5rem rgb(191 206 233);
}
#cesium2d {
position: absolute;
width: 100%;
height: 100%;
}
}
.videoBox {
position: absolute;
width: 22vw;
height: 30vh;
top: 20vh;
right: 1vw;
/* width: 330px;
height: 280px;
right: 20px;
top: 160px; */
>video {
width: 100%;
height: 100%;
}
&::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 1;
box-shadow: 0rem 0rem 0.5rem 0.5rem rgb(191 206 233);
}
}
</style>
<style>
.cesium-widget-credits {
display: none !important;
}
</style>
import protoRoot from "@/utils/ws/base";
/**
* 解码通用的protobuf数据
* 推送格式映射在response.proto里的,使用此方法 !
* SocketResponse对应解码文件base.js里面的SocketResponse
*/
export async function decodeResponseProtoBuf(msg) {
const SocketResponse = protoRoot.lookup("SocketResponse");
let blob = msg.data;
let arrybuff = await blob.arrayBuffer();
let uinit8 = new Uint8Array(arrybuff);
const result = SocketResponse.decode(uinit8);
return result;
}
<template>
<div class="container">
<div class="headnav">
<span class="version">ver 2.0.1</span>
<div class="xinhao" :style="{ backgroundImage: `url(${imgURL})` }"></div>
<div class="angle"></div>
<span style="color: #7f8591" class="angledata">{{ heading }}</span>
<div class="vehicleStatus" v-show="avpStatus1 != '—— ——'"></div>
<span style="color: #637abe" class="vehicleStatusdata">{{
avpStatus1
}}</span>
<div class="yuan">
<div class="ttime">{{ twentyTime }}</div>
<div class="speed">
<div class="sd">{{ Math.floor(speed) }}</div>
</div>
<div class="km">km/h</div>
</div>
<div class="driveMode"></div>
<span style="color: #606873" class="driveModedata">{{ driveMode }}</span>
</div>
<div class="orderlist" v-show="(avpStatus1 == '场内行驶' ||
avpStatus1 == '自动泊车中' ||
avpStatus1 == '自动召车中' ||
avpStatus1 == '车辆停靠') &&
No != null &&
orderStatus != 25
">
<div class="order">{{ No }}</div>
<div class="durationtime">
{{ durationString }}
</div>
<div class="entertime">
{{ enterTime }}
</div>
<div class="price">
<span>{{ actualCost }}</span>
</div>
</div>
<div class="eventBox">
<!-- <div class="v2x" v-if="endTime == true" :style="{ backgroundImage: `url(${v2xImg})` }"></div>
<div class="v2x" v-if="rsiEndTime == true" :style="{ backgroundImage: `url(${rsiImg})` }"></div> -->
<!-- <div v-for="(item, index) in showEvent" v-if="!item.hide" :key="index" class="v2x"
:style="{ backgroundImage: `url(${item.backgroundImage})` }"></div> -->
<!-- </div> -->
<div v-for="(item, index) in showEvent" v-if="!item.hide" :key="index" class="v2x">
<img class="v2x-img" :src="item.backgroundImage">
<span class="v2x-span">{{ item.text }}</span>
</div>
</div>
<div class="showStatus" v-show="showStatus">
<span>已经转为{{ avpStatus1 }}状态</span>
</div>
</div>
</template>
<script>
import request from "@/utils/http/request";
let imgurl = {
imgArr: [
"xinhao1.png",
"xinhao2.png",
"xinhao3.png",
"xinhao4.png",
"xinhao5.png",
"xinhao6.png",
],
v2xImg: [
"abnormal.png",
"admission.png",
"advance.png",
"ChangeLanes.png",
"intersection.png",
"weak.png",
]
};
// rsi事件类型和显示名称映射表
let rsiTextMap = {
"38": "注意道路施工",
"100": "注意多车驶停",
"707": "注意前方路段拥堵",
"901": "注意车辆超速",
"902": "注意车辆慢速",
"903": "注意异常停车",
"904": "注意逆行"
}
// v2x预警和显示名称映射表
let v2xUIType = '';
let v2xTextMap = {
"abnormal": "异常车辆预警",
"admission": "车辆入场预警",
"advance": "前向碰撞预警",
"ChangeLanes": "盲区/变道预警",
"intersection": "交叉口碰撞预警",
"weak": "弱势交通预警",
}
export default {
props: {
speed: Number,
heading: String,
v2xname: String,
driveMode: String,
endTime: Boolean,
rsiChange: Object,
infowindowChange: Object
},
data() {
return {
avpStatus1: "—— ——", //用于二维界面的显示
avpStatus2: 0, //用于来判断是否出现了场景切换
showStatus: false, //用于avpStatus转场动画的显示隐藏,false为隐藏
twentyTime: 0, //12小时制时间
No: 0, //订单编号
durationString: "", //订单总时长
enterTime: "", //入场时间
actualCost: 0, //订单金额
orderStatus: 0, //订单状态
imgURL: require("@/assets/img/other/xinhao5.png"), //信号质量默认
v2xImg: require("@/assets/img/other/v2xicon/billbord/abnormal.png"), //v2x预警事件默认展示
rsiImg: require("@/assets/img/other/v2xicon/billbord/abnormal.png"), //v2x预警事件默认展示
showEvent: [],
};
},
mounted() {
this.isShowInfowindow = false; // 是否可以弹提示窗
this.allmethods();
},
beforeUnmounted() {
if (this.getCurrentTime) {
clearInterval(this.getCurrentTime);
}
if (this.getTimeOut) {
clearInterval(this.getTimeOut);
}
if (this.getOrderData) {
clearInterval(this.getOrderData);
}
},
watch: {
endTime(value) {
this.$nextTick(() => {
this.eventFunc('endTime', value)
})
},
rsiChange(value) {
// rsi事件改变,包括新增和删除
this.$nextTick(() => {
this.eventFunc('rsi', value)
})
},
infowindowChange(value) {
// 显示弹窗提醒
this.$nextTick(() => {
this.eventFunc('infowindow', value)
})
},
//监听v2x事件的改变,并根据事件的名称渲染对应的图片
v2xname(v2xname) {
switch (v2xname) {
case "异常车辆预警":
this.v2xImg = require("@/assets/img/other/v2xicon/billbord/" +
imgurl.v2xImg[0]);
v2xUIType = 'abnormal';
break;
case "车辆入场预警":
this.v2xImg = require("@/assets/img/other/v2xicon/billbord/" +
imgurl.v2xImg[1]);
v2xUIType = 'admission';
break;
case "前向碰撞预警":
this.v2xImg = require("@/assets/img/other/v2xicon/billbord/" +
imgurl.v2xImg[2]);
v2xUIType = 'advance';
break;
case "盲区/变道预警":
this.v2xImg = require("@/assets/img/other/v2xicon/billbord/" +
imgurl.v2xImg[3]);
v2xUIType = 'ChangeLanes';
break;
case "交叉路口碰撞预警":
this.v2xImg = require("@/assets/img/other/v2xicon/billbord/" +
imgurl.v2xImg[4]);
v2xUIType = 'intersection';
break;
case "弱势交通参与者碰撞预警":
this.v2xImg = require("@/assets/img/other/v2xicon/billbord/" +
imgurl.v2xImg[5]);
v2xUIType = 'weak';
break;
default:
break;
}
// 触发ui
this.eventFunc('endTime', this.endTime)
},
},
methods: {
eventFunc(name, value) {
if (name === 'endTime') {
let index = this.showEvent.findIndex(e => { return e.type == 'v2x' })
if (value) {
if (index > -1) {
// 如果原本存在v2x,则需要更新图片
this.showEvent[index].backgroundImage = this.v2xImg
this.showEvent[index].text = v2xTextMap[v2xUIType]
} else {
// 如果原本没有v2x,则新展示v2x
this.showEvent.push({
backgroundImage: this.v2xImg,
text: v2xTextMap[v2xUIType],
type: 'v2x'
})
}
} else {
if (index > -1) {
// 删除原有的v2x
this.showEvent.splice(index, 1)
}
}
this.showEvent = [...this.showEvent]
} else if (name === 'rsi') {
// rsi事件,可以显示多个弹窗
let { type, eventId, eventType } = value;
// 新增
if (type == 'add') {
let img = this.getImgByPathAndType({
path: 'rsiicon',
type: eventType
})
if (!img) {
return
}
// 判断如果当前存在这种类型的提示,则不重复弹窗
let hasLabel = this.showEvent.find(e => {
return e.eventType == eventType
})
this.showEvent.push({
type: 'rsi',
eventId,
eventType,
text: rsiTextMap[eventType],
backgroundImage: img,
hide: !!hasLabel
})
} else {
// 删除
for (let i = this.showEvent.length - 1; i >= 0; i--) {
let event = this.showEvent[i]
if (event.type == 'rsi' && event.eventId == eventId) {
this.showEvent.splice(i, 1);
break;
}
}
for (let i = this.showEvent.length - 1; i >= 0; i--) {
// 如果存在相同eventType的事件,那么需要显示这个事件
let hasLabelIndex = this.showEvent.findIndex(e => {
return e.eventType == eventType
})
if (hasLabelIndex > -1) {
this.showEvent[hasLabelIndex].hide = false;
break;
}
}
}
this.showEvent = [...this.showEvent]
} else if (name === 'infowindow') {
// 已经有提示窗,不重复弹窗
if (this.isShowInfowindow) {
return;
}
this.isShowInfowindow = true;
let { type, text } = value;
let img = this.getImgByPathAndType({
path: 'infowindow',
type: type
});
this.showEvent.push({
type: 'infowindow',
backgroundImage: img,
text
})
// 3秒之后清除这个弹窗
setTimeout(() => {
// 3秒之内不重复弹窗
this.isShowInfowindow = false;
let index = this.showEvent.findIndex(e => { return e.type == 'infowindow' })
if (index > -1) {
this.showEvent.splice(index, 1)
}
}, 3000)
}
},
// 根据rsi的类型,渲染对应的图片
getImgByPathAndType(options) {
let { path, type } = options;
return require("@/assets/img/other/" + path + "/billbord/" + type + '.png');
switch (type) {
case "38":
case "100":
case "707":
case "901":
case "902":
case "903":
case "904":
case "914":
return require("@/assets/img/other/" + path + "/" + type + '.png');
default:
return ''
}
},
allmethods() {
this.getOrderData();
this.getTimeOut();
this.getCurrentTime();
setInterval(() => {
this.getTimeOut();
}, 5000);
setInterval(() => {
this.getOrderData();
}, 1000);
setInterval(() => {
this.getCurrentTime();
}, 1000);
},
//获取12小时制时间
getCurrentTime() {
const date = new Date();
const hours = date.getHours();
const minutes = date.getMinutes();
const period = hours >= 12 ? "PM" : "AM";
const hours12 = hours % 12 || 12;
this.twentyTime = `${hours12}:${this.addZero(minutes)} ${period}`;
},
addZero(value) {
return value < 10 ? `0${value}` : value;
},
//获取订单信息
async getOrderData() {
let data = JSON.stringify({
vehiclePlate: "吉AC242",
});
await request
.post(
"/avp/avpMonitor/getOrderParkingInfoForPlate",
data /* , {
headers: {
"Content-Type": "application/json",
"Tenant-Id": "1484465260508323841",
},
} */
)
.then((response) => {
const OrderData = response;
this.No = OrderData.orderNo;
this.durationString = OrderData.durationString;
this.enterTime = OrderData.enterTime;
this.actualCost = OrderData.actualCost;
this.orderStatus = OrderData.orderStatus;
const avpStatus = OrderData.avpStatus;
if (this.avpStatus2 != avpStatus) {
if (avpStatus != 3 && this.avpStatus2 == 3) {
this.$parent.endParkingVehicle(); // 结束泊车
} else if (avpStatus == 3) {
this.$parent.startParkingVehicle(); // 开始泊车
}
if (avpStatus != 5 && this.avpStatus2 == 5) {
// 由招车转为其他状态
this.$parent.endRecruitmentVehicle();
} else if (avpStatus == 5) {
// 招车需要显示路径
this.$parent.startRecruitmentVehicle();
}
if (avpStatus == 1) {
this.avpStatus1 = "场外行驶";
this.avpStatus2 = avpStatus;
this.showStatus = true;
setTimeout(() => {
this.showStatus = false;
}, 3000);
} else if (avpStatus == 2 || avpStatus == 6) {
this.avpStatus1 = "场内行驶";
this.avpStatus2 = avpStatus;
this.showStatus = true;
setTimeout(() => {
this.showStatus = false;
}, 3000);
} else if (avpStatus == 3) {
this.avpStatus1 = "自动泊车中";
this.avpStatus2 = avpStatus;
this.showStatus = true;
setTimeout(() => {
this.showStatus = false;
}, 3000);
} else if (avpStatus == 4) {
this.avpStatus1 = "车辆停靠";
this.avpStatus2 = avpStatus;
this.showStatus = true;
setTimeout(() => {
this.showStatus = false;
}, 3000);
} else if (avpStatus == 5) {
this.avpStatus1 = "自动召车中";
this.avpStatus2 = avpStatus;
this.showStatus = true;
setTimeout(() => {
this.showStatus = false;
}, 3000);
}
}
if (needRecord) {
window.recordData.getOrderParkingInfoForPlate.push(response)
}
});
},
//获取网络质量
async getTimeOut() {
const startTime = new Date().getTime();
await request.post("/avp/siteLine/getNetworkQuality", null).then(() => {
const endTime = new Date().getTime();
const duration = endTime - startTime;
if (duration >= 0 && duration <= 100) {
this.imgURL = require("@/assets/img/other/" + imgurl.imgArr[4]);
} else if (duration >= 101 && duration <= 200) {
this.imgURL = require("@/assets/img/other/" + imgurl.imgArr[3]);
} else if (duration >= 201 && duration <= 300) {
this.imgURL = require("@/assets/img/other/" + imgurl.imgArr[2]);
} else if (duration >= 301 && duration <= 400) {
this.imgURL = require("@/assets/img/other/" + imgurl.imgArr[1]);
} else {
this.imgURL = require("@/assets/img/other/" + imgurl.imgArr[0]);
}
});
},
},
};
</script>
<style scoped>
.container {
font-size: 1.4vw;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
}
.headnav {
position: relative;
display: flex;
justify-content: center;
background-color: rgba(197, 203, 215, 0.8);
margin-top: 0;
height: 10.56vh;
width: 100vw;
backdrop-filter: blur(10px);
}
.headnav div {
display: inline-block;
}
.version {
position: absolute;
top: 46%;
left: 1%;
font-size: 0.5rem;
color: gray;
}
.xinhao {
position: absolute;
left: 96%;
top: 55%;
width: 2.3%;
height: 31%;
background-size: 100% 100%;
/* z-index: 999; */
}
.angle {
position: absolute;
left: 12.414%;
top: 46%;
width: 2.5%;
height: 42%;
background-image: url("@/assets/img/other/angle.png");
background-size: 100% 100%;
}
.angledata {
position: absolute;
margin-top: 3%;
margin-right: 62%;
}
.vehicleStatus {
position: absolute;
background-image: url("@/assets/img/other/stop.png");
background-size: 100% 100%;
left: 23.477%;
top: 46%;
width: 2.45%;
height: 42%;
}
.vehicleStatusdata {
position: absolute;
margin-top: 3%;
margin-right: 39.2%;
width: 8%;
}
.yuan {
position: absolute;
background-image: url("@/assets/img/other/speed.png");
background-size: 100% 100%;
text-align: center;
/* left: 28%; */
height: 320%;
width: 50%;
margin-top: -4.17%;
}
.ttime {
position: absolute;
left: 44%;
margin-top: 8%;
}
/* .speed {
position: absolute;
left: 40.8%;
top: 38%;
} */
.sd {
font-size: 4vw;
font-weight: bold;
text-align: center;
position: absolute;
top: 38%;
right: 51%;
}
.km {
position: absolute;
top: 53%;
left: 50%;
}
.driveMode {
position: absolute;
left: 72.46875%;
top: 46%;
width: 2.5%;
height: 42%;
background-image: url("@/assets/img/other/driveMode.png");
background-size: 100% 100%;
}
.driveModedata {
position: absolute;
margin-top: 3%;
margin-left: 58%;
}
.orderlist {
position: absolute;
left: 1.71875%;
background-image: url("@/assets/img/other/list.png");
background-size: 100% 100%;
height: 29%;
width: 24.5%;
top: 13.194%;
opacity: 0.8;
backdrop-filter: blur(10px) saturate(200%);
}
.orderlist div {
position: relative;
height: 10%;
width: 20vw;
padding-left: 18%;
padding-top: 7.8%;
}
.eventBox {
position: absolute;
top: 21.236%;
width: 14%;
}
.v2x {
/* position: absolute; */
/* top: 21.236%; */
display: flex;
align-items: center;
background-size: cover;
height: 4.5vh;
width: 100%;
display: flex;
margin-bottom: 0.8vh;
background: rgba(124, 50, 50, 0.6);
/* border-radius: 10px 10px 10px 10px; */
border-radius: 0.4vw;
border: 2px solid #FA5151;
/* padding-left: 20px; */
padding-left: 0.5vw;
}
.v2x .v2x-img {
height: 3.5vh;
width: auto;
pointer-events: none;
/* margin-right: 16px; */
margin-right: 0.8vw;
vertical-align: middle;
}
.v2x .v2x-span {
display: inline-flex;
align-items: center;
font-weight: 400;
/* font-size: 24px; */
font-size: 2vh;
color: #fff;
}
.orderlist .price {
padding-top: 5.5%;
}
.price span {
font-size: 2vw;
color: #3662ec;
font-weight: bold;
}
.showStatus {
position: absolute;
top: 40%;
justify-content: center;
width: 25vw;
height: 10vh;
background-color: rgba(197, 203, 215, 0.8);
backdrop-filter: blur(10px) saturate(200%);
border-radius: 25px;
border: #fff 5px solid;
}
.showStatus span {
position: absolute;
justify-content: center;
line-height: 10vh;
width: 25vw;
text-align: center;
color: blueviolet;
font-size: 1.8vw;
}
@media (min-width: 2560px) and (min-height: 1550px) {
.container {
font-size: 1.4vw;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
}
.headnav {
position: relative;
display: flex;
justify-content: center;
background-color: rgba(197, 203, 215, 0.8);
margin-top: 0;
height: 10.56vh;
width: 100vw;
backdrop-filter: blur(10px);
}
.headnav div {
display: inline-block;
}
.xinhao {
position: absolute;
left: 96%;
top: 56%;
width: 2.8%;
height: 31%;
background-size: 100% 100%;
/* z-index: 999; */
}
.angle {
position: absolute;
left: 12.414%;
top: 46%;
width: 2.8%;
height: 42%;
background-image: url("@/assets/img/other/angle.png");
background-size: 100% 100%;
}
.angledata {
position: absolute;
margin-top: 3.5%;
margin-right: 62%;
}
.vehicleStatus {
position: absolute;
background-image: url("@/assets/img/other/stop.png");
background-size: 100% 100%;
left: 23.477%;
top: 46%;
width: 2.8%;
height: 42%;
}
.vehicleStatusdata {
position: absolute;
margin-top: 3.5%;
margin-right: 39.2%;
width: 8%;
}
.yuan {
position: absolute;
background-image: url("@/assets/img/other/speed.png");
background-size: 100% 100%;
text-align: center;
height: 320%;
width: 50%;
margin-top: -5.3%;
}
.ttime {
position: absolute;
left: 44%;
margin-top: 11%;
}
.sd {
font-size: 4vw;
font-weight: bold;
text-align: center;
position: absolute;
top: 41%;
right: 51%;
}
.km {
position: absolute;
top: 54%;
left: 50%;
}
.driveMode {
position: absolute;
left: 72.46875%;
top: 46%;
width: 2.8%;
height: 42%;
background-image: url("@/assets/img/other/driveMode.png");
background-size: 100% 100%;
}
.driveModedata {
position: absolute;
margin-top: 3.5%;
margin-left: 58%;
}
.orderlist {
position: absolute;
left: 1.71875%;
background-image: url("@/assets/img/other/list.png");
background-size: 100% 100%;
height: 29%;
width: 27%;
top: 13.194%;
opacity: 0.8;
backdrop-filter: blur(10px) saturate(200%);
}
.orderlist .order {
position: absolute;
top: 1.2%;
height: 25%;
width: 20vw;
}
.orderlist .durationtime {
position: absolute;
top: 23.5%;
height: 25%;
width: 20vw;
}
.orderlist .entertime {
position: absolute;
top: 43.5%;
height: 25%;
width: 20vw;
}
.orderlist .price {
top: 66%;
}
.price span {
font-size: 2vw;
color: blue;
}
/* .v2x {
position: absolute;
top: 21.236%;
display: inline-block;
background-size: cover;
height: 5.54%;
width: 17%;
display: flex;
justify-content: center;
} */
}
@media (min-width: 2560px) and (min-height: 1600px) {
.container {
font-size: 1.4vw;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
}
.headnav {
position: relative;
display: flex;
justify-content: center;
background-color: rgba(197, 203, 215, 0.8);
margin-top: 0;
height: 10.56vh;
width: 100vw;
backdrop-filter: blur(10px);
}
.headnav div {
display: inline-block;
}
.xinhao {
position: absolute;
left: 96%;
top: 55%;
width: 2.8%;
height: 31%;
background-size: 100% 100%;
/* z-index: 999; */
}
.angle {
position: absolute;
left: 12.414%;
top: 46%;
width: 2.8%;
height: 42%;
background-image: url("@/assets/img/other/angle.png");
background-size: 100% 100%;
}
.angledata {
position: absolute;
margin-top: 3.8%;
margin-right: 62%;
}
.vehicleStatus {
position: absolute;
background-image: url("@/assets/img/other/stop.png");
background-size: 100% 100%;
left: 23.477%;
top: 46%;
width: 2.8%;
height: 42%;
}
.vehicleStatusdata {
position: absolute;
margin-top: 3.8%;
margin-right: 39.2%;
width: 8%;
}
.yuan {
position: absolute;
background-image: url("@/assets/img/other/speed.png");
background-size: 100% 100%;
text-align: center;
height: 320%;
width: 50%;
margin-top: -4.9%;
}
.ttime {
position: absolute;
left: 44%;
margin-top: 10.8%;
}
.sd {
font-size: 4vw;
font-weight: bold;
text-align: center;
position: absolute;
top: 40.8%;
right: 51%;
}
.km {
position: absolute;
top: 53%;
left: 50%;
}
.driveMode {
position: absolute;
left: 72.46875%;
top: 46%;
width: 2.8%;
height: 42%;
background-image: url("@/assets/img/other/driveMode.png");
background-size: 100% 100%;
}
.driveModedata {
position: absolute;
margin-top: 3.8%;
margin-left: 58%;
}
.orderlist {
position: absolute;
left: 1.71875%;
background-image: url("@/assets/img/other/list.png");
background-size: 100% 100%;
height: 29%;
width: 27%;
top: 13.194%;
opacity: 0.8;
backdrop-filter: blur(10px) saturate(200%);
}
.orderlist .order {
position: absolute;
top: 1%;
height: 25%;
width: 20vw;
}
.orderlist .durationtime {
position: absolute;
top: 23%;
height: 25%;
width: 20vw;
}
.orderlist .entertime {
position: absolute;
top: 44%;
height: 25%;
width: 20vw;
}
.orderlist .price {
top: 66%;
}
.price span {
font-size: 2vw;
color: blue;
}
/* .v2x {
position: absolute;
top: 21.236%;
display: inline-block;
background-size: cover;
height: 5.54%;
width: 17%;
display: flex;
justify-content: center;
} */
}
</style>
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149740421,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149740421}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149740823,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149740823}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149741226,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149741226}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149741628,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149741628}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149742031,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149742031}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149742433,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149742433}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149742836,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149742836}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149743238,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149743238}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149743641,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149743641}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149744043,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149744043}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149744446,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149744446}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149744848,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149744848}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149745049,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149745049}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149745653,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149745653}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149746056,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149746056}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149746458,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149746458}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149746860,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149746860}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149747263,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149747263}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149747666,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149747666}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149748068,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149748068}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149748471,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149748471}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149748873,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149748873}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149749276,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149749276}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149749678,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149749678}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149750081,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149750081}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149750483,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149750483}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149750886,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149750886}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149751288,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149751288}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149751690,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149751690}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149752093,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149752093}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149752495,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149752495}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149752898,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149752898}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149753300,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149753300}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149753502,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149753502}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149753904,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149753904}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149754306,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149754307}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149754910,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149754910}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149755313,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149755313}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149755514,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149755514}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149756118,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149756118}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149756319,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149756319}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149756721,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149756721}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149757123,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149757123}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149757526,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149757526}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149757928,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149757928}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149758532,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149758532}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149758733,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149758733}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149759337,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149759337}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149759538,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149759538}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149760141,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149760141}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149760343,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149760343}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149760947,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149760947}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149761148,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149761148}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149761551,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149761551}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149761953,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149761953}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149762356,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149762356}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149762758,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149762758}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149763161,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149763161}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149763564,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149763564}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149763966,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149763966}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149764368,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149764368}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149764771,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149764771}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149765173,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149765173}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149765576,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149765576}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149765978,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149765978}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149766381,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149766381}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149766783,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149766783}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149767186,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149767186}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149767589,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149767589}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149767991,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149767991}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149768393,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149768393}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149768796,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149768796}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149769199,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149769199}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149769601,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149769601}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149770003,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149770003}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149770406,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149770406}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149770809,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149770809}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149771211,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149771211}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149771614,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149771614}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149772016,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149772016}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149772419,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149772419}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149772821,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149772821}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149773224,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149773224}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149773626,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149773626}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149774029,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149774029}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149774431,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149774431}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149774834,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149774834}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149775237,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149775237}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149775639,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149775639}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149776042,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149776042}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149776444,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149776444}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149776847,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149776847}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149777249,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149777249}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149777652,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149777652}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149778054,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149778054}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149778456,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149778456}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149778859,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149778859}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149779261,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149779261}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149779663,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149779663}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149780066,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149780066}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149780468,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149780468}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149780871,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149780871}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149781274,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149781274}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149781676,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149781676}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149782078,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149782078}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149782481,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149782481}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149782682,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149782682}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149783085,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149783085}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149783487,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149783487}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149783889,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149783889}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149784292,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149784292}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149784695,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149784695}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149785098,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149785098}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149785500,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149785500}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149785903,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149785903}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149786305,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149786305}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149786708,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149786708}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149787110,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149787110}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149787513,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149787513}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149787915,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149787915}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149788318,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149788318}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149788720,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149788720}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149789123,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149789123}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149789525,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149789525}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149789928,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149789928}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149790330,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149790330}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149790732,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149790732}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149791135,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149791135}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149791537,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149791537}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149791940,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149791940}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149792543,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149792543}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149792745,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149792745}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149793147,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149793147}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149793550,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149793550}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149793952,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149793952}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149794355,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149794355}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149794757,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149794757}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149795160,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149795160}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149795562,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-30}],"wsTime":1750149795562}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149795965,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-46}],"wsTime":1750149795965}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149796367,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-44}],"wsTime":1750149796367}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149796769,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-44}],"wsTime":1750149796769}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149797172,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-44}],"wsTime":1750149797172}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149797575,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-44}],"wsTime":1750149797575}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149797977,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-44}],"wsTime":1750149797977}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149798379,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-44}],"wsTime":1750149798379}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.149494564763,"latitude":43.83906463,"longitude":125.14240189,"obuCode":"O-HK-2687","reportTime":1750149798782,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-44}],"wsTime":1750149798782}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.0992243724717,"latitude":43.83906515,"longitude":125.14240163,"obuCode":"O-HK-2687","reportTime":1750149799184,"speed":0.46,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-46}],"wsTime":1750149799184}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.9835756094451,"latitude":43.83906581,"longitude":125.14240103,"obuCode":"O-HK-2687","reportTime":1750149799587,"speed":0.94,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-45}],"wsTime":1750149799587}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.8266998245882,"latitude":43.83906703,"longitude":125.14239998,"obuCode":"O-HK-2687","reportTime":1750149799989,"speed":1.58,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-44}],"wsTime":1750149799989}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.68852145521316,"latitude":43.83906815,"longitude":125.14239893,"obuCode":"O-HK-2687","reportTime":1750149800391,"speed":1.34,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-34}],"wsTime":1750149800391}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.56541412561285,"latitude":43.83906926,"longitude":125.1423979,"obuCode":"O-HK-2687","reportTime":1750149800794,"speed":1.29,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-30}],"wsTime":1750149800794}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.46087125017664,"latitude":43.83907075,"longitude":125.14239673,"obuCode":"O-HK-2687","reportTime":1750149801197,"speed":2.02,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-27}],"wsTime":1750149801197}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.3209889759748,"latitude":43.83907271,"longitude":125.14239509,"obuCode":"O-HK-2687","reportTime":1750149801600,"speed":2.19,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-26}],"wsTime":1750149801600}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.1660119837072,"latitude":43.83907505,"longitude":125.14239307,"obuCode":"O-HK-2687","reportTime":1750149802002,"speed":2.79,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-20}],"wsTime":1750149802002}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.0261433698837,"latitude":43.83907771,"longitude":125.14239076,"obuCode":"O-HK-2687","reportTime":1750149802404,"speed":3.26,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-18}],"wsTime":1750149802404}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":327.88650698249194,"latitude":43.83908074,"longitude":125.14238798,"obuCode":"O-HK-2687","reportTime":1750149802807,"speed":3.95,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-12}],"wsTime":1750149802807}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":327.7962528627994,"latitude":43.83908395,"longitude":125.14238512,"obuCode":"O-HK-2687","reportTime":1750149803209,"speed":4.08,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-5}],"wsTime":1750149803209}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":327.77733323879846,"latitude":43.8390878,"longitude":125.1423818,"obuCode":"O-HK-2687","reportTime":1750149803612,"speed":4.72,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149803612}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":327.74861912352776,"latitude":43.83909172,"longitude":125.14237826,"obuCode":"O-HK-2687","reportTime":1750149804014,"speed":4.75,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149804014}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":327.81438018485665,"latitude":43.8390961,"longitude":125.14237462,"obuCode":"O-HK-2687","reportTime":1750149804417,"speed":5.2,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149804417}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":327.8345702240432,"latitude":43.83910062,"longitude":125.14237062,"obuCode":"O-HK-2687","reportTime":1750149804820,"speed":5.21,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":2}],"wsTime":1750149804820}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":327.87443120803937,"latitude":43.8391054,"longitude":125.14236647,"obuCode":"O-HK-2687","reportTime":1750149805221,"speed":5.6,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":3}],"wsTime":1750149805221}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":327.96498585605536,"latitude":43.83911042,"longitude":125.1423622,"obuCode":"O-HK-2687","reportTime":1750149805624,"speed":5.73,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":5}],"wsTime":1750149805624}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.08828443095246,"latitude":43.83911551,"longitude":125.14235785,"obuCode":"O-HK-2687","reportTime":1750149806027,"speed":6.02,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":7}],"wsTime":1750149806027}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.2075805149959,"latitude":43.83912063,"longitude":125.14235339,"obuCode":"O-HK-2687","reportTime":1750149806429,"speed":6.1,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":7}],"wsTime":1750149806429}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.32908958033045,"latitude":43.83912618,"longitude":125.14234872,"obuCode":"O-HK-2687","reportTime":1750149806832,"speed":6.25,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":4}],"wsTime":1750149806832}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.45512023089555,"latitude":43.83913213,"longitude":125.14234382,"obuCode":"O-HK-2687","reportTime":1750149807234,"speed":7.05,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":2}],"wsTime":1750149807234}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.54068884081744,"latitude":43.8391386,"longitude":125.14233837,"obuCode":"O-HK-2687","reportTime":1750149807644,"speed":7.77,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149807644}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.6185256765989,"latitude":43.83914555,"longitude":125.14233266,"obuCode":"O-HK-2687","reportTime":1750149808039,"speed":7.73,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149808039}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.6607089249129,"latitude":43.83915281,"longitude":125.14232652,"obuCode":"O-HK-2687","reportTime":1750149808442,"speed":8.36,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149808442}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.73048613747375,"latitude":43.83916046,"longitude":125.14232012,"obuCode":"O-HK-2687","reportTime":1750149808844,"speed":9.18,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149808844}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.7948165015426,"latitude":43.83916861,"longitude":125.14231331,"obuCode":"O-HK-2687","reportTime":1750149809247,"speed":9.3,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149809247}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.82771069258536,"latitude":43.83917718,"longitude":125.14230604,"obuCode":"O-HK-2687","reportTime":1750149809649,"speed":10.65,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149809649}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.8666017897194,"latitude":43.83918595,"longitude":125.14229881,"obuCode":"O-HK-2687","reportTime":1750149810052,"speed":10.33,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149810052}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":328.9396301723252,"latitude":43.83919537,"longitude":125.14229093,"obuCode":"O-HK-2687","reportTime":1750149810454,"speed":11.32,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149810454}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.0008150069102,"latitude":43.83920482,"longitude":125.14228316,"obuCode":"O-HK-2687","reportTime":1750149810857,"speed":10.63,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149810857}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.03002089580116,"latitude":43.83921469,"longitude":125.142275,"obuCode":"O-HK-2687","reportTime":1750149811259,"speed":11.62,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149811259}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.0026454976078,"latitude":43.83922689,"longitude":125.14226479,"obuCode":"O-HK-2687","reportTime":1750149811662,"speed":12.67,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149811662}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.0124536492559,"latitude":43.83923856,"longitude":125.14225517,"obuCode":"O-HK-2687","reportTime":1750149812064,"speed":14.93,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149812064}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.0189150082107,"latitude":43.83925018,"longitude":125.14224555,"obuCode":"O-HK-2687","reportTime":1750149812467,"speed":12.95,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149812467}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.0244064803034,"latitude":43.83926248,"longitude":125.14223528,"obuCode":"O-HK-2687","reportTime":1750149812870,"speed":14.35,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149812870}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.0471646706179,"latitude":43.83927489,"longitude":125.14222501,"obuCode":"O-HK-2687","reportTime":1750149813272,"speed":14.5,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149813272}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.0406896512847,"latitude":43.83928785,"longitude":125.14221417,"obuCode":"O-HK-2687","reportTime":1750149813674,"speed":15.89,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149813674}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.0617812754417,"latitude":43.83930032,"longitude":125.14220394,"obuCode":"O-HK-2687","reportTime":1750149814077,"speed":14.85,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149814077}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.10049478765734,"latitude":43.8393136,"longitude":125.14219302,"obuCode":"O-HK-2687","reportTime":1750149814479,"speed":16.6,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149814479}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.12817071417425,"latitude":43.8393282,"longitude":125.14218088,"obuCode":"O-HK-2687","reportTime":1750149814881,"speed":14.65,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149814881}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.12625826120666,"latitude":43.83934091,"longitude":125.14217045,"obuCode":"O-HK-2687","reportTime":1750149815284,"speed":14.02,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149815284}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.1523632442144,"latitude":43.83935249,"longitude":125.14216079,"obuCode":"O-HK-2687","reportTime":1750149815686,"speed":13.17,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149815686}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.229803929024,"latitude":43.83936339,"longitude":125.14215198,"obuCode":"O-HK-2687","reportTime":1750149816088,"speed":12.05,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149816088}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.3076271044272,"latitude":43.83937165,"longitude":125.14214519,"obuCode":"O-HK-2687","reportTime":1750149816491,"speed":3.38,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149816491}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.3463269562644,"latitude":43.83938072,"longitude":125.14213776,"obuCode":"O-HK-2687","reportTime":1750149816894,"speed":10.32,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149816894}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.41712869720084,"latitude":43.83938879,"longitude":125.1421313,"obuCode":"O-HK-2687","reportTime":1750149817295,"speed":8.78,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149817295}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.47982983378154,"latitude":43.83939575,"longitude":125.14212568,"obuCode":"O-HK-2687","reportTime":1750149817698,"speed":7.8,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":2}],"wsTime":1750149817698}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.5469159518094,"latitude":43.83940135,"longitude":125.14212113,"obuCode":"O-HK-2687","reportTime":1750149818100,"speed":6.1,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149818100}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.64308501532315,"latitude":43.83940598,"longitude":125.14211742,"obuCode":"O-HK-2687","reportTime":1750149818503,"speed":5.19,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":14}],"wsTime":1750149818503}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.80116291347395,"latitude":43.83940968,"longitude":125.14211456,"obuCode":"O-HK-2687","reportTime":1750149818905,"speed":4.15,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":11}],"wsTime":1750149818905}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.93279431915846,"latitude":43.83941293,"longitude":125.14211194,"obuCode":"O-HK-2687","reportTime":1750149819308,"speed":3.78,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":6}],"wsTime":1750149819308}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":330.0203300235613,"latitude":43.83941615,"longitude":125.14210947,"obuCode":"O-HK-2687","reportTime":1750149819710,"speed":3.52,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149819710}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.99520858779397,"latitude":43.83941928,"longitude":125.14210699,"obuCode":"O-HK-2687","reportTime":1750149820113,"speed":3.7,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-5}],"wsTime":1750149820113}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.9620002080494,"latitude":43.83942269,"longitude":125.14210411,"obuCode":"O-HK-2687","reportTime":1750149820515,"speed":4.11,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-8}],"wsTime":1750149820515}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.8848054100499,"latitude":43.83942662,"longitude":125.14210101,"obuCode":"O-HK-2687","reportTime":1750149820918,"speed":4.53,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-7}],"wsTime":1750149820918}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.8077881969689,"latitude":43.83943069,"longitude":125.14209766,"obuCode":"O-HK-2687","reportTime":1750149821320,"speed":4.75,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-10}],"wsTime":1750149821320}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.7179165678698,"latitude":43.83943487,"longitude":125.14209432,"obuCode":"O-HK-2687","reportTime":1750149821723,"speed":4.88,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-9}],"wsTime":1750149821723}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.70141483083506,"latitude":43.8394391,"longitude":125.14209086,"obuCode":"O-HK-2687","reportTime":1750149822125,"speed":4.82,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":15}],"wsTime":1750149822125}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.8894362783072,"latitude":43.83944331,"longitude":125.14208761,"obuCode":"O-HK-2687","reportTime":1750149822528,"speed":4.93,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":9}],"wsTime":1750149822528}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":330.0105491926698,"latitude":43.83944759,"longitude":125.14208423,"obuCode":"O-HK-2687","reportTime":1750149822930,"speed":4.67,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":4}],"wsTime":1750149822930}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":330.07401531043763,"latitude":43.83945176,"longitude":125.14208087,"obuCode":"O-HK-2687","reportTime":1750149823332,"speed":4.81,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149823332}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":330.0955987082149,"latitude":43.83945605,"longitude":125.14207749,"obuCode":"O-HK-2687","reportTime":1750149823534,"speed":4.96,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149823534}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":330.1059532749966,"latitude":43.83946045,"longitude":125.14207407,"obuCode":"O-HK-2687","reportTime":1750149824137,"speed":4.98,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149824137}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":330.09471078362276,"latitude":43.8394647,"longitude":125.14207058,"obuCode":"O-HK-2687","reportTime":1750149824339,"speed":4.69,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-6}],"wsTime":1750149824339}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":330.0263132692742,"latitude":43.83946926,"longitude":125.14206699,"obuCode":"O-HK-2687","reportTime":1750149824942,"speed":5.11,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-7}],"wsTime":1750149824942}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.9511265468907,"latitude":43.83947353,"longitude":125.14206343,"obuCode":"O-HK-2687","reportTime":1750149825345,"speed":5.36,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-4}],"wsTime":1750149825345}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.90436707183284,"latitude":43.83947783,"longitude":125.14205992,"obuCode":"O-HK-2687","reportTime":1750149825546,"speed":5.24,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-8}],"wsTime":1750149825546}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.83851038785554,"latitude":43.83948235,"longitude":125.14205645,"obuCode":"O-HK-2687","reportTime":1750149826150,"speed":5.03,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-6}],"wsTime":1750149826150}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.780877251639,"latitude":43.83948671,"longitude":125.1420531,"obuCode":"O-HK-2687","reportTime":1750149826552,"speed":5.29,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-14}],"wsTime":1750149826552}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.61449384345747,"latitude":43.83949096,"longitude":125.14204962,"obuCode":"O-HK-2687","reportTime":1750149826753,"speed":4.8,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-16}],"wsTime":1750149826753}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.40964280987043,"latitude":43.83949519,"longitude":125.14204602,"obuCode":"O-HK-2687","reportTime":1750149827156,"speed":5.2,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-6}],"wsTime":1750149827156}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":329.44302877453345,"latitude":43.83949949,"longitude":125.14204245,"obuCode":"O-HK-2687","reportTime":1750149827759,"speed":5.01,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":19}],"wsTime":1750149827759}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":330.00360972047315,"latitude":43.83950386,"longitude":125.14203913,"obuCode":"O-HK-2687","reportTime":1750149827961,"speed":5.04,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":57}],"wsTime":1750149827961}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":331.01081673623986,"latitude":43.83950852,"longitude":125.14203589,"obuCode":"O-HK-2687","reportTime":1750149828564,"speed":4.85,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":99}],"wsTime":1750149828564}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":332.79105090189034,"latitude":43.83951309,"longitude":125.14203307,"obuCode":"O-HK-2687","reportTime":1750149828766,"speed":4.9,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":155}],"wsTime":1750149828766}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":335.61228785932076,"latitude":43.83951805,"longitude":125.14203059,"obuCode":"O-HK-2687","reportTime":1750149829168,"speed":5.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":210}],"wsTime":1750149829168}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":339.0933757320878,"latitude":43.83952297,"longitude":125.14202892,"obuCode":"O-HK-2687","reportTime":1750149829772,"speed":4.76,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":251}],"wsTime":1750149829772}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":343.23100870863317,"latitude":43.83952806,"longitude":125.14202775,"obuCode":"O-HK-2687","reportTime":1750149830174,"speed":4.83,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":270}],"wsTime":1750149830174}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":347.4929647884511,"latitude":43.83953298,"longitude":125.14202722,"obuCode":"O-HK-2687","reportTime":1750149830577,"speed":4.81,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":281}],"wsTime":1750149830577}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":352.40747714157203,"latitude":43.8395381,"longitude":125.14202741,"obuCode":"O-HK-2687","reportTime":1750149830979,"speed":5.14,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":314}],"wsTime":1750149830979}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":357.51628105582313,"latitude":43.83954303,"longitude":125.14202824,"obuCode":"O-HK-2687","reportTime":1750149831180,"speed":4.81,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":317}],"wsTime":1750149831180}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":2.665656293744121,"latitude":43.83954792,"longitude":125.14202965,"obuCode":"O-HK-2687","reportTime":1750149831583,"speed":4.73,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":316}],"wsTime":1750149831583}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":7.873115460366904,"latitude":43.83955278,"longitude":125.14203168,"obuCode":"O-HK-2687","reportTime":1750149832186,"speed":5.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":316}],"wsTime":1750149832186}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":12.715842525311018,"latitude":43.83955716,"longitude":125.14203421,"obuCode":"O-HK-2687","reportTime":1750149832589,"speed":4.38,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":324}],"wsTime":1750149832589}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":17.748175641614665,"latitude":43.83956138,"longitude":125.14203728,"obuCode":"O-HK-2687","reportTime":1750149832991,"speed":4.34,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":325}],"wsTime":1750149832991}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":22.993870207211174,"latitude":43.83956554,"longitude":125.14204099,"obuCode":"O-HK-2687","reportTime":1750149833394,"speed":4.72,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":324}],"wsTime":1750149833394}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":27.89869735208903,"latitude":43.83956917,"longitude":125.14204483,"obuCode":"O-HK-2687","reportTime":1750149833796,"speed":4.46,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":324}],"wsTime":1750149833796}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":32.82147423410568,"latitude":43.83957248,"longitude":125.14204908,"obuCode":"O-HK-2687","reportTime":1750149834199,"speed":4.88,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":324}],"wsTime":1750149834199}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":37.66713828039289,"latitude":43.83957559,"longitude":125.14205378,"obuCode":"O-HK-2687","reportTime":1750149834601,"speed":4.63,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":307}],"wsTime":1750149834601}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":42.445743529408915,"latitude":43.8395788,"longitude":125.14205924,"obuCode":"O-HK-2687","reportTime":1750149835004,"speed":4.85,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":254}],"wsTime":1750149835004}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":46.10660881131986,"latitude":43.83958197,"longitude":125.14206483,"obuCode":"O-HK-2687","reportTime":1750149835405,"speed":4.74,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":215}],"wsTime":1750149835405}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":49.13250555704056,"latitude":43.83958488,"longitude":125.14207051,"obuCode":"O-HK-2687","reportTime":1750149835607,"speed":4.91,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":180}],"wsTime":1750149835607}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":51.53652040902078,"latitude":43.83958749,"longitude":125.14207599,"obuCode":"O-HK-2687","reportTime":1750149836210,"speed":4.64,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":163}],"wsTime":1750149836210}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":53.67662358166088,"latitude":43.83959018,"longitude":125.14208189,"obuCode":"O-HK-2687","reportTime":1750149836614,"speed":4.75,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":109}],"wsTime":1750149836614}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":55.01673401757405,"latitude":43.83959292,"longitude":125.14208779,"obuCode":"O-HK-2687","reportTime":1750149836815,"speed":5.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":92}],"wsTime":1750149836815}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":56.19331606437879,"latitude":43.83959543,"longitude":125.14209348,"obuCode":"O-HK-2687","reportTime":1750149837418,"speed":4.77,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":79}],"wsTime":1750149837418}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":57.079314543134515,"latitude":43.83959785,"longitude":125.14209905,"obuCode":"O-HK-2687","reportTime":1750149837820,"speed":4.55,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":60}],"wsTime":1750149837820}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":57.813600860045895,"latitude":43.83960026,"longitude":125.14210456,"obuCode":"O-HK-2687","reportTime":1750149838223,"speed":4.78,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":60}],"wsTime":1750149838223}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.49715253180244,"latitude":43.83960259,"longitude":125.1421101,"obuCode":"O-HK-2687","reportTime":1750149838424,"speed":4.74,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":48}],"wsTime":1750149838424}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.03688091020601,"latitude":43.83960507,"longitude":125.14211613,"obuCode":"O-HK-2687","reportTime":1750149839028,"speed":4.89,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":26}],"wsTime":1750149839028}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.31755387376934,"latitude":43.83960776,"longitude":125.1421225,"obuCode":"O-HK-2687","reportTime":1750149839431,"speed":5.42,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":6}],"wsTime":1750149839431}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.392235162154265,"latitude":43.83961063,"longitude":125.14212926,"obuCode":"O-HK-2687","reportTime":1750149839833,"speed":5.7,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149839833}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.42555282492559,"latitude":43.83961342,"longitude":125.14213589,"obuCode":"O-HK-2687","reportTime":1750149840235,"speed":5.49,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149840235}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.436255731355004,"latitude":43.83961638,"longitude":125.14214265,"obuCode":"O-HK-2687","reportTime":1750149840638,"speed":5.8,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149840638}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.44620048678654,"latitude":43.83961937,"longitude":125.14214943,"obuCode":"O-HK-2687","reportTime":1750149841041,"speed":5.78,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149841041}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.45605644975886,"latitude":43.83962227,"longitude":125.14215648,"obuCode":"O-HK-2687","reportTime":1750149841443,"speed":5.9,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-3}],"wsTime":1750149841443}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.41170803147797,"latitude":43.83962533,"longitude":125.14216376,"obuCode":"O-HK-2687","reportTime":1750149841645,"speed":6.16,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-6}],"wsTime":1750149841645}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.323516628914774,"latitude":43.83962844,"longitude":125.14217111,"obuCode":"O-HK-2687","reportTime":1750149842248,"speed":6.3,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-7}],"wsTime":1750149842248}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.23534571691907,"latitude":43.83963184,"longitude":125.14217883,"obuCode":"O-HK-2687","reportTime":1750149842449,"speed":6.59,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-6}],"wsTime":1750149842449}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.14768706911113,"latitude":43.8396355,"longitude":125.14218719,"obuCode":"O-HK-2687","reportTime":1750149842852,"speed":7.24,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-6}],"wsTime":1750149842852}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.082861743698544,"latitude":43.83963943,"longitude":125.14219621,"obuCode":"O-HK-2687","reportTime":1750149843254,"speed":7.86,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-5}],"wsTime":1750149843254}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.97088079225618,"latitude":43.83964362,"longitude":125.14220552,"obuCode":"O-HK-2687","reportTime":1750149843657,"speed":8.16,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-4}],"wsTime":1750149843657}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.92923712888661,"latitude":43.83964811,"longitude":125.14221543,"obuCode":"O-HK-2687","reportTime":1750149844059,"speed":8.62,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149844059}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.928847808103924,"latitude":43.83965275,"longitude":125.14222601,"obuCode":"O-HK-2687","reportTime":1750149844462,"speed":9.23,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149844462}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.907551278271825,"latitude":43.83965777,"longitude":125.1422369,"obuCode":"O-HK-2687","reportTime":1750149844865,"speed":9.52,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149844865}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.00915717236494,"latitude":43.83966257,"longitude":125.14224859,"obuCode":"O-HK-2687","reportTime":1750149845267,"speed":9.88,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149845267}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.004539964486,"latitude":43.83966769,"longitude":125.14226073,"obuCode":"O-HK-2687","reportTime":1750149845670,"speed":10.24,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-6}],"wsTime":1750149845670}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.907004863138226,"latitude":43.83967317,"longitude":125.14227341,"obuCode":"O-HK-2687","reportTime":1750149846072,"speed":10.79,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-5}],"wsTime":1750149846072}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.840321726271384,"latitude":43.83967888,"longitude":125.14228671,"obuCode":"O-HK-2687","reportTime":1750149846475,"speed":11.3,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-6}],"wsTime":1750149846475}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.70720133934783,"latitude":43.83968495,"longitude":125.14230055,"obuCode":"O-HK-2687","reportTime":1750149846877,"speed":12.02,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-5}],"wsTime":1750149846877}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.641344655370574,"latitude":43.83969122,"longitude":125.14231521,"obuCode":"O-HK-2687","reportTime":1750149847280,"speed":12.59,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-4}],"wsTime":1750149847280}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.57732529228005,"latitude":43.83969829,"longitude":125.14233116,"obuCode":"O-HK-2687","reportTime":1750149847682,"speed":13.56,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-4}],"wsTime":1750149847682}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.476463888806464,"latitude":43.83970566,"longitude":125.14234763,"obuCode":"O-HK-2687","reportTime":1750149848084,"speed":14.19,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149848084}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.45912886869297,"latitude":43.83971306,"longitude":125.14236414,"obuCode":"O-HK-2687","reportTime":1750149848487,"speed":14.34,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149848487}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.50260302276011,"latitude":43.83972062,"longitude":125.1423813,"obuCode":"O-HK-2687","reportTime":1750149848890,"speed":14.58,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149848890}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.547299780688675,"latitude":43.83972817,"longitude":125.14239856,"obuCode":"O-HK-2687","reportTime":1750149849292,"speed":14.65,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149849292}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.57880061314077,"latitude":43.83973581,"longitude":125.14241611,"obuCode":"O-HK-2687","reportTime":1750149849695,"speed":14.88,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149849695}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.591894085779685,"latitude":43.83974355,"longitude":125.14243375,"obuCode":"O-HK-2687","reportTime":1750149850097,"speed":15.08,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149850097}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.61260321934316,"latitude":43.83975152,"longitude":125.14245161,"obuCode":"O-HK-2687","reportTime":1750149850500,"speed":15.21,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149850500}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.635313598333454,"latitude":43.83975939,"longitude":125.14246959,"obuCode":"O-HK-2687","reportTime":1750149850903,"speed":15.26,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149850903}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.66675295908303,"latitude":43.83976734,"longitude":125.14248778,"obuCode":"O-HK-2687","reportTime":1750149851305,"speed":15.65,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149851305}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.698110357562555,"latitude":43.83977576,"longitude":125.14250693,"obuCode":"O-HK-2687","reportTime":1750149851707,"speed":15.85,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149851707}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.67967567699269,"latitude":43.83978388,"longitude":125.14252541,"obuCode":"O-HK-2687","reportTime":1750149852109,"speed":15.58,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149852109}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.69994767844929,"latitude":43.83979174,"longitude":125.14254334,"obuCode":"O-HK-2687","reportTime":1750149852512,"speed":15.58,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149852512}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.756733871208766,"latitude":43.8397997,"longitude":125.14256154,"obuCode":"O-HK-2687","reportTime":1750149852915,"speed":15.45,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149852915}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.798220440227425,"latitude":43.83980756,"longitude":125.14257946,"obuCode":"O-HK-2687","reportTime":1750149853318,"speed":15.23,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149853318}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.78672523185429,"latitude":43.83981564,"longitude":125.14259795,"obuCode":"O-HK-2687","reportTime":1750149853719,"speed":15.5,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149853719}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.77623406128916,"latitude":43.83982377,"longitude":125.14261655,"obuCode":"O-HK-2687","reportTime":1750149854122,"speed":16.15,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149854122}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.7649027774561,"latitude":43.83983167,"longitude":125.1426347,"obuCode":"O-HK-2687","reportTime":1750149854524,"speed":15.73,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149854524}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.768058324852646,"latitude":43.83983974,"longitude":125.14265308,"obuCode":"O-HK-2687","reportTime":1750149854927,"speed":15.54,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149854927}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.78696428847525,"latitude":43.83984791,"longitude":125.14267172,"obuCode":"O-HK-2687","reportTime":1750149855329,"speed":15.46,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149855329}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.82167530983725,"latitude":43.83985559,"longitude":125.14268923,"obuCode":"O-HK-2687","reportTime":1750149855732,"speed":15.23,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149855732}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.84274644342675,"latitude":43.83986319,"longitude":125.14270668,"obuCode":"O-HK-2687","reportTime":1750149856135,"speed":14.58,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149856135}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.90027029661658,"latitude":43.83987036,"longitude":125.14272313,"obuCode":"O-HK-2687","reportTime":1750149856537,"speed":13.55,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149856537}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.97450079251628,"latitude":43.83987697,"longitude":125.14273836,"obuCode":"O-HK-2687","reportTime":1750149856941,"speed":12.56,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149856941}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.03122551357325,"latitude":43.839883,"longitude":125.14275224,"obuCode":"O-HK-2687","reportTime":1750149857342,"speed":11.38,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149857342}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.074207894020134,"latitude":43.83988836,"longitude":125.1427647,"obuCode":"O-HK-2687","reportTime":1750149857745,"speed":10.27,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149857745}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.13018812445756,"latitude":43.83989302,"longitude":125.14277563,"obuCode":"O-HK-2687","reportTime":1750149858148,"speed":8.73,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149858148}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.17250114636579,"latitude":43.83989715,"longitude":125.14278524,"obuCode":"O-HK-2687","reportTime":1750149858550,"speed":7.5,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":4}],"wsTime":1750149858550}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.48517354619064,"latitude":43.83990031,"longitude":125.14279287,"obuCode":"O-HK-2687","reportTime":1750149858952,"speed":6.06,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":19}],"wsTime":1750149858952}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.77235568003299,"latitude":43.83990302,"longitude":125.14279941,"obuCode":"O-HK-2687","reportTime":1750149859355,"speed":5.45,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":19}],"wsTime":1750149859355}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.922858898394225,"latitude":43.83990529,"longitude":125.14280476,"obuCode":"O-HK-2687","reportTime":1750149859757,"speed":4.35,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":10}],"wsTime":1750149859757}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":60.05487279467222,"latitude":43.83990732,"longitude":125.14280954,"obuCode":"O-HK-2687","reportTime":1750149860160,"speed":3.81,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":2}],"wsTime":1750149860160}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":60.074612041373555,"latitude":43.83990905,"longitude":125.14281387,"obuCode":"O-HK-2687","reportTime":1750149860563,"speed":3.43,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":9}],"wsTime":1750149860563}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":60.1619769910472,"latitude":43.83991073,"longitude":125.14281791,"obuCode":"O-HK-2687","reportTime":1750149860965,"speed":3.22,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-3}],"wsTime":1750149860965}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":60.12815389427729,"latitude":43.83991244,"longitude":125.14282204,"obuCode":"O-HK-2687","reportTime":1750149861166,"speed":3.49,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149861166}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":60.16322008547614,"latitude":43.83991444,"longitude":125.14282677,"obuCode":"O-HK-2687","reportTime":1750149861569,"speed":4.12,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149861569}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":60.131808045483254,"latitude":43.83991661,"longitude":125.14283191,"obuCode":"O-HK-2687","reportTime":1750149861971,"speed":4.54,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-4}],"wsTime":1750149861971}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":60.14216944245416,"latitude":43.83991899,"longitude":125.14283766,"obuCode":"O-HK-2687","reportTime":1750149862374,"speed":4.92,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149862374}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":60.09693992977033,"latitude":43.83992156,"longitude":125.14284381,"obuCode":"O-HK-2687","reportTime":1750149862777,"speed":5.31,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-8}],"wsTime":1750149862777}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":60.013925810597996,"latitude":43.83992443,"longitude":125.14285051,"obuCode":"O-HK-2687","reportTime":1750149863179,"speed":5.91,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-9}],"wsTime":1750149863179}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.90507991598467,"latitude":43.8399273,"longitude":125.14285747,"obuCode":"O-HK-2687","reportTime":1750149863581,"speed":6.07,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-10}],"wsTime":1750149863581}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.769090849609725,"latitude":43.83993054,"longitude":125.14286519,"obuCode":"O-HK-2687","reportTime":1750149863984,"speed":6.51,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-13}],"wsTime":1750149863984}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.55842732503902,"latitude":43.83993396,"longitude":125.14287304,"obuCode":"O-HK-2687","reportTime":1750149864386,"speed":6.66,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-13}],"wsTime":1750149864386}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.040056948170076,"latitude":43.83993751,"longitude":125.14288115,"obuCode":"O-HK-2687","reportTime":1750149864789,"speed":6.88,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-65}],"wsTime":1750149864789}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":57.711728588575156,"latitude":43.83994141,"longitude":125.14288925,"obuCode":"O-HK-2687","reportTime":1750149865191,"speed":7.36,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-64}],"wsTime":1750149865191}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":56.5759910730071,"latitude":43.83994561,"longitude":125.14289752,"obuCode":"O-HK-2687","reportTime":1750149865594,"speed":7.44,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-40}],"wsTime":1750149865594}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":56.08979088712891,"latitude":43.83994977,"longitude":125.14290581,"obuCode":"O-HK-2687","reportTime":1750149865996,"speed":7.51,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-9}],"wsTime":1750149865996}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":56.47359970715944,"latitude":43.8399537,"longitude":125.14291446,"obuCode":"O-HK-2687","reportTime":1750149866399,"speed":6.9,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":35}],"wsTime":1750149866399}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":57.272417651349116,"latitude":43.83995744,"longitude":125.14292287,"obuCode":"O-HK-2687","reportTime":1750149866801,"speed":7.07,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":53}],"wsTime":1750149866802}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":58.369858296240906,"latitude":43.83996109,"longitude":125.14293149,"obuCode":"O-HK-2687","reportTime":1750149867204,"speed":7.37,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":77}],"wsTime":1750149867204}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":59.997984149075194,"latitude":43.83996448,"longitude":125.14294029,"obuCode":"O-HK-2687","reportTime":1750149867606,"speed":7.7,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":84}],"wsTime":1750149867606}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":62.01752082248622,"latitude":43.83996778,"longitude":125.14294958,"obuCode":"O-HK-2687","reportTime":1750149868009,"speed":7.57,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":106}],"wsTime":1750149868009}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":64.25580796444525,"latitude":43.83997077,"longitude":125.14295871,"obuCode":"O-HK-2687","reportTime":1750149868411,"speed":7.16,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":129}],"wsTime":1750149868411}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":67.02018359703534,"latitude":43.83997323,"longitude":125.14296794,"obuCode":"O-HK-2687","reportTime":1750149868814,"speed":7.07,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":150}],"wsTime":1750149868814}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":70.27840239718486,"latitude":43.83997517,"longitude":125.14297744,"obuCode":"O-HK-2687","reportTime":1750149869216,"speed":7.14,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":161}],"wsTime":1750149869216}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":73.77529532769131,"latitude":43.83997674,"longitude":125.14298741,"obuCode":"O-HK-2687","reportTime":1750149869619,"speed":7.34,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":160}],"wsTime":1750149869619}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":77.23206089682392,"latitude":43.83997793,"longitude":125.14299755,"obuCode":"O-HK-2687","reportTime":1750149870022,"speed":7.28,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":160}],"wsTime":1750149870022}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":80.81531473919603,"latitude":43.83997861,"longitude":125.14300764,"obuCode":"O-HK-2687","reportTime":1750149870424,"speed":6.9,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":178}],"wsTime":1750149870424}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":84.67796429975665,"latitude":43.83997878,"longitude":125.14301742,"obuCode":"O-HK-2687","reportTime":1750149870826,"speed":7.18,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":194}],"wsTime":1750149870826}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":88.9141295852686,"latitude":43.83997835,"longitude":125.14302745,"obuCode":"O-HK-2687","reportTime":1750149871229,"speed":7.3,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":192}],"wsTime":1750149871229}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":93.33496269537018,"latitude":43.83997746,"longitude":125.1430375,"obuCode":"O-HK-2687","reportTime":1750149871833,"speed":7.25,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":214}],"wsTime":1750149871833}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":97.97804333087481,"latitude":43.83997584,"longitude":125.14304707,"obuCode":"O-HK-2687","reportTime":1750149872034,"speed":7.12,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":225}],"wsTime":1750149872034}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":102.76866288264088,"latitude":43.8399736,"longitude":125.14305632,"obuCode":"O-HK-2687","reportTime":1750149872437,"speed":7.05,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":228}],"wsTime":1750149872437}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":108.08705115157385,"latitude":43.83997071,"longitude":125.14306521,"obuCode":"O-HK-2687","reportTime":1750149872839,"speed":7.19,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":250}],"wsTime":1750149872839}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":113.883163341625,"latitude":43.83996698,"longitude":125.14307439,"obuCode":"O-HK-2687","reportTime":1750149873442,"speed":7.36,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":248}],"wsTime":1750149873442}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":119.4582164591887,"latitude":43.83996273,"longitude":125.14308266,"obuCode":"O-HK-2687","reportTime":1750149873644,"speed":7.19,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":248}],"wsTime":1750149873644}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":124.95590914666555,"latitude":43.83995801,"longitude":125.14309017,"obuCode":"O-HK-2687","reportTime":1750149874046,"speed":7.13,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":249}],"wsTime":1750149874046}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":130.24592651733357,"latitude":43.839953,"longitude":125.14309682,"obuCode":"O-HK-2687","reportTime":1750149874449,"speed":6.84,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":231}],"wsTime":1750149874449}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":134.84913592355824,"latitude":43.83994778,"longitude":125.14310292,"obuCode":"O-HK-2687","reportTime":1750149874851,"speed":6.68,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":211}],"wsTime":1750149874851}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":138.9181468432861,"latitude":43.83994247,"longitude":125.14310833,"obuCode":"O-HK-2687","reportTime":1750149875254,"speed":6.57,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":196}],"wsTime":1750149875254}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":142.25458539669745,"latitude":43.83993732,"longitude":125.14311299,"obuCode":"O-HK-2687","reportTime":1750149875655,"speed":6.19,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":171}],"wsTime":1750149875655}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":145.12075518046964,"latitude":43.83993187,"longitude":125.14311752,"obuCode":"O-HK-2687","reportTime":1750149876058,"speed":6.23,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":139}],"wsTime":1750149876058}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":147.35292578130523,"latitude":43.83992639,"longitude":125.14312184,"obuCode":"O-HK-2687","reportTime":1750149876461,"speed":6.26,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":106}],"wsTime":1750149876461}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.88502350997842,"latitude":43.83992075,"longitude":125.14312614,"obuCode":"O-HK-2687","reportTime":1750149876863,"speed":6.48,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":71}],"wsTime":1750149876863}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":150.00868144913312,"latitude":43.83991496,"longitude":125.14313052,"obuCode":"O-HK-2687","reportTime":1750149877266,"speed":6.84,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":55}],"wsTime":1750149877266}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":150.90997400210097,"latitude":43.83990882,"longitude":125.14313505,"obuCode":"O-HK-2687","reportTime":1750149877668,"speed":7.18,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":48}],"wsTime":1750149877668}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":151.56852163196655,"latitude":43.83990238,"longitude":125.14313978,"obuCode":"O-HK-2687","reportTime":1750149878071,"speed":7.05,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":16}],"wsTime":1750149878071}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":151.92842905877026,"latitude":43.83989629,"longitude":125.14314428,"obuCode":"O-HK-2687","reportTime":1750149878473,"speed":7.01,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":19}],"wsTime":1750149878473}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":152.31944330148835,"latitude":43.83988984,"longitude":125.14314886,"obuCode":"O-HK-2687","reportTime":1750149878876,"speed":7.25,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":18}],"wsTime":1750149878876}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":152.5236450402174,"latitude":43.83988319,"longitude":125.14315366,"obuCode":"O-HK-2687","reportTime":1750149879278,"speed":7.68,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":2}],"wsTime":1750149879278}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":152.3325779687057,"latitude":43.83987654,"longitude":125.14315852,"obuCode":"O-HK-2687","reportTime":1750149879681,"speed":7.44,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-29}],"wsTime":1750149879681}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":152.10979726166056,"latitude":43.83986998,"longitude":125.14316337,"obuCode":"O-HK-2687","reportTime":1750149880083,"speed":7.42,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-9}],"wsTime":1750149880083}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":151.91336272867827,"latitude":43.8398636,"longitude":125.14316807,"obuCode":"O-HK-2687","reportTime":1750149880486,"speed":7.17,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-17}],"wsTime":1750149880486}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":151.62366495078723,"latitude":43.8398574,"longitude":125.14317296,"obuCode":"O-HK-2687","reportTime":1750149880888,"speed":7.12,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-18}],"wsTime":1750149880888}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":151.1433135412727,"latitude":43.83985108,"longitude":125.14317781,"obuCode":"O-HK-2687","reportTime":1750149881291,"speed":7.12,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-38}],"wsTime":1750149881291}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":150.47950783968497,"latitude":43.83984449,"longitude":125.14318271,"obuCode":"O-HK-2687","reportTime":1750149881693,"speed":7.3,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-36}],"wsTime":1750149881693}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.8716702022602,"latitude":43.83983809,"longitude":125.1431879,"obuCode":"O-HK-2687","reportTime":1750149882096,"speed":7.69,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-25}],"wsTime":1750149882096}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.45401507348876,"latitude":43.83983162,"longitude":125.14319319,"obuCode":"O-HK-2687","reportTime":1750149882498,"speed":7.3,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-20}],"wsTime":1750149882498}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.11497510189906,"latitude":43.8398245,"longitude":125.14319917,"obuCode":"O-HK-2687","reportTime":1750149882901,"speed":8.29,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-14}],"wsTime":1750149882901}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.8910975091619,"latitude":43.83981717,"longitude":125.14320531,"obuCode":"O-HK-2687","reportTime":1750149883303,"speed":8.74,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-10}],"wsTime":1750149883303}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.71727269659104,"latitude":43.8398094,"longitude":125.14321188,"obuCode":"O-HK-2687","reportTime":1750149883706,"speed":8.96,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-6}],"wsTime":1750149883706}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.6303174315356,"latitude":43.83980144,"longitude":125.14321857,"obuCode":"O-HK-2687","reportTime":1750149884108,"speed":9.34,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-5}],"wsTime":1750149884108}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.57906118404372,"latitude":43.83979318,"longitude":125.14322554,"obuCode":"O-HK-2687","reportTime":1750149884512,"speed":9.83,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149884512}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.59126338369703,"latitude":43.83978462,"longitude":125.14323281,"obuCode":"O-HK-2687","reportTime":1750149884913,"speed":10.16,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149884913}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.61040346806166,"latitude":43.83977574,"longitude":125.14324017,"obuCode":"O-HK-2687","reportTime":1750149885315,"speed":10.47,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149885315}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.63473825813566,"latitude":43.83976655,"longitude":125.14324789,"obuCode":"O-HK-2687","reportTime":1750149885718,"speed":10.89,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149885718}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.6340938991566,"latitude":43.83975691,"longitude":125.14325603,"obuCode":"O-HK-2687","reportTime":1750149886120,"speed":11.54,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149886120}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.64592704181106,"latitude":43.83974689,"longitude":125.1432643,"obuCode":"O-HK-2687","reportTime":1750149886523,"speed":11.8,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149886523}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.64396494991007,"latitude":43.83973448,"longitude":125.14327472,"obuCode":"O-HK-2687","reportTime":1750149886925,"speed":12.69,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149886925}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.61982624763024,"latitude":43.83972267,"longitude":125.14328473,"obuCode":"O-HK-2687","reportTime":1750149887328,"speed":14.49,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149887328}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.61901321499516,"latitude":43.83971076,"longitude":125.14329488,"obuCode":"O-HK-2687","reportTime":1750149887731,"speed":14.15,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149887731}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.64775066229882,"latitude":43.83969836,"longitude":125.14330525,"obuCode":"O-HK-2687","reportTime":1750149888133,"speed":14.52,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149888133}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.67978795141536,"latitude":43.83968563,"longitude":125.14331599,"obuCode":"O-HK-2687","reportTime":1750149888535,"speed":15.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149888535}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.71253003734697,"latitude":43.83967283,"longitude":125.14332675,"obuCode":"O-HK-2687","reportTime":1750149888938,"speed":15.23,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149888938}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.73578209236013,"latitude":43.83966,"longitude":125.14333745,"obuCode":"O-HK-2687","reportTime":1750149889340,"speed":15.63,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149889340}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.75882396731137,"latitude":43.83964679,"longitude":125.14334842,"obuCode":"O-HK-2687","reportTime":1750149889743,"speed":15.34,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149889743}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.78872498136283,"latitude":43.83963361,"longitude":125.14335959,"obuCode":"O-HK-2687","reportTime":1750149890145,"speed":15.48,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149890145}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.8201202643804,"latitude":43.83962017,"longitude":125.14337076,"obuCode":"O-HK-2687","reportTime":1750149890548,"speed":15.49,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149890548}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.85459271603924,"latitude":43.83960694,"longitude":125.14338173,"obuCode":"O-HK-2687","reportTime":1750149890950,"speed":15.31,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149890950}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.9105430310485,"latitude":43.83959349,"longitude":125.14339299,"obuCode":"O-HK-2687","reportTime":1750149891353,"speed":15.49,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149891353}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.9468748082758,"latitude":43.8395807,"longitude":125.14340356,"obuCode":"O-HK-2687","reportTime":1750149891755,"speed":15.52,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149891755}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.940332807732,"latitude":43.83956718,"longitude":125.14341467,"obuCode":"O-HK-2687","reportTime":1750149892157,"speed":15.84,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-3}],"wsTime":1750149892157}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.89320785085246,"latitude":43.83955374,"longitude":125.14342585,"obuCode":"O-HK-2687","reportTime":1750149892560,"speed":15.55,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-3}],"wsTime":1750149892560}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.85476769961608,"latitude":43.83954038,"longitude":125.14343686,"obuCode":"O-HK-2687","reportTime":1750149892963,"speed":15.26,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149892963}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.85868005064896,"latitude":43.83952721,"longitude":125.14344787,"obuCode":"O-HK-2687","reportTime":1750149893365,"speed":15.35,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149893365}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.88881573906133,"latitude":43.83951395,"longitude":125.14345922,"obuCode":"O-HK-2687","reportTime":1750149893767,"speed":15.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149893767}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.949673091422,"latitude":43.83950113,"longitude":125.14346988,"obuCode":"O-HK-2687","reportTime":1750149894170,"speed":15.34,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149894170}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.02129230728443,"latitude":43.83948719,"longitude":125.14348146,"obuCode":"O-HK-2687","reportTime":1750149894573,"speed":15.83,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149894573}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.06381613124202,"latitude":43.83947368,"longitude":125.1434925,"obuCode":"O-HK-2687","reportTime":1750149894975,"speed":15.82,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149894975}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.05139847380497,"latitude":43.83946038,"longitude":125.14350359,"obuCode":"O-HK-2687","reportTime":1750149895377,"speed":15.49,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149895377}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.06324463650756,"latitude":43.83944752,"longitude":125.14351419,"obuCode":"O-HK-2687","reportTime":1750149895779,"speed":15.32,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149895779}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.0968281697284,"latitude":43.83943451,"longitude":125.14352517,"obuCode":"O-HK-2687","reportTime":1750149896182,"speed":15.16,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149896182}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.13897996181962,"latitude":43.83942108,"longitude":125.14353593,"obuCode":"O-HK-2687","reportTime":1750149896585,"speed":15.9,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149896585}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.1382772260675,"latitude":43.83940746,"longitude":125.14354698,"obuCode":"O-HK-2687","reportTime":1750149896988,"speed":15.95,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-3}],"wsTime":1750149896988}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.0606326761194,"latitude":43.83939402,"longitude":125.14355807,"obuCode":"O-HK-2687","reportTime":1750149897390,"speed":15.49,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-4}],"wsTime":1750149897390}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.00095695315525,"latitude":43.83938078,"longitude":125.14356903,"obuCode":"O-HK-2687","reportTime":1750149897792,"speed":15.33,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149897792}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.99716598472247,"latitude":43.83936758,"longitude":125.14357998,"obuCode":"O-HK-2687","reportTime":1750149898194,"speed":15.34,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149898194}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":148.99508995406035,"latitude":43.83935423,"longitude":125.14359102,"obuCode":"O-HK-2687","reportTime":1750149898597,"speed":15.33,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149898597}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.01912788436948,"latitude":43.8393409,"longitude":125.14360202,"obuCode":"O-HK-2687","reportTime":1750149899000,"speed":15.83,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149899000}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.0305209600702,"latitude":43.8393273,"longitude":125.14361341,"obuCode":"O-HK-2687","reportTime":1750149899201,"speed":15.99,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149899201}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.02669373293787,"latitude":43.83931392,"longitude":125.14362448,"obuCode":"O-HK-2687","reportTime":1750149899603,"speed":15.5,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-2}],"wsTime":1750149899603}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.00756528123915,"latitude":43.83930062,"longitude":125.14363556,"obuCode":"O-HK-2687","reportTime":1750149900005,"speed":15.48,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-1}],"wsTime":1750149900005}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.02079399695972,"latitude":43.8392874,"longitude":125.14364642,"obuCode":"O-HK-2687","reportTime":1750149900408,"speed":15.43,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149900408}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.0661808441183,"latitude":43.83927439,"longitude":125.14365719,"obuCode":"O-HK-2687","reportTime":1750149900811,"speed":15.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149900811}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.1110285598997,"latitude":43.8392617,"longitude":125.14366773,"obuCode":"O-HK-2687","reportTime":1750149901213,"speed":14.5,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149901213}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.15348883108146,"latitude":43.83924963,"longitude":125.14367766,"obuCode":"O-HK-2687","reportTime":1750149901616,"speed":13.5,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149901616}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.1950043483628,"latitude":43.83923846,"longitude":125.14368689,"obuCode":"O-HK-2687","reportTime":1750149902018,"speed":12.69,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149902018}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.26573637334485,"latitude":43.83922997,"longitude":125.14369375,"obuCode":"O-HK-2687","reportTime":1750149902421,"speed":4.38,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149902421}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.32785038046123,"latitude":43.83922085,"longitude":125.14370125,"obuCode":"O-HK-2687","reportTime":1750149902823,"speed":9.78,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":0}],"wsTime":1750149902823}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.38474953814628,"latitude":43.83921347,"longitude":125.14370735,"obuCode":"O-HK-2687","reportTime":1750149903225,"speed":7.77,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":2}],"wsTime":1750149903225}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.48245459381053,"latitude":43.8392079,"longitude":125.14371189,"obuCode":"O-HK-2687","reportTime":1750149903628,"speed":5.66,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":5}],"wsTime":1750149903628}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.66202789769213,"latitude":43.83920408,"longitude":125.14371492,"obuCode":"O-HK-2687","reportTime":1750149904030,"speed":3.68,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":28}],"wsTime":1750149904030}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.8120667699115,"latitude":43.83920208,"longitude":125.14371652,"obuCode":"O-HK-2687","reportTime":1750149904433,"speed":1.72,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":26}],"wsTime":1750149904433}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.84193604092562,"latitude":43.83920239,"longitude":125.1437162,"obuCode":"O-HK-2687","reportTime":1750149904835,"speed":1.47,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":38}],"wsTime":1750149904835}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.82926294508576,"latitude":43.8392029,"longitude":125.14371581,"obuCode":"O-HK-2687","reportTime":1750149905238,"speed":0.66,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":36}],"wsTime":1750149905238}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.82926294508576,"latitude":43.8392029,"longitude":125.14371581,"obuCode":"O-HK-2687","reportTime":1750149905641,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":45}],"wsTime":1750149905641}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.82926294508576,"latitude":43.8392029,"longitude":125.14371581,"obuCode":"O-HK-2687","reportTime":1750149906043,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":46}],"wsTime":1750149906043}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.82926294508576,"latitude":43.8392029,"longitude":125.14371581,"obuCode":"O-HK-2687","reportTime":1750149906445,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":40}],"wsTime":1750149906445}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.82926294508576,"latitude":43.8392029,"longitude":125.14371581,"obuCode":"O-HK-2687","reportTime":1750149906848,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-12}],"wsTime":1750149906848}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.82926294508576,"latitude":43.8392029,"longitude":125.14371581,"obuCode":"O-HK-2687","reportTime":1750149907250,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-9}],"wsTime":1750149907250}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.82926294508576,"latitude":43.8392029,"longitude":125.14371581,"obuCode":"O-HK-2687","reportTime":1750149907653,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":12}],"wsTime":1750149907653}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":149.82926294508576,"latitude":43.8392029,"longitude":125.14371581,"obuCode":"O-HK-2687","reportTime":1750149908055,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":12}],"wsTime":1750149908055}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":149.82926294508576,"latitude":43.8392029,"longitude":125.14371581,"obuCode":"O-HK-2687","reportTime":1750149908458,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":12}],"wsTime":1750149908458}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.82926294508576,"latitude":43.8392029,"longitude":125.14371581,"obuCode":"O-HK-2687","reportTime":1750149908860,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":12}],"wsTime":1750149908860}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.82926294508576,"latitude":43.8392029,"longitude":125.14371581,"obuCode":"O-HK-2687","reportTime":1750149909263,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":18}],"wsTime":1750149909263}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":149.82926294508576,"latitude":43.8392029,"longitude":125.14371581,"obuCode":"O-HK-2687","reportTime":1750149909665,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":79}],"wsTime":1750149909665}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":150.0810708888864,"latitude":43.83920111,"longitude":125.1437174,"obuCode":"O-HK-2687","reportTime":1750149910068,"speed":0.78,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":106}],"wsTime":1750149910068}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":150.66312733695872,"latitude":43.83919941,"longitude":125.14371851,"obuCode":"O-HK-2687","reportTime":1750149910470,"speed":2.36,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":94}],"wsTime":1750149910470}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":151.3282278930027,"latitude":43.83919658,"longitude":125.14372032,"obuCode":"O-HK-2687","reportTime":1750149910873,"speed":3.65,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":44}],"wsTime":1750149910873}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":2,"heading":151.5809250420559,"latitude":43.8391929,"longitude":125.14372302,"obuCode":"O-HK-2687","reportTime":1750149911275,"speed":4.29,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":-5}],"wsTime":1750149911275}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149966016,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149966016}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149966418,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149966418}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149966821,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149966821}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149967223,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149967223}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149967626,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149967626}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149968028,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149968028}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149968430,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149968430}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149968833,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149968833}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149969236,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149969236}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149969638,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149969638}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149970040,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149970040}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149970443,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149970443}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149970846,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149970846}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149971248,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149971248}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149971651,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149971651}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149972053,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149972053}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149972455,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149972455}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149972858,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149972858}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149973261,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149973261}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149973663,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149973663}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149974066,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149974066}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149974468,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149974468}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149974871,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149974871}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149975273,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149975273}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149975676,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149975676}
{"vehicleData":[{"altitude":0.0,"brake":30,"gasPedal":20,"gear":1,"heading":148.73333895904042,"latitude":43.83911751,"longitude":125.14378655,"obuCode":"O-HK-2687","reportTime":1750149976078,"speed":0.0,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":1}],"wsTime":1750149976078}
{"data":{"line":[[125.14359435375829,43.83877834786253],[125.14342925781992,43.83870671502458]],"linkingLine":"118_0.00_-1","spaceCode":"1D-004","taskId":"1937759817639038977","vehicleId":"1700381241280815105","vehicleInfoId":"1694264612474306561","vehiclePlate":"吉AC242"}}
{"data":{"line":[[125.14359435375829,43.83877834786253],[125.14342925781992,43.83870671502458]],"linkingLine":"118_0.00_-1","spaceCode":"1D-004","taskId":"1937759817639038977","vehicleId":"1700381241280815105","vehicleInfoId":"1694264612474306561","vehiclePlate":"吉AC242"}}
{"data":{"line":[[125.14359435375829,43.83877834786253],[125.14342925781992,43.83870671502458]],"linkingLine":"118_0.00_-1","spaceCode":"1D-004","taskId":"1937759817639038977","vehicleId":"1700381241280815105","vehicleInfoId":"1694264612474306561","vehiclePlate":"吉AC242"}}
{"data":{"line":[[125.14359435375829,43.83877834786253],[125.14342925781992,43.83870671502458]],"linkingLine":"118_0.00_-1","spaceCode":"1D-004","taskId":"1937759817639038977","vehicleId":"1700381241280815105","vehicleInfoId":"1694264612474306561","vehiclePlate":"吉AC242"}}
{"data":{"line":[[125.14359435375829,43.83877834786253],[125.14342925781992,43.83870671502458]],"linkingLine":"118_0.00_-1","spaceCode":"1D-004","taskId":"1937759817639038977","vehicleId":"1700381241280815105","vehicleInfoId":"1694264612474306561","vehiclePlate":"吉AC242"}}
{"data":{"line":[[125.14359435375829,43.83877834786253],[125.14342925781992,43.83870671502458]],"linkingLine":"118_0.00_-1","spaceCode":"1D-004","taskId":"1937759817639038977","vehicleId":"1700381241280815105","vehicleInfoId":"1694264612474306561","vehiclePlate":"吉AC242"}}
{"data":{"line":[[125.14359435375829,43.83877834786253],[125.14342925781992,43.83870671502458]],"linkingLine":"118_0.00_-1","spaceCode":"1D-004","taskId":"1937759817639038977","vehicleId":"1700381241280815105","vehicleInfoId":"1694264612474306561","vehiclePlate":"吉AC242"}}
{"data":{"line":[[125.14359435375829,43.83877834786253],[125.14342925781992,43.83870671502458]],"linkingLine":"118_0.00_-1","spaceCode":"1D-004","taskId":"1937759817639038977","vehicleId":"1700381241280815105","vehicleInfoId":"1694264612474306561","vehiclePlate":"吉AC242"}}
{"data":{"line":[[125.14359435375829,43.83877834786253],[125.14342925781992,43.83870671502458]],"linkingLine":"118_0.00_-1","spaceCode":"1D-004","taskId":"1937759817639038977","vehicleId":"1700381241280815105","vehicleInfoId":"1694264612474306561","vehiclePlate":"吉AC242"}}
{"data":{"line":[[125.14359435375829,43.83877834786253],[125.14342925781992,43.83870671502458]],"linkingLine":"118_0.00_-1","spaceCode":"1D-004","taskId":"1937759817639038977","vehicleId":"1700381241280815105","vehicleInfoId":"1694264612474306561","vehiclePlate":"吉AC242"}}
{"data":{"line":[[125.14359435375829,43.83877834786253],[125.14342925781992,43.83870671502458]],"linkingLine":"118_0.00_-1","spaceCode":"1D-004","taskId":"1937759817639038977","vehicleId":"1700381241280815105","vehicleInfoId":"1694264612474306561","vehiclePlate":"吉AC242"}}
{"callOrBackPoint":"125.1424934543.83896992","centrePoint":"125.14337396,43.83873198","extendPoint":"125.14333880,43.83866747","parkingSpace":"1D-001"}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.1244057716072541E-46,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148780353}],"wsTime":1750148735004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148780755}],"wsTime":1750148735404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.76970147312482E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148781156}],"wsTime":1750148735804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.488667461884586E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148781557}],"wsTime":1750148736204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148781958}],"wsTime":1750148736604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.375606662770487E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148782360}],"wsTime":1750148737004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.408493899444975E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148782761}],"wsTime":1750148737404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148783162}],"wsTime":1750148737804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.568192006025009E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148783563}],"wsTime":1750148738204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.838073142060117E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148783965}],"wsTime":1750148738604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.203689761882526E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148784366}],"wsTime":1750148739004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.652488727491914E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148784767}],"wsTime":1750148739404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.1735629078586397E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148785168}],"wsTime":1750148739804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148785569}],"wsTime":1750148740204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.7574353493082693E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148785970}],"wsTime":1750148740604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148786371}],"wsTime":1750148741004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.3958717461647063E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148786773}],"wsTime":1750148741404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.0817175008329029E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148787174}],"wsTime":1750148741804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.8087561490764697E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148787575}],"wsTime":1750148742204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.5715863490185194E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148787976}],"wsTime":1750148742604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.365514999731973E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148788378}],"wsTime":1750148743004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148788779}],"wsTime":1750148743404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.1864643744567402E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148789180}],"wsTime":1750148743804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.0308914308018078E-47,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148789581}],"wsTime":1750148744204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148789983}],"wsTime":1750148744604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.957177012476304E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148790384}],"wsTime":1750148745004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.782683766265444E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148790785}],"wsTime":1750148745404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.762193771689955E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148791186}],"wsTime":1750148745804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.875513637607925E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148791588}],"wsTime":1750148746204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.1050977938908313E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148791989}],"wsTime":1750148746604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.435701300797178E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148792390}],"wsTime":1750148747004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.8540781830739845E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148792792}],"wsTime":1750148747404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.348719319440497E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148793193}],"wsTime":1750148747804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.909624700827914E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148793594}],"wsTime":1750148748204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.528105550835598E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148793996}],"wsTime":1750148748604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.1966123927760027E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148794397}],"wsTime":1750148749004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.9085856611098788E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148794798}],"wsTime":1750148749404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.65832590118037E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148795199}],"wsTime":1750148749804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.4408809887665624E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148795601}],"wsTime":1750148750204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.2519481377642025E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148796002}],"wsTime":1750148750604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.0877887569277836E-48,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148796403}],"wsTime":1750148751004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.451544708646372E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148796804}],"wsTime":1750148751404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.212228413891559E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148797206}],"wsTime":1750148751804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.135415172953942E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148797607}],"wsTime":1750148752204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148798008}],"wsTime":1750148752604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.199797073872967E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148798409}],"wsTime":1750148753004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148798811}],"wsTime":1750148753404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.386860165179617E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148799212}],"wsTime":1750148753804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.68051810300163E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148799613}],"wsTime":1750148754204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.066793835513554E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148800014}],"wsTime":1750148754604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.5335430259237E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148800416}],"wsTime":1750148755004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.070213741109721E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148800817}],"wsTime":1750148755404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.6676376506367432E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148801218}],"wsTime":1750148755804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.317848604417541E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0},{"gear":0,"heading":0.0,"latitude":2.0139249990410017E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148801619}],"wsTime":1750148756204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.7498528135238213E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148802021}],"wsTime":1750148756604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.5204066042455914E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148802422}],"wsTime":1750148757004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.3210461042026038E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148802823}],"wsTime":1750148757404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.1478263804930042E-49,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148803224}],"wsTime":1750148757804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.973197722352995E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148803625}],"wsTime":1750148758204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148804026}],"wsTime":1750148758604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.665480642327267E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148804428}],"wsTime":1750148759004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148804829}],"wsTime":1750148759404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.529235542402577E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148805230}],"wsTime":1750148759804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148805631}],"wsTime":1750148760204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.541978476770709E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148806032}],"wsTime":1750148760604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.684173665375138E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148806433}],"wsTime":1750148761004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148806834}],"wsTime":1750148761404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.938846921137106E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148807235}],"wsTime":1750148761804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.291249765820739E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148807636}],"wsTime":1750148762204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148808038}],"wsTime":1750148762604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.7285675880832465E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148808439}],"wsTime":1750148763004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.239666068760273E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148808840}],"wsTime":1750148763404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148809242}],"wsTime":1750148763804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.8148708556660643E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148809643}],"wsTime":1750148764204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.445776128127396E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148810044}],"wsTime":1750148764604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148810445}],"wsTime":1750148765004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.1250782631384323E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148810847}],"wsTime":1750148765404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.8464313117329736E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148811248}],"wsTime":1750148765804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148811649}],"wsTime":1750148766204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.6043214257497008E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148812050}],"wsTime":1750148766604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.3939577501552765E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148812452}],"wsTime":1750148767004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148812853}],"wsTime":1750148767404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.2111776219094875E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148813254}],"wsTime":1750148767804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.052364199453616E-50,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148813656}],"wsTime":1750148768204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.143748928795948E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148814057}],"wsTime":1750148768604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.944791785606746E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148814458}],"wsTime":1750148769004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.903045677234713E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148814859}],"wsTime":1750148769404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.997896597909353E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148815261}],"wsTime":1750148769804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.211433515187701E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148815662}],"wsTime":1750148770204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148816063}],"wsTime":1750148770604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.5280939475829417E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148816464}],"wsTime":1750148771004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.93435601517E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148816866}],"wsTime":1750148771404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.4184708694851604E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148817267}],"wsTime":1750148771804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.970230208059525E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148817668}],"wsTime":1750148772204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148818069}],"wsTime":1750148772604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.5807642731786706E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148818471}],"wsTime":1750148773004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.2423663376808392E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148818872}],"wsTime":1750148773404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.948340204729759E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148819273}],"wsTime":1750148773804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.692867703897317E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148819674}],"wsTime":1750148774204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.4708935615769787E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148820076}],"wsTime":1750148774604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.2780253675510136E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148820477}],"wsTime":1750148775004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.1104466582563274E-51,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148820878}],"wsTime":1750148775404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.6484139684608E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148821279}],"wsTime":1750148775804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.383283556633552E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148821681}],"wsTime":1750148776204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148822082}],"wsTime":1750148776604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.284041026914404E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148822483}],"wsTime":1750148777004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.3289346380021884E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148822884}],"wsTime":1750148777404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.499064805387535E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148823286}],"wsTime":1750148777804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.778010117576031E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148823687}],"wsTime":1750148778204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.1515023902414376E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148824088}],"wsTime":1750148778604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148824489}],"wsTime":1750148779004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.607144328301252E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148824891}],"wsTime":1750148779404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.13416420902968E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148825292}],"wsTime":1750148779804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.7232027318930926E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148825693}],"wsTime":1750148780204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.3661278173060062E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148826094}],"wsTime":1750148780604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.0558736895571943E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148826496}],"wsTime":1750148781004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.786301059689073E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148826897}],"wsTime":1750148781404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.552075641638068E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148827298}],"wsTime":1750148781804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.3485625977210839E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148827700}],"wsTime":1750148782204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.1717348247620563E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148828101}],"wsTime":1750148782604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.0180932660303016E-52,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148828502}],"wsTime":1750148783004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.845976721283606E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148828903}],"wsTime":1750148783404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.686064407301794E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148829305}],"wsTime":1750148783804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.678243447222105E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148829706}],"wsTime":1750148784204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.802571143951876E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148830107}],"wsTime":1750148784804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.041719749618943E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148830509}],"wsTime":1750148785204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.38063358519823E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148830910}],"wsTime":1750148785604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.806231119692263E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148831311}],"wsTime":1750148786004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.307146113627359E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148831712}],"wsTime":1750148786404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.873502704629463E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148832114}],"wsTime":1750148786804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.4967199844872706E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148832515}],"wsTime":1750148787204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.169342200686023E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148832916}],"wsTime":1750148787604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.8848912224506893E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148833317}],"wsTime":1750148788004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.6377383519059953E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148833719}],"wsTime":1750148788404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.4229929437606768E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148834120}],"wsTime":1750148788804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.2364056295293402E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148834521}],"wsTime":1750148789204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.0742842312990033E-53,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148834922}],"wsTime":1750148789604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.334207011472547E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148835324}],"wsTime":1750148790004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.110276404938996E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148835725}],"wsTime":1750148790404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.046831432350394E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148836126}],"wsTime":1750148790804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.122828712190482E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148836527}],"wsTime":1750148791204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.319984137369967E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148836929}],"wsTime":1750148791604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.6224110704777097E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148837330}],"wsTime":1750148792004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.0163059800095403E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148837731}],"wsTime":1750148792404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.489675296964304E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148838132}],"wsTime":1750148792804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.0320980868628876E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148838534}],"wsTime":1750148793204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.6345198409591827E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148838935}],"wsTime":1750148793604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.2890733061965937E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148839336}],"wsTime":1750148794004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.9889228085046662E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148839737}],"wsTime":1750148794404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.7281289889151107E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148840139}],"wsTime":1750148794804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.5015312759040924E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148840540}],"wsTime":1750148795204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.3046457683309673E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148840941}],"wsTime":1750148795604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.1335765082875423E-54,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148841342}],"wsTime":1750148796004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.849383881306503E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148841744}],"wsTime":1750148796404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.557901661872898E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148842145}],"wsTime":1750148796804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.435762656513702E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148842546}],"wsTime":1750148797204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.4607620499232725E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148842947}],"wsTime":1750148797604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.6136065920774685E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148843349}],"wsTime":1750148798004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.87753282462861E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148843750}],"wsTime":1750148798404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.2379753666573376E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148844151}],"wsTime":1750148798804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.682278695840853E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148844552}],"wsTime":1750148799204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.1994467217817002E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148844954}],"wsTime":1750148799604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.7799251960699726E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148845355}],"wsTime":1750148800004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.4154126534231308E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148845756}],"wsTime":1750148800404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.0986961428187004E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148846157}],"wsTime":1750148800804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.8235084980779505E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148846559}],"wsTime":1750148801204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.584404323579945E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148846960}],"wsTime":1750148801604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.376652241119149E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148847361}],"wsTime":1750148802004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148847762}],"wsTime":1750148802404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.1961412656942613E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148848164}],"wsTime":1750148802804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.0392994575983389E-55,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148848565}],"wsTime":1750148803204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.03023241102937E-56,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148848966}],"wsTime":1750148803604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.846159910988841E-56,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148849367}],"wsTime":1750148804004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.8173467245004E-56,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148849769}],"wsTime":1750148804404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.923434761629652E-56,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148850170}],"wsTime":1750148804804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.146735349279723E-56,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148850571}],"wsTime":1750148805204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.471879208852445E-56,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148850973}],"wsTime":1750148805604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.8855123299404556E-56,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148851374}],"wsTime":1750148806004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":106.2087223914842,"latitude":43.83714187596689,"longitude":125.13677763045364,"ptcId":"0","ptcType":"motor","size":{"height":0.5,"length":0.5,"width":0.5},"speed":5.390875339508057}],"reportTime":1750148851775}],"wsTime":1750148806404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148852176}],"wsTime":1750148806804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":283.96174036405324,"latitude":1.3463226115771932E-28,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148852578}],"wsTime":1750148807204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.7956446355093281E-28,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148852979}],"wsTime":1750148807604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.0473224156955072E-28,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148853380}],"wsTime":1750148808004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.047322415695507E-28,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148853781}],"wsTime":1750148808404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.725723667250855E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148854183}],"wsTime":1750148808804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.668042995290248E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148854584}],"wsTime":1750148809204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.966747704874043E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148854985}],"wsTime":1750148809604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.090128591853783E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148855386}],"wsTime":1750148810004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.181229823004517E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148855788}],"wsTime":1750148810404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.5595265299330866E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148856189}],"wsTime":1750148810804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.9577212361978456E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148856590}],"wsTime":1750148811204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.424619397283862E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148856991}],"wsTime":1750148811604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.985466790853698E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148857393}],"wsTime":1750148812004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.591951856083852E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148857794}],"wsTime":1750148812404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.2505095110553535E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148858195}],"wsTime":1750148812804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.956982039498226E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148858596}],"wsTime":1750148813204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.6998608516593578E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148858998}],"wsTime":1750148813604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.4768381005532343E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148859399}],"wsTime":1750148814004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.2834202479277045E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148859800}],"wsTime":1750148814404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.1150298000350737E-29,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148860201}],"wsTime":1750148814804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.688220371290026E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148860603}],"wsTime":1750148815204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.418180212729451E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148861004}],"wsTime":1750148815604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.314174646092555E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148861405}],"wsTime":1750148816004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.355143807528009E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148861806}],"wsTime":1750148816404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.5218746665875036E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148862208}],"wsTime":1750148816804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.797798280052016E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148862609}],"wsTime":1750148817204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.168704188541882E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148863010}],"wsTime":1750148817604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.622094283795351E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148863411}],"wsTime":1750148818004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.1471491880973113E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148863813}],"wsTime":1750148818404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.7344869151086362E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148864214}],"wsTime":1750148818804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.3759325967503252E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148864615}],"wsTime":1750148819204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.0643921749890684E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148865017}],"wsTime":1750148819604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.7937029217120067E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148865418}],"wsTime":1750148820004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.5585069233628495E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148865819}],"wsTime":1750148820404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.3541505050159808E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148866220}],"wsTime":1750148820804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.1765900875227097E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148866621}],"wsTime":1750148821204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.0223118789753848E-30,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148867023}],"wsTime":1750148821604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.882631178785186E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148867424}],"wsTime":1750148822004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.717912710941532E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148867825}],"wsTime":1750148822404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.705915669870141E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148868226}],"wsTime":1750148822804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.826614889899212E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148868628}],"wsTime":1750148823204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148869029}],"wsTime":1750148823604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.062610817677721E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148869430}],"wsTime":1750148824004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148869831}],"wsTime":1750148824404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.398785344361767E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148870233}],"wsTime":1750148824804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.8220027629846747E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148870634}],"wsTime":1750148825204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.32084973125604E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148871035}],"wsTime":1750148825604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.88540945965062E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148871436}],"wsTime":1750148826004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.507065488472834E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148871838}],"wsTime":1750148826404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.178331169844873E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148872239}],"wsTime":1750148826804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.8927015294920816E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148872640}],"wsTime":1750148827204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.6445245469524473E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148873041}],"wsTime":1750148827604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.4288893115723505E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148873442}],"wsTime":1750148828004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.2415288470042192E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148873844}],"wsTime":1750148828404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.078735676382254E-31,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148874245}],"wsTime":1750148828804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.372884587397059E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148874646}],"wsTime":1750148829204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.143882455315447E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148875048}],"wsTime":1750148829604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.076030951633762E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148875449}],"wsTime":1750148830004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.148199498586566E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148875850}],"wsTime":1750148830404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.342028226383942E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148876251}],"wsTime":1750148830804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.641564669151067E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148876653}],"wsTime":1750148831204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.0329480985303934E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148877054}],"wsTime":1750148831604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.5041352485163495E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148877455}],"wsTime":1750148832004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.044662004049452E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148877856}],"wsTime":1750148832404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.6454363377740483E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148878258}],"wsTime":1750148832804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.2985583975849622E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148878659}],"wsTime":1750148833204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.9971641848521155E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148879060}],"wsTime":1750148833604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.7352897300527813E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148879461}],"wsTime":1750148834004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.507753078122465E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148879863}],"wsTime":1750148834404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.3100517482568403E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148880264}],"wsTime":1750148834804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.1382736391080217E-32,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148880665}],"wsTime":1750148835204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.890196163718318E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148881066}],"wsTime":1750148835604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.593362509341736E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148881468}],"wsTime":1750148836004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.466573766035067E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148881869}],"wsTime":1750148836404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.48753310977378E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148882270}],"wsTime":1750148836804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.6368673462876444E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148882672}],"wsTime":1750148837204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.897743555524123E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148883073}],"wsTime":1750148837604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.255536002896387E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148883474}],"wsTime":1750148838004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.697536726177039E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148883876}],"wsTime":1750148838404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.212704071149387E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148884277}],"wsTime":1750148838804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.7914442000557034E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148884678}],"wsTime":1750148839204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.425421249345533E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148885079}],"wsTime":1750148839604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.1073923801376558E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148885481}],"wsTime":1750148840004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.8310644573847227E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148885882}],"wsTime":1750148840404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.590969521716978E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148886283}],"wsTime":1750148840804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.3823565898098391E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148886685}],"wsTime":1750148841204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.2010976422278852E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148887086}],"wsTime":1750148841604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.0436059384386754E-33,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148887487}],"wsTime":1750148842004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.067650426191E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148887888}],"wsTime":1750148842404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.878671558214152E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148888290}],"wsTime":1750148842804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.845595342197975E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148888691}],"wsTime":1750148843204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.947979331650782E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148889092}],"wsTime":1750148843604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.1680615580157255E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148889493}],"wsTime":1750148844004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.490409057966121E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148889895}],"wsTime":1750148844404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.901612486908157E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148890296}],"wsTime":1750148844804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.3900207757225008E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148890697}],"wsTime":1750148845204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.9455105801491946E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148891098}],"wsTime":1750148845604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.559285960694963E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148891500}],"wsTime":1750148846004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148891901}],"wsTime":1750148846404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.2237043291416647E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148892302}],"wsTime":1750148846804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750148892703}],"wsTime":1750148847204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.932125217496456E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148893105}],"wsTime":1750148847604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.6787788768332712E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148893506}],"wsTime":1750148848004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.4586521058678476E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148893907}],"wsTime":1750148848404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.2673890500493935E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148894308}],"wsTime":1750148849004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.101205008187628E-34,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148894710}],"wsTime":1750148849404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.568115410262173E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148895111}],"wsTime":1750148849804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.313513998158095E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148895512}],"wsTime":1750148850204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.223419872574138E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148895913}],"wsTime":1750148850604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.276262320248601E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148896315}],"wsTime":1750148851004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.453299047745208E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148896716}],"wsTime":1750148851404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.738245310141986E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148897117}],"wsTime":1750148851804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.1169516695339496E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148897519}],"wsTime":1750148852204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.5771240068552865E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148897920}],"wsTime":1750148852604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.108080246632806E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148898321}],"wsTime":1750148853004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.7005389807555105E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148898723}],"wsTime":1750148853404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.3464358085609005E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148899124}],"wsTime":1750148853804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.0387637589873048E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148899525}],"wsTime":1750148854204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.7714346370759294E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148899926}],"wsTime":1750148854604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.539158551156033E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148900328}],"wsTime":1750148855004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.3373392368048166E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148900729}],"wsTime":1750148855404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.161983106259195E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148901130}],"wsTime":1750148855804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.0096202235550111E-35,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148901532}],"wsTime":1750148856204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.772356416547556E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148901933}],"wsTime":1750148856604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.622097428672402E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148902334}],"wsTime":1750148857004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.622664020192517E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148902735}],"wsTime":1750148857404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.754279466353117E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148903136}],"wsTime":1750148857804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.999760228804509E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148903538}],"wsTime":1750148858204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.344175928837536E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148903939}],"wsTime":1750148858604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.77455390599879E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148904340}],"wsTime":1750148859004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.2796225159102095E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148904742}],"wsTime":1750148859404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.8495880876866328E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148905143}],"wsTime":1750148859804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.4759411273989074E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148905544}],"wsTime":1750148860204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.151287932748938E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148905946}],"wsTime":1750148860604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.8692042869586185E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148906347}],"wsTime":1750148861004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.6241083367766154E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148906748}],"wsTime":1750148861404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.4111501391210433E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148907150}],"wsTime":1750148861804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.2261156907140692E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148907551}],"wsTime":1750148862204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.065343541652932E-36,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148907952}],"wsTime":1750148862604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.256523428720108E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148908353}],"wsTime":1750148863004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.042778938097529E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148908755}],"wsTime":1750148863404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.988184445836737E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148909156}],"wsTime":1750148863804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.071871703163594E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148909557}],"wsTime":1750148864204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.275708771774463E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148909958}],"wsTime":1750148864604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.583941230193699E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148910360}],"wsTime":1750148865004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.982880426282939E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148910761}],"wsTime":1750148865404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.4606326070627748E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148911162}],"wsTime":1750148865804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.0068635658848544E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148911564}],"wsTime":1750148866204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.612594149807642E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148911965}],"wsTime":1750148866604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.270022580688818E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148912366}],"wsTime":1750148867004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.9723700740953283E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148912767}],"wsTime":1750148867404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.713746701147947E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148913169}],"wsTime":1750148867804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.4890348389830237E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148913570}],"wsTime":1750148868204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.2937879035565745E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148913971}],"wsTime":1750148868604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":1.1241423609218864E-37,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148914372}],"wsTime":1750148869004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":9.76741275865371E-38,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148914774}],"wsTime":1750148869404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":8.48667885085958E-38,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148915175}],"wsTime":1750148869803}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":7.37387880468304E-38,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148915576}],"wsTime":1750148870204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":6.406992603549082E-38,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148915977}],"wsTime":1750148870604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":5.566887564772924E-38,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148916378}],"wsTime":1750148871004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.836939743251262E-38,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148916779}],"wsTime":1750148871404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":4.202704977893316E-38,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148917180}],"wsTime":1750148871804}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.6516330714793746E-38,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148917582}],"wsTime":1750148872204}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":3.172819448155989E-38,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148917983}],"wsTime":1750148872604}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.756789374382169E-38,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148918384}],"wsTime":1750148873004}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.3953104735043826E-38,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148918785}],"wsTime":1750148873404}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":0.0,"latitude":2.0812298240106358E-38,"longitude":0.0,"ptcId":"0","ptcType":"unknown","size":{"height":0.0,"length":0.0,"width":0.0},"speed":0.0}],"reportTime":1750148919186}],"wsTime":1750148873804}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908670170}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908671172}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908672174}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908673177}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908674179}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908675182}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908676185}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908677187}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908678189}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908679192}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908680194}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908681197}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908682199}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908683201}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908684203}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908685205}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908686207}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908687209}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908688211}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908689214}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908691218}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908692221}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908693223}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908694225}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908695227}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908696230}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908697231}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908698234}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908699236}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908700238}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908701240}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908702242}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908703244}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908704246}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908705248}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908707253}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908708255}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908709257}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908710260}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908711262}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908712264}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908713266}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908714268}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908715270}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908716272}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908717274}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908718276}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908719278}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908720280}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908721282}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908722285}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908723287}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908724289}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908725291}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908726294}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908727296}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908728298}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908729301}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908730305}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908731308}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908732310}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908733312}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908735316}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908736319}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908737321}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908738324}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908740329}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908741331}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908742333}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908743335}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908744338}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908745340}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908746342}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908747344}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908748347}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908749349}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908750351}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908751353}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908752355}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908753357}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908754360}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908755362}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908756364}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908757367}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908758369}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908759371}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908760373}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908761374}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908762377}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908764381}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908765383}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908766386}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908767388}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908768391}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908769393}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908770395}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908771397}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908772399}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908773401}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908774403}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908775405}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908777351}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908778353}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908779355}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908780357}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908781360}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908782362}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908783364}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908785369}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908786371}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908787373}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908789378}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908790380}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908791384}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908792386}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908793388}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908794390}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908795393}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908796395}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908797397}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908798399}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908799401}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908800403}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908801404}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908802406}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908803408}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908804411}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908805413}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908806415}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908807418}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908808420}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908809422}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908810424}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908811427}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908812429}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908813432}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908814434}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908815436}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908816438}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908817440}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908818442}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908819444}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908820447}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908821449}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908822451}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908823453}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908824456}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908825458}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908826460}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908827462}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908828464}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908829467}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908830469}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":290.1811076041592,"latitude":43.83866479555071,"longitude":125.14337904588386,"ptcId":"2611","ptcType":"car","size":{"length":3000,"width":1000},"speed":0.0}],"reportTime":1750908830291}],"wsTime":1750908830470}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908831471}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908832473}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908833475}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908834477}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908835480}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908836482}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908837484}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908838487}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908839489}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908840492}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908841494}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908842497}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908843499}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908844502}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908846506}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908847508}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908848510}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908849512}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908850514}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908851517}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908852519}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908853521}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908854524}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908855526}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908856528}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908858532}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908859535}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908860537}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908861539}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908862542}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908863544}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908864546}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908865548}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908866550}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908867553}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908868555}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908869557}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908870559}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908871561}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908872563}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908873566}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908874569}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908875571}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908876573}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908878578}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908879581}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908880583}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908881586}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908882588}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908883590}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908884592}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908885595}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908886597}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750908886476}],"wsTime":1750908886670}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908887599}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908888601}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908889603}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908891607}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908892609}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908893612}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908894614}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908895616}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908896618}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908897620}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908898623}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908899625}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908900627}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908901629}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908902631}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908903633}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908904635}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908905638}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908906640}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908907642}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908908644}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908909646}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908910649}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908911652}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908912654}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908913657}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908914659}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908915661}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908916663}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908917665}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908918667}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908919670}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908920672}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908921674}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908922676}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908923678}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908924680}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908925682}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908926684}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908927686}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908928689}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908929692}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908930694}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908931696}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908933700}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908934702}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908936707}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908937708}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908938711}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908939712}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908940714}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750908940644}],"wsTime":1750908940670}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908941716}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908942718}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908943720}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908944722}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908945724}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908946727}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908947729}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908948731}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908949733}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908950735}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908951737}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908953741}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908954743}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908955745}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908956748}
{"vehicleData":[{"altitude":0.00,"brake":30,"gasPedal":20,"gear":3,"heading":57.89380094128019,"latitude":43.83835019,"longitude":125.14316698,"obuCode":"O-HK-2687","reportTime":1750908956797,"speed":0.37,"vehicleId":"1694264612474306561","vehiclePlate":"吉AC242","vehiclePurpose":"avp","vehiclePurposeName":"AVP车辆","wheelAngle":101}],"wsTime":1750908956797}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908957750}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908958753}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908959755}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908960757}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908961759}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908962762}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908963764}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908964766}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908965769}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908966771}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908967773}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908968775}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908969778}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908970780}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908971783}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908972785}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908973787}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908974790}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908975792}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908976794}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908977795}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908978797}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908979799}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908980801}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908981803}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908982805}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908983807}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908984809}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908985811}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908987816}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908989820}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908990822}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908991824}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908992826}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908993828}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908994830}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908995832}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908996834}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908997836}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908998838}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750908999840}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909000842}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909001844}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909002846}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909003848}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909004850}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909005852}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909006854}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909007856}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909008858}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909009860}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909010863}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909011865}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909012866}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909013868}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909014870}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909015872}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909016874}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909017876}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909018878}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909020882}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909021884}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909022886}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909023888}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909024890}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909025891}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909026894}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909027895}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909028898}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909029900}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909030902}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909032907}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909033909}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909034911}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909035913}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909036915}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909038919}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909039920}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909040922}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909041924}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909042926}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909043928}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909044930}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909045932}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909046934}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909047936}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909048939}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909049941}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909050943}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909051945}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909052947}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909053949}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909054952}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909055954}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909056956}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909057958}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909058960}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909059962}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909060964}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909061966}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909062968}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909063969}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909064971}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909065973}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909066975}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909067977}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909068979}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909069981}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909070985}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909071986}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909072988}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909073991}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909074993}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909075995}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909076998}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909078000}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909079002}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909080004}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909081006}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909082008}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909083010}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909084013}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909085015}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909086018}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909087020}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909089026}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909090028}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909091031}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909092034}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909093036}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909094040}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750909093919}],"wsTime":1750909094070}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909095042}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909096044}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909097046}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909098050}
{"vehicleStats":{"total":1,"avp":1},"vehicleStatusList":[],"wsTime":1750909099051}
{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750909099937}],"wsTime":1750909100070}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[{"driveMode":1,"vehicleId":"1694264612474306561","vehiclePurpose":"avp","vehicleStatus":0,"vehicleStatusName":"离线","videoStatus":[0,0]}],"wsTime":1750909100053}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909101055}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909102058}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909103060}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909104062}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909105064}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909106076}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909107078}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909109082}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909111086}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909112089}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909113091}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909114093}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909115095}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909116096}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909117098}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909118101}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909119103}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909120105}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909121107}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909122109}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909123111}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909124115}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909125116}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909126119}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909127120}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909128122}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909129124}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909130126}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909131128}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909132130}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909133132}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909134134}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909135136}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909136138}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909137140}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909138142}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909139144}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909140146}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909141147}
{"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750909142150}
syntax = "proto3";
option java_package = "com.cusc.imserver.protocol";
message SocketResponse {
int32 code = 1;
string msg = 2;
int32 msgType = 3; //
string data = 4;
}
export default {
webSocket: {
// url: "ws://127.0.0.1:1884",
// url: "wss://10.166.5.5:10443/socket/ws?clientSource=100",
url: "wss://faw.cuscavp.cn:8443/socket/ws?clientSource=100",
// url: "wss://itg-test.cu-sc.com:13443/WS/socket?clientSource=100",
/* dic: {
// "/topic/vehicle": "/topic/vehicle/1556919708184276993",
"/topic/vehicle": "/topic/vehicle",
"/topic/dataMerge": "/topic/dataMerge",
"/topic/signal": "/topic/signal",
"/topic/v2xStart": "/topic/v2xStart",
"/topic/v2xEnd": "/topic/v2xEnd",
"/topic/vehicleStatus": "/topic/vehicleStatus",
"/topic/timeDelay": "/topic/timeDelay",
}, */
dic: {
/* "/topic/vehicle": "/topic/vehicle/1556919708184276993", */
"/topic/vehicle": "/avp/api/VL961/vehicle/1694264612474306561",
"/topic/dataMerge": "/avp/api/VL961/dataMerge",
// "/topic/dataMerge": "/zhixing/v2/PM270/topic/dataMerge",
"/topic/signal": "/avp/api/VL961/signal",
"/topic/v2xStart": "/avp/api/VL961/v2xStart",
"/topic/v2xEnd": "/avp/api/VL961/v2xEnd",
"/topic/vehicleStatus": "/avp/api/VL961/vehicleStatus",
"/topic/timeDelay": "/avp/api/VL961/timeDelay",
"/topic/points": "/avp/api/VL961/points",
"/topic/linePlaning": "/avp/api/VL961/linePlaning",
"/topic/partLine": "/avp/api/VL961/partLine",
"/topic/rsiEvent": "/avp/api/VL961/rsiEvent",
},
},
cesiumSetting: {
defaultAccessToken:
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJiMTgwZWJjMy1iNGVlLTRjYjctOWRlMy0xYmI3NzJmZDA3YzciLCJpZCI6MTAxNTkxLCJpYXQiOjE2NTgxNDAzMzB9.feULjgKOMAUASE9RnhPNkWhg2dvS9NCGupOeJF55I5M",
},
};
package com.sd.cavphmi.bean
/**开始泊车,获取路径规划
* {"vehicleId":"1700381241280815105","vehicleInfoId":"1694264612474306561","vehiclePlate":"吉AC242","taskId":"1935514619273338882","linkingLine":"118_0.00_-1","line":[[125.14350411033233,43.83873919249159],[125.14340202112747,43.83869489740147]],"spaceCode":null}
* {"vehiclePlate":"吉AC242"}
* {"data":{"line":[[125.14359435375829,43.83877834786253],[125.14342925781992,43.83870671502458]],"linkingLine":"118_0.00_-1","spaceCode":"1D-004","taskId":"1937759817639038977","vehicleId":"1700381241280815105","vehicleInfoId":"1694264612474306561","vehiclePlate":"吉AC242"}}
* **/
data class ParkLinePlan(
val line: List<List<Double>>,
......
......@@ -15,6 +15,7 @@ object WebSetBean {
"/topic/linePlaning" to "/avp/api/VL961/linePlaning",//全局路径发生切换
"/topic/partLine" to "/avp/api/VL961/partLine",// // 局部路径
"/topic/rsiEvent" to "/avp/api/VL961/rsiEvent",// rsi事件
"/topic/parkingLockStatusChange" to "/topic/parkingLockStatusChange",// 地锁
)
var dic = mapOf(
......
......@@ -72,7 +72,7 @@ class MainActivity : BaseActivity<ActivityMainBinding, MainVm>() {
private fun mockBt() {
binding.btVehicle.setOnClickListener {
viewModel.subVehicle(true).observe(this) {
viewModel.subVehicle().observe(this) {
topicVehicle(it)
}
}
......
......@@ -42,7 +42,7 @@ object FileIoUtils {
e.printStackTrace()
} finally {
bf?.close()
assetManager.close()
// assetManager.close()
}
return@withContext ""
}
......
......@@ -56,6 +56,9 @@ class MainVm @Inject constructor(
//模拟操作
lateinit var mockVM: MockVM
//是否需要模拟
var isMock = false
//车辆位姿数据
var carVehicle = MutableLiveData<CarVehicle>()
......@@ -156,13 +159,15 @@ class MainVm @Inject constructor(
when (result) {
is MyResult.Success<OrderBean> -> {
println("-------订单信息---- = ${result.data}")
FileIoUtils.writeToFile(gson.toJson(result.data), "order.txt")
orderBean.value = result.data
var avpStatus = result.data.avpStatus
// var plateNo = result.data.plateNo
// var plateNo = "吉AC242"
if (avpStatus == 3) {//泊车
startParkingVehicle("吉AC242")
startParkingVehicle(vehiclePlate)
} else if (avpStatus == 5) {//招车
startRecruitmentVehicle("吉AC242")
startRecruitmentVehicle(vehiclePlate)
} else {
endParkingVehicle() // 结束泊车
endRecruitmentVehicle()//// 由招车转为其他状态
......@@ -229,24 +234,8 @@ class MainVm @Inject constructor(
private fun startRecruitmentVehicle(vehiclePlate: String) {
// worker不处理路径规划显示的路径
this.needDealPath = true
// 获取规划好的路径
findPathPlanning(vehiclePlate, false)
// 开始招车的时候就开始记录了
// window.needRecord = true;
// window.recordData = {
// vehicle: [],
// vehicleStatus: [],
// dataMerge: [],
// v2xStart: [],
// v2xEnd: [],
// points: [],
// linePlaning: [],
// linePlaningHttp: [],
// partLine: [],
// rsiEvent: [],
// }
}
/** 由招车转为其他状态,移除路径规划路线*/
......@@ -272,6 +261,7 @@ class MainVm @Inject constructor(
fun findPathPlanning(vehiclePlate: String, ifParking: Boolean = true) {
viewModelScope.launch {
var result = parseSocketRepo.getLinePlaning(vehiclePlate)
FileIoUtils.writeToFile(gson.toJson(result), "http_path.txt")
when (result) {
is MyResult.Success -> {
var lins = result.data.line
......@@ -390,6 +380,7 @@ class MainVm @Inject constructor(
private var onDataCb = object : MyWebSocketClient.OnDataCb {
override fun onVehicle(res: Response.SocketResponse) {
viewModelScope.launch {
FileIoUtils.writeToFile(res.data, "CarVehicle.txt")
val bean =
parseSocketRepo.parseDataBean(res.data, CarVehicle::class.java)
println("------车辆位姿数据 = ${res.data}")
......@@ -397,12 +388,12 @@ class MainVm @Inject constructor(
heading.set(bean.vehicleData.get(0).heading.toInt())
speed.set(bean.vehicleData.get(0).speed)
}
// FileIoUtils.writeToFile(res.data, "carvehicle.txt")
}
}
override fun onVehicleStats(res: Response.SocketResponse) {
viewModelScope.launch {
FileIoUtils.writeToFile(res.data, "vehicleS.txt")
val bean =
parseSocketRepo.parseDataBean(res.data, VehicleStats::class.java)
println("------联网车辆状态数据 = ${res.data}")
......@@ -416,16 +407,15 @@ class MainVm @Inject constructor(
driveMode.set(str)
}
vehicleStat.value = bean
FileIoUtils.writeToFile(res.data, "vehicleS.txt")
}
}
override fun onTarget(res: Response.SocketResponse) {
viewModelScope.launch {
FileIoUtils.writeToFile(res.data, "PerTarget.txt")
var bean = parseSocketRepo.parseDataBean(res.data, PerTarget::class.java)
println("-----感知目标物数据 = ${bean}")
targetPre.value = bean
// FileIoUtils.writeToFile(res.data, "target.txt")
}
}
......@@ -439,25 +429,26 @@ class MainVm @Inject constructor(
override fun onEndV2x(res: Response.SocketResponse) {
println("--------V2X预警结束--${res.data}")
viewModelScope.launch {
FileIoUtils.writeToFile(res.data, "onEndV2x.txt")
}
}
override fun onPoint(res: Response.SocketResponse) {
viewModelScope.launch {
println("-----停车位变更 = ${res.data}")
FileIoUtils.writeToFile(res.data, "change_park.txt")
var bean = parseSocketRepo.parseDataBean(res.data, ParkBean::class.java)
parkBean.value = bean
FileIoUtils.writeToFile(res.data, "park.txt")
}
}
override fun onLinePlaning(res: Response.SocketResponse) {
viewModelScope.launch {
println("-----全局路径发生切换 = ${res.data}")
FileIoUtils.writeToFile(res.data, "all_line.txt")
var bean = parseSocketRepo.parseDataBean(res.data, LinePlaningBean::class.java)
// parkBean.value = bean
FileIoUtils.writeToFile(res.data, "line_plan.txt")
// FileIoUtils.writeToFile(gson.toJson(bean), "line_plan.txt")
}
}
......@@ -465,9 +456,9 @@ class MainVm @Inject constructor(
override fun onPartLine(res: Response.SocketResponse) {
viewModelScope.launch {
println("-----局部路径 = ${res.data}")
FileIoUtils.writeToFile(res.data, "part_line.txt")
var bean = parseSocketRepo.parseDataBean(res.data, PartLineBean::class.java)
// parkBean.value = bean
FileIoUtils.writeToFile(res.data, "part_line.txt")
// FileIoUtils.writeToFile(gson.toJson(bean), "part_line.txt")
}
}
......@@ -486,8 +477,8 @@ class MainVm @Inject constructor(
/*** 联网车辆位姿数据**/
fun subVehicle(mock: Boolean = false): LiveData<CarVehicle> {
if (mock) {
fun subVehicle(): LiveData<CarVehicle> {
if (isMock) {
mockVM.onVehicleMock(carVehicle, heading, speed)
} else {
client?.send(getSendData("/topic/vehicle"))
......@@ -552,8 +543,8 @@ class MainVm @Inject constructor(
client?.send(reqStr)
}
fun getSendData(key: String): String {
/**构建发送体**/
private fun getSendData(key: String): String {
var data = WebSetBean.subDic.get(key)
var req = ReqBean()
req.data = data!!
......
......@@ -33,7 +33,7 @@ class MockVM @Inject constructor(
var dst = mutableListOf<String>()
FileIoUtils.getAssetMock(context, "mock/carvehicle.txt", dst)
dst.forEach { str ->
delay(3000)
delay(1000)
val bean =
parseSocketRepo.parseDataBean(str, CarVehicle::class.java)
println("------模拟车辆位姿数据 = ${bean}")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment