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

集成一部分订阅

parent fecf07e4
......@@ -3,4 +3,5 @@
停车场泊车 苏州 约等于(长春) AVP
https://protobuf.dev/getting-started/javatutorial/
protoc --java_out=app\src\main\java\ -I d:\WorkSpace\suzhouavp\app\src\main\proto\ d:\WorkSpace\suzhouavp\app\src\main\proto\response.proto
\ No newline at end of file
protoc --java_out=app\src\main\java\ -I app\src\main\proto\ response.proto
protoc --java_out=app\src\main\java\ -I d:\WorkSpace\suzhouavp\app\src\main\proto\ response.proto
\ No newline at end of file
<template>
<div class="cesium-page-css">
<basis-cesium ref="basisCesium" :access-token="this.$setting.cesiumSetting.defaultAccessToken" />
<main-view ref="mainView" :speed="speed" :heading="heading2" :v2xname="v2xname" :driveMode="driveMode"
:endTime="endTime" />
</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";
let v2xdata = {
v2xArray: [],
};
let baseData = {
mainCarID: "",
perceiveList: [],
mainLocation: {
lon: 116.50304817785404,
lat: 39.80882415169232,
},
};
let plainData = {
lon: 0,
lat: 0,
};
const ParkingSpace = [
{ P: "C002", lon: "120.70663538", lat: "31.32409565" },
{ P: "C003", lon: "120.70663038", lat: "31.32407265" },
{ P: "C004", lon: "120.70662538", lat: "31.32404965" },
{ P: "C005", lon: "120.70661838", lat: "31.32401665" },
{ P: "C006", lon: "120.70661338", lat: "31.32399365" },
{ P: "C007", lon: "120.70660838", lat: "31.32397065" },
];
let pValue = "";
let worker = null;
let postData = [];
let AllTingCheChang = [];
let preWsTime = 0;
let preHMITime = 0;
// 是否需要进行路径规划
let needFindPath = true;
export default {
name: "HomeView",
components: {
basisCesium,
mainView,
},
//L
data() {
return {
heading2: "—— ——", //航向角显示
v2xname: "异常车辆预警", //预警事件名称
driveMode: "—— ——", //驾驶模式
speed: 0, //速度
endTime: false, //用于判断预警事件是否展示完毕,false为没有预警事件
// 是否是车内视角
firstPerspective: false,
audioSrc: "@/assets/11582.mp3",
};
},
//A
mounted() {
// 120.70487827, 31.32469438 176.6541769857891
// 120.70486427, 31.32469337 176.68233785573705
// 120.70450226, 31.32472483 140.1278723424079
// 120.7044951, 31.32471744 125.72534272264176
// 120.70449184, 31.32471254 116.59055210401831
// 120.70448881, 31.32470443 103.82035744116246
// 120.70448773, 31.32469666 92.04861226425777
// 120.70448812, 31.32469172 84.64731549277309
// 120.70448989, 31.32468488 74.0716768319416
// 120.7044918, 31.32468057 67.23386687836239
// 120.70449568, 31.32467475 57.28430640874274
// 120.70449925, 31.3246713 50.56300411447833
// 120.70450527, 31.32466652 40.423499499135175
// 120.70451002, 31.32466347 33.654283427843154
// 120.70451755, 31.32466059 23.63138380201046
// 120.70452293, 31.32465874 17.30164259248454
// 120.70453232, 31.32465719 9.975568028350523
// 120.70454182, 31.3246563 5.34004158206794
// 120.70454854, 31.32465612 3.2548804511114184
// 120.70455936, 31.32465585 1.1908997367711152
// 120.70456667, 31.32465606 0.3411149209948121
// 120.70457733, 31.32465623 -0.3316792028189468
// const music = new Audio(
// "http://downsc.chinaz.net/Files/DownLoad/sound1/201906/11582.mp3"
// );
// music.play();
this.initMap();
this.websocketClient();
worker = new Worker();
worker.onmessage = (e) => {
if (this.avpStatus) {
let result = this.$refs.basisCesium.drawLine(e.data[0], e.data[1]);
// if (result.code) {
// this.moveCar(result.data.lon, result.data.lat, e.data[2]);
// } else {
// this.moveCar(e.data[0], e.data[1], e.data[2]);
// }
this.moveCar(e.data[0], e.data[1], e.data[2]);
} else {
this.moveCar(e.data[0], e.data[1], e.data[2]);
}
};
// 规划
// this.$refs.basisCesium.findPathPlanning("origin", "destination");
this.$refs.basisCesium.addParkingSpace(30.7065927, 114.3241276, 0);
// this.$refs.basisCesium.moveParkingSpace(120.7065927, 31.3241276, 100);
setTimeout(this.getSpaceData, 5000);
setInterval(this.getSpaceData, 20000);
// this.addTest()
},
methods: {
/**
* 模拟入库
*/
addTest() {
this.$refs.basisCesium.addTest();
},
initMap() {
this.$refs.basisCesium.buildCesiumWorld();
// this.$refs.basisCesium.setGaoDeBasemap();
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(
120.7065927,
31.3241276,
150,
-150,
-52,
0
);
this.$refs.basisCesium.initLine();
},
async websocketClient() {
this.websocketHeartCheck = {
lastSecond: 0,
heartTimer: null
}
await websocket.connectSocket();
// 2.2. 联网车辆位姿数据topic
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/vehicle"],
(message) => {
// 更新接收消息时间
this.websocketHeartCheck.lastSecond = new Date().getTime();
var bodyData = JSON.parse(message.body);
this.topicVehicle(bodyData);
// let curTime = new Date().getTime();
// console.log('接收后台时间', bodyData.wsTime, 'hmi时间', curTime, '相差时间', curTime - bodyData.wsTime)
// console.log('后台两帧时间差', bodyData.wsTime - preWsTime, 'hmi接收时间差', curTime - preHMITime)
// console.log('车辆位置', bodyData.vehicleData[0].longitude + ',' + bodyData.vehicleData[0].latitude)
// console.log('')
// preWsTime = bodyData.wsTime
// preHMITime = curTime
}
);
// 2.3. 联网车辆状态数据topic
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/vehicleStatus"],
(message) => {
// 更新接收消息时间
this.websocketHeartCheck.lastSecond = new Date().getTime();
var bodyData = JSON.parse(message.body);
this.topicVehicleStatus(bodyData);
//AAAAAA
}
);
// 2.4. 感知目标物数据topic
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/dataMerge"],
(message) => {
// 更新接收消息时间
this.websocketHeartCheck.lastSecond = new Date().getTime();
var bodyData = JSON.parse(message.body);
this.topicDataMerge(bodyData);
}
);
// 2.5. V2X预警开始topic
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/v2xStart"],
(message) => {
// 更新接收消息时间
this.websocketHeartCheck.lastSecond = new Date().getTime();
var bodyData = JSON.parse(message.body);
this.topicv2xStart(bodyData);
}
);
// 2.6. V2X预警结束topic
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/v2xEnd"],
(message) => {
// 更新接收消息时间
this.websocketHeartCheck.lastSecond = new Date().getTime();
var bodyData = JSON.parse(message.body);
this.topicv2xEnd(bodyData);
}
);
websocket.stompClient.subscribe(
this.$setting.webSocket.dic["/topic/points"],
(message) => {
// 更新接收消息时间
this.websocketHeartCheck.lastSecond = new Date().getTime();
var bodyData = JSON.parse(message.body);
pValue = bodyData.parkingSpace;
// 需要进行路径规划,此场景出现在先接收到泊车指令,后接收车位指令
if (needFindPath) {
this.findPathPlanning()
}
// 更新停车位
const lonLat = this.getLonLatByP(pValue);
this.$refs.basisCesium.moveParkingSpace(lonLat.lon, lonLat.lat, 190);
}
);
// if (this.websocketHeartCheck.heartTimer) {
// return
// }
// this.websocketHeartCheck.heartTimer = setInterval(() => {
// let newSecond = new Date().getTime();
// if (newSecond - this.websocketHeartCheck.lastSecond > 1000 * 30) {
// // 0:正在连接中,1:已连接,2:正在关闭,3:已关闭
// if (websocket.stompClient.readyState == 2 && websocket.stompClient.readyState == 3) {
// clearInterval(this.websocketHeartCheck.heartTimer)
// this.websocketHeartCheck.heartTimer = null;
// // 重新开始连接
// this.websocketClient()
// }
// }
// }, 1000)
},
topicVehicleStatus(msg) {
if (msg.vehicleStatusList.length != 0) {
let driveMode1 = msg.vehicleStatusList[0].driveMode;
switch (driveMode1) {
case 0:
this.driveMode = "自动驾驶";
break;
case 1:
this.driveMode = "人工驾驶";
break;
case 2:
this.driveMode = "远程驾驶";
break;
default:
this.driveMode = "—— ——";
break;
}
}
},
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;
}
},
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;
//否则会将优先级最高的事件进行展示
}
},
//A
topicVehicle(msg) {
// #region L
this.speed = msg.vehicleData[0].speed;
let heading1 = Math.floor(msg.vehicleData[0].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;
}
// #endregion A
plainData.lon = msg.vehicleData[0].longitude;
plainData.lat = msg.vehicleData[0].latitude;
let longitude = msg.vehicleData[0].longitude;
let latitude = msg.vehicleData[0].latitude;
let heading = msg.vehicleData[0].heading - 90;
if (baseData.mainCarID == "") {
let id = msg.vehicleData[0].vehicleId;
let url = "cesium/XC60.glb";
this.$refs.basisCesium.addOneModelById(
id,
url,
longitude,
latitude,
heading,
0.8
);
baseData.mainCarID = id;
} else {
worker.postMessage([longitude, latitude, heading]);
// this.moveCar(longitude, latitude, heading);
baseData.mainLocation.lon = longitude;
baseData.mainLocation.lat = latitude;
}
// this.$refs.basisCesium.drawLine(longitude, latitude);
},
moveCar(longitude, latitude, heading) {
if (this.firstPerspective) {
this.$refs.basisCesium.moveModelById(
baseData.mainCarID,
longitude,
latitude,
heading,
true,
[-1, 0, 0],
true
);
} else {
this.$refs.basisCesium.moveModelById(
baseData.mainCarID,
longitude,
latitude,
heading,
true,
[-31.5, 0, 10]
);
}
},
transformGCJ02ToWGS84(lng, lat) {
var a = 6378245.0;
var ee = 0.00669342162296594323;
var pi = Math.PI;
function outOfChina(lng, lat) {
if (lng < 72.004 || lng > 137.8347) {
return true;
}
if (lat < 0.8293 || lat > 55.8271) {
return true;
}
return false;
}
function transformLng(lng, lat) {
var ret =
300.0 +
lng +
2.0 * lat +
0.1 * lng * lng +
0.1 * lng * lat +
0.1 * Math.sqrt(Math.abs(lng));
ret +=
((20.0 * Math.sin(6.0 * lng * pi) + 20.0 * Math.sin(2.0 * lng * pi)) *
2.0) /
3.0;
ret +=
((20.0 * Math.sin(lng * pi) + 40.0 * Math.sin((lng / 3.0) * pi)) *
2.0) /
3.0;
ret +=
((150.0 * Math.sin((lng / 12.0) * pi) +
300.0 * Math.sin((lng / 30.0) * pi)) *
2.0) /
3.0;
return ret;
}
function transformLat(lng, lat) {
var ret =
-100.0 +
2.0 * lng +
3.0 * lat +
0.2 * lat * lat +
0.1 * lat * lng +
0.2 * Math.sqrt(Math.abs(lng));
ret +=
((20.0 * Math.sin(6.0 * lng * pi) + 20.0 * Math.sin(2.0 * lng * pi)) *
2.0) /
3.0;
ret +=
((20.0 * Math.sin(lat * pi) + 40.0 * Math.sin((lat / 3.0) * pi)) *
2.0) /
3.0;
ret +=
((160.0 * Math.sin((lat / 12.0) * pi) +
320 * Math.sin((lat * pi) / 30.0)) *
2.0) /
3.0;
return ret;
}
function transform(lng, lat) {
if (outOfChina(lng, lat)) {
return [lng, lat];
}
var dLng = transformLng(lng - 105.0, lat - 35.0);
var dLat = transformLat(lng - 105.0, lat - 35.0);
var radLat = (lat / 180.0) * pi;
var magic = Math.sin(radLat);
magic = 1 - ee * magic * magic;
var sqrtMagic = Math.sqrt(magic);
dLng = (dLng * 180.0) / ((a / sqrtMagic) * Math.cos(radLat) * pi);
dLat = (dLat * 180.0) / (((a * (1 - ee)) / (magic * sqrtMagic)) * pi);
var mgLng = lng + dLng;
var mgLat = lat + dLat;
return [mgLng, mgLat];
}
return transform(lng, lat);
},
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;
},
topicDataMerge(msg) {
for (let i = 0; i < msg.objectData.length; i++) {
let allPerceive = [];
for (let j = 0; j < msg.objectData[i].participant.length; j++) {
// allPerceive.push({
// id: msg.objectData[i].participant[j].ptcId,
// type: msg.objectData[i].participant[j].ptcType,
// longitude: msg.objectData[i].participant[j].longitude,
// latitude: msg.objectData[i].participant[j].latitude,
// heading: msg.objectData[i].participant[j].heading,
// });
let distance = this.getDistance(
baseData.mainLocation.lon,
baseData.mainLocation.lat,
msg.objectData[i].participant[j].longitude,
msg.objectData[i].participant[j].latitude
)
// console.log('距离:' + distance, '类型:' + msg.objectData[i].participant[j].ptcType, 'id:' + msg.objectData[i].participant[j].ptcId)
if (distance < 100) {
allPerceive.push({
id: msg.objectData[i].participant[j].ptcId,
type: msg.objectData[i].participant[j].ptcType,
longitude: msg.objectData[i].participant[j].longitude,
latitude: msg.objectData[i].participant[j].latitude,
heading: msg.objectData[i].participant[j].heading,
});
}
}
this.$refs.basisCesium.beginPerceive(
msg.objectData[i].deviceCode,
allPerceive
);
}
},
getLonLatByP(pValue) {
const parkingInfo = ParkingSpace.find((item) => item.P === pValue);
if (parkingInfo) {
const lon = parseFloat(parkingInfo.lon); // 转换为浮点数
const lat = parseFloat(parkingInfo.lat); // 转换为浮点数
return { lon, lat };
} else {
// 如果找不到对应的P值,则返回null或者其他适当的值
return null;
}
},
setAvpStatus(bool) {
this.avpStatus = bool;
if (this.avpStatus && pValue != "") {
// 需要进行路径规划,此场景出现在先接收到车位指令,后接收泊车指令
if (needFindPath) {
this.findPathPlanning()
}
} else {
// 泊车结束,下次泊车需要路径规划
needFindPath = true;
this.$refs.basisCesium.moveParkingSpace(131.7065927, 40.3241276, 10);
this.$refs.basisCesium.ClearLine();
}
},
/**
* 自主泊车+有停车位信息,才能开始进行路径规划
*/
findPathPlanning() {
const lonLat = this.getLonLatByP(pValue);
// 起点
let origin = [plainData.lon, plainData.lat];
if (
this.getDistance(
plainData.lon,
plainData.lat,
120.7062195,
31.3238778
) < 8
) {
origin = [120.7062195, 31.3238778];
} else {
console.log("距离不够咧,起点", origin);
console.log(
this.getDistance(
plainData.lon,
plainData.lat,
120.7062195,
31.3238778
)
);
}
const destination = [lonLat.lon, lonLat.lat];
const steps = false;
const waypoints = [];
const trafficCondition = false;
const equalDistance = false;
const distance = 1;
this.$refs.basisCesium.moveParkingSpace(lonLat.lon, lonLat.lat, 190);
this.$refs.basisCesium.findPathPlanning(
origin,
destination,
steps,
waypoints,
trafficCondition,
equalDistance,
distance
);
// 泊车开始,不需要再进行路径规划了
needFindPath = true;
},
async getSpaceData() {
let data = JSON.stringify({
pageNo: 20,
pageSize: 1000,
});
await axios
.post(
"https://sip-avp.isungent.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) {
//this.removeCarModel(car.spaceNo);
// 检查该车位是否已经添加模型
if (car.state === 1) {
//将车位信息添加到已添加模型的数据中;
const name = parkingSpot.spaceCode;
const latlon = [parkingSpot.center[0], parkingSpot.center[1]];
if (
this.getDistance(
baseData.mainLocation.lon,
baseData.mainLocation.lat,
latlon[0],
latlon[1]
) > 2
) {
AllTingCheChang.push({
id: name,
longitude: latlon[0],
latitude: latlon[1],
heading: parkingSpot.heading,
});
}
}
}
});
this.$refs.basisCesium.beginParkingLot(AllTingCheChang);
});
},
},
destroyed() {
if (window.viewer) {
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%;
}
</style>
{"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}
{"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}
export default {
webSocket: {
// url: "ws://127.0.0.1:1884",
// url: "wss://10.166.5.5:10443/socket/ws?clientSource=100",
url: "wss://sip-avp.isungent.cn:8443/socket/ws?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/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",
},
},
cesiumSetting: {
defaultAccessToken:
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJiMTgwZWJjMy1iNGVlLTRjYjctOWRlMy0xYmI3NzJmZDA3YzciLCJpZCI6MTAxNTkxLCJpYXQiOjE2NTgxNDAzMzB9.feULjgKOMAUASE9RnhPNkWhg2dvS9NCGupOeJF55I5M",
},
};
package com.sd.cavphmi.bean
/***车辆位资数据**/
data class CarVehicle(
val vehicleData: List<CarVehicleData>,
val wsTime: Long
)
data class CarVehicleData(
val altitude: Double,
val brake: Int,
val gasPedal: Int,
val gear: Int,
val heading: Float,
val latitude: Double,
val longitude: Double,
val obuCode: String,
val reportTime: Long,
val speed: Float,//m/s
val vehicleId: String,
val vehiclePlate: String,
val vehiclePurpose: String,
val vehiclePurposeName: String,
val wheelAngle: Int
)
\ No newline at end of file
package com.sd.cavphmi.bean
/**感知目标物
* {"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":59.51892445105614,"latitude":43.836595395579934,"longitude":125.13730164662486,"ptcId":"0","ptcType":"non-motor","size":{"length":1.7816076278686523,"width":0.95207178592681885,"height":1.080740213394165},"speed":0.0030517578125}],"reportTime":1750148176068}],"wsTime":1750148130604}{"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[{"gear":0,"heading":59.51892445105614,"latitude":43.836595395579934,"longitude":125.13730164662486,"ptcId":"0","ptcType":"non-motor","size":{"length":1.7816076278686523,"width":0.95207178592681885,"height":1.080740213394165},"speed":0.0030517578125}],"reportTime":1750148176068}],"wsTime":1750148130604}
*
* ***/
data class PerTarget(
val objectData: List<ObjectData>,
val wsTime: Long
)
data class ObjectData(
val altitude: Double,
val deviceCode: String,
val id: String,
val latitude: Double,
val longitude: Double,
val participant: List<Participant>,
val reportTime: Long
)
data class Participant(
val gear: Int,
val heading: Double,
val latitude: Double,
val longitude: Double,
val ptcId: String,
val ptcType: String,
val size: Size,
val speed: Double
)
data class Size(
val height: Double,
val length: Double,
val width: Double
)
\ No newline at end of file
package com.sd.cavphmi.bean
//联网车辆状态数据
data class VehicleStats(
val vehicleData: List<VehicleData>,
val wsTime: Long
)
data class VehicleData(
val altitude: Double,
val brake: Int,
val gasPedal: Int,
val gear: Int,
val heading: Double,
val latitude: Double,
val longitude: Double,
val obuCode: String,
val reportTime: Long,
val speed: Double,
val vehicleId: String,
val vehiclePlate: String,
val vehiclePurpose: String,
val vehiclePurposeName: String,
val wheelAngle: Int,
val driveMode: Int,
)
\ No newline at end of file
......@@ -2,7 +2,8 @@ package com.sd.cavphmi.bean
object WebSetBean {
/* "/topic/vehicle"to "/topic/vehicle/1556919708184276993", */
var dic = mapOf(
//目前只有车辆和感知
var subDic = mapOf(
"/topic/vehicle" to "/avp/api/VL961/vehicle/1694264612474306561",
"/topic/dataMerge" to "/avp/api/VL961/dataMerge",
"/topic/signal" to "/avp/api/VL961/signal",
......@@ -10,6 +11,27 @@ object WebSetBean {
"/topic/v2xEnd" to "/avp/api/VL961/v2xEnd",
"/topic/vehicleStatus" to "/avp/api/VL961/vehicleStatus",
"/topic/timeDelay" to "/avp/api/VL961/timeDelay",
"/topic/points" to "/avp/api/VL961/points",
"/topic/points" to "/avp/api/VL961/points",//停车位变更
)
var dic = mapOf(
5231 to "/topic/vehicle",
5232 to "/topic/dataMerge",
5233 to "topic/signa",
5234 to "/topic/v2xStart",
5235 to "/topic/v2xEnd",
5236 to "/topic/vehicleStatus",
5237 to "/topic/timeDelay",
1 to "/topic/point",
)
// 5231: { action: setting.webSocket.dic["/topic/vehicle"] },
// 5232: { action: setting.webSocket.dic["/topic/dataMerge"] },
// 5233: { action: setting.webSocket.dic["/topic/signal"] },
// 5234: { action: setting.webSocket.dic["/topic/v2xStart"] },
// 5235: { action: setting.webSocket.dic["/topic/v2xEnd"] },
// 5236: { action: setting.webSocket.dic["/topic/vehicleStatus"] },
// 5237: { action: setting.webSocket.dic["/topic/timeDelay"] },
// 1: { action: setting.webSocket.dic["/topic/points"] },
}
\ No newline at end of file
package com.sd.cavphmi.bindadapters
import android.graphics.Typeface
import android.text.SpannableStringBuilder
import android.text.Spanned
import android.text.style.RelativeSizeSpan
import android.text.style.StyleSpan
import android.widget.TextView
import androidx.databinding.BindingAdapter
import java.text.DecimalFormat
import kotlin.math.absoluteValue
object ShowCarStatuObject {
@JvmStatic
@BindingAdapter("showSpeed")
fun showSpeed(tv: TextView, speed: Float) {
var sb = SpannableStringBuilder()
var mixSpan = RelativeSizeSpan(1f)
var maxSpan = RelativeSizeSpan(2f)
var bold= StyleSpan(Typeface.BOLD)
if (speed > 0f) {
val df: DecimalFormat = DecimalFormat("#.0")
val s: String = df.format(speed.times(3.6f))
sb.append("${s}km/h")
sb.setSpan(maxSpan, 0, s.count(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE)
sb.setSpan(bold, 0, s.count(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE)
sb.setSpan(mixSpan, s.count(), sb.count(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE)
tv.setText(sb)
} else {
sb = SpannableStringBuilder("0km/h")
sb.setSpan(maxSpan, 0, 1, Spanned.SPAN_INCLUSIVE_EXCLUSIVE)
sb.setSpan(bold, 0, 1, Spanned.SPAN_INCLUSIVE_EXCLUSIVE)
sb.setSpan(mixSpan, 1, sb.count(), Spanned.SPAN_EXCLUSIVE_EXCLUSIVE)
tv.setText(sb)
}
}
@JvmStatic
@BindingAdapter("showHeading")
fun showHeading(tv: TextView, head: Int) {
var heading = head.absoluteValue
when (heading) {
0 -> {
tv.setText("正北")
}
90 -> {
tv.setText("正东")
}
180 -> {
tv.setText("正南")
}
270 -> {
tv.setText("正北")
}
in 1..45 -> {
tv.setText("北偏东")
}
in 46..89 -> {
tv.setText("东偏北")
}
in 91..135 -> {
tv.setText("东偏南")
}
in 136..179 -> {
tv.setText("南偏东")
}
in 181..225 -> {
tv.setText("南偏西")
}
in 226..269 -> {
tv.setText("西偏南")
}
in 271..315 -> {
tv.setText("西偏北")
}
in 316..359 -> {
tv.setText("北偏西")
}
else -> {
tv.setText(" - -")
}
}
}
}
\ No newline at end of file
package com.sd.cavphmi.repositorys
import com.google.gson.Gson
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext
import javax.inject.Inject
class ParseSocketRepo @Inject constructor() {
var gson = Gson()
/**联网车辆状态数据***/
suspend fun <T> genDataBean(str: String, clazz: Class<T>): T {
return withContext(Dispatchers.Default) {
gson.fromJson(str, clazz)
}
}
// /**联网车辆状态数据***/
// suspend fun<T> genVehStatus():T {
//
// }
}
\ No newline at end of file
......@@ -7,8 +7,10 @@ import androidx.lifecycle.ViewModelProvider
import com.sd.cavphmi.BR
import com.sd.cavphmi.R
import com.sd.cavphmi.base.BaseActivity
import com.sd.cavphmi.base.MyBaseViewModel
import com.sd.cavphmi.bean.CarVehicle
import com.sd.cavphmi.bean.VehicleStats
import com.sd.cavphmi.databinding.ActivityMainBinding
import com.sd.cavphmi.utils.DateUtils
import com.sd.cavphmi.viewmodels.MainVm
import dagger.hilt.android.AndroidEntryPoint
......@@ -43,23 +45,76 @@ class MainActivity : BaseActivity<ActivityMainBinding, MainVm>() {
}
override fun initListener() {
binding.btVehicle.setOnClickListener {
viewModel.subVehicle().observe(this) {
topicVehicle(it)
}
}
binding.btStatus.setOnClickListener {
viewModel.subVehicleStatus().observe(this) {
// println("time = ${time}")
topicVehicleStatus(it)
}
}
binding.btTarget.setOnClickListener {
viewModel.subTarget()
}
binding.btV2x.setOnClickListener {
viewModel.subStartV2x()
}
binding.btV2xend.setOnClickListener {
viewModel.subEndV2x()
}
binding.btChewei.setOnClickListener {
viewModel.subPoints()
}
}
/**车辆姿态**/
private fun topicVehicle(bean: CarVehicle) {
var time = DateUtils.longToString(bean.wsTime, DateUtils.FORMAT_TIME)
binding.tvTime.setText(time)
if (bean.vehicleData?.isNotEmpty() ?: false) {
viewModel.heading.set(bean.vehicleData.get(0).heading.toInt())
viewModel.speed.set(bean.vehicleData.get(0).speed)
}
}
/**联网车辆状态数据topic**/
private fun topicVehicleStatus(bean: VehicleStats) {
if (bean.vehicleData?.isNotEmpty() ?: false) {
var driveMode = bean.vehicleData.get(0).driveMode
var str = when (driveMode) {
0 -> "自动驾驶"
1 -> "人工驾驶"
2 -> "远程驾驶"
else -> "—— ——"
}
viewModel.driveMode.set(str)
}
}
override fun dispatchKeyEvent(event: KeyEvent): Boolean {
if ((event.getKeyCode() == KeyEvent.KEYCODE_BACK) || event.getKeyCode() == KeyEvent.KEYCODE_HOME) {
//如果是导航中,提示清除资源
val dialog = AlertDialog.Builder(this)
val dialog = AlertDialog.Builder(this)
// dialog.setIcon(android.R.drawable.ic_dialog_info)
dialog.setTitle("提示")
dialog.setMessage("确定退出应用")
dialog.setPositiveButton(
"确定",
DialogInterface.OnClickListener { dialog1: DialogInterface?, which: Int ->
viewModel.closeWS()
finish()
})
dialog.setNegativeButton(
"取消",
DialogInterface.OnClickListener { dialog12: DialogInterface?, which: Int -> })
dialog.show()
dialog.setTitle("提示")
dialog.setMessage("确定退出应用")
dialog.setPositiveButton(
"确定",
DialogInterface.OnClickListener { dialog1: DialogInterface?, which: Int ->
dialog1?.dismiss()
viewModel.closeWS()
finish()
})
dialog.setNegativeButton(
"取消",
DialogInterface.OnClickListener { dialog12: DialogInterface?, which: Int ->
dialog12?.dismiss()
})
dialog.show()
return true
} else {
......
......@@ -7,6 +7,7 @@ import android.net.Uri
import android.os.Build
import android.os.Environment
import android.provider.MediaStore
import android.util.Log
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.coroutineScope
import kotlinx.coroutines.runBlocking
......@@ -47,12 +48,12 @@ object FileIoUtils {
}
suspend fun getAssetMock(context: Context, fileName: String, dst: MutableList<String>) :Int{
suspend fun getAssetMock(context: Context, fileName: String, dst: MutableList<String>): Int {
val assetManager = context.assets
var bf: BufferedReader? = null
try {
val inputReader = InputStreamReader(assetManager.open(fileName))
bf = BufferedReader(inputReader)
bf = BufferedReader(inputReader)
var line = ""
while (!bf.run {
line = readLine()
......@@ -334,7 +335,25 @@ object FileIoUtils {
} catch (e: java.lang.Exception) {
e.printStackTrace()
}
}
private var fileWriter: FileWriter? = null
suspend fun writeToFile(message: String, fileName: String) {
withContext(Dispatchers.IO) {
try {
val file = File(
Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS),
fileName
)
fileWriter = FileWriter(file, true) // true for append mode
fileWriter!!.append("$message\n")
fileWriter!!.flush() // Optional, to ensure immediate writing to file
} catch (e: IOException) {
Log.e("------writeToFile", "Error initializing log file", e)
}
}
}
......
package com.sd.cavphmi.viewmodels
import android.content.Context
import androidx.databinding.ObservableField
import androidx.lifecycle.LiveData
import androidx.lifecycle.MutableLiveData
import androidx.lifecycle.viewModelScope
import com.google.gson.Gson
import com.sd.cavphmi.base.MyBaseViewModel
import com.sd.cavphmi.bean.CarVehicle
import com.sd.cavphmi.bean.PerTarget
import com.sd.cavphmi.bean.ReqBean
import com.sd.cavphmi.bean.SpaceNoBean
import com.sd.cavphmi.bean.VToXImgBean
import com.sd.cavphmi.bean.VehicleStats
import com.sd.cavphmi.bean.WebSetBean
import com.sd.cavphmi.net.MyResult
import com.sd.cavphmi.repositorys.ParseSocketRepo
import com.sd.cavphmi.repositorys.SpaceNoRepo
import com.sd.cavphmi.utils.MyContants
import com.sd.cavphmi.utils.ToastHelper
import com.sd.cavphmi.websockets.MyWebSocketClient
import com.sd.shupathwebview.utils.FileIoUtils
import dagger.hilt.android.lifecycle.HiltViewModel
import dagger.hilt.android.qualifiers.ApplicationContext
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import org.java_websocket.handshake.ServerHandshake
import protocol.Response
import java.net.URI
import java.nio.ByteBuffer
import javax.inject.Inject
......@@ -25,13 +36,33 @@ import javax.inject.Inject
@HiltViewModel
class MainVm @Inject constructor(
@ApplicationContext var context: Context,
var spaceNoRepo: SpaceNoRepo
private var parseSocketRepo: ParseSocketRepo
// var spaceNoRepo: SpaceNoRepo
) : MyBaseViewModel() {
private var client: MyWebSocketClient? = null
private var gson = Gson()
//车辆位姿数据
var carVehicle = MutableLiveData<CarVehicle>()
//联网车辆状态数据topic
var vehicleStat = MutableLiveData<VehicleStats>()
//感知目标物
var targetPre = MutableLiveData<PerTarget>()
//驾驶模式
var driveMode = ObservableField("")
//航向角
var heading = ObservableField(550)
//速度
var speed = ObservableField(0f)
fun startWS() {
val httpHeaders = mutableMapOf<String, String>()
httpHeaders.put("Cookie", "username=nemo")
......@@ -39,6 +70,7 @@ class MainVm @Inject constructor(
try {
client = MyWebSocketClient(URI(MyContants.WS_HOST))
client?.onSocketCb = onSocketCb
client?.onDataCb = onDataCb
client?.connect()
} catch (e: Exception) {
......@@ -51,35 +83,112 @@ class MainVm @Inject constructor(
}
}
var onSocketCb = object : MyWebSocketClient.OnSocketCb {
private var onSocketCb = object : MyWebSocketClient.OnSocketCb {
override fun onOpen(handshakedata: ServerHandshake?) {
println("--------Thread.currentThread() = ${Thread.currentThread()}")
subVehicle()
}
override fun onClose(code: Int, reason: String?, remote: Boolean) {
}
override fun onMessage(message: String?) {
override fun onError(ex: Exception?) {
}
}
override fun onMessage(bytes: ByteBuffer?) {
// SocketResponse.parseFrom(bytes)
private var onDataCb = object : MyWebSocketClient.OnDataCb {
override fun onVehicle(res: Response.SocketResponse) {
viewModelScope.launch {
val bean =
parseSocketRepo.genDataBean(res.data, CarVehicle::class.java)
println("---车辆位姿数据 = ${bean}")
carVehicle.value = bean
FileIoUtils.writeToFile(gson.toJson(bean), "carvehicle.txt")
}
}
override fun onClose(code: Int, reason: String?, remote: Boolean) {
override fun onVehicleStats(res: Response.SocketResponse) {
viewModelScope.launch {
val bean =
parseSocketRepo.genDataBean(res.data, VehicleStats::class.java)
println("---联网车辆状态数据 = ${bean}")
vehicleStat.value = bean
FileIoUtils.writeToFile(gson.toJson(bean), "vehicleS.txt")
}
}
override fun onError(ex: Exception?) {
override fun onTarget(res: Response.SocketResponse) {
viewModelScope.launch {
var bean = parseSocketRepo.genDataBean(res.data, PerTarget::class.java)
println("---感知目标物数据 = ${bean}")
targetPre.value = bean
FileIoUtils.writeToFile(gson.toJson(bean), "target.txt")
}
}
override fun onStartV2x(res: Response.SocketResponse) {
println("--------onStartV2x")
}
override fun onEndV2x(res: Response.SocketResponse) {
println("--------onEndV2x")
}
override fun onPoint(res: Response.SocketResponse) {
println("--------onPoint")
}
}
/*** 2.2. 联网车辆位姿数据topic**/
fun subVehicle() {
var reqStr = getSendData("/topic/vehicle")
/*** 联网车辆位姿数据**/
fun subVehicle(): LiveData<CarVehicle> {
val reqStr = getSendData("/topic/vehicle")
client?.send(reqStr)
return carVehicle
}
/** 联网车辆状态数据
*
* {"vehicleStats":{"total":0,"avp":0},"vehicleStatusList":[],"wsTime":1750138623719}
* */
fun subVehicleStatus(): LiveData<VehicleStats> {
val reqStr = getSendData("/topic/vehicleStatus")
client?.send(reqStr)
return vehicleStat
}
/**感知目标物数据
* {"objectData":[{"altitude":0.0,"deviceCode":"ALL","id":"rsm","latitude":0.0,"longitude":0.0,"participant":[],"reportTime":1750138879684}],"wsTime":1750138834204}
* **/
fun subTarget() {
val reqStr = getSendData("/topic/dataMerge")
client?.send(reqStr)
}
/**V2X预警开始
*
* **/
fun subStartV2x() {
val reqStr = getSendData("/topic/v2xStart")
client?.send(reqStr)
}
/*** V2X预警结束topic**/
fun subEndV2x() {
var reqStr = getSendData("/topic/v2xEnd")
client?.send(reqStr)
}
/*** 更新停车位**/
fun subPoints() {
val reqStr = getSendData("/topic/points")
client?.send(reqStr)
}
fun getSendData(key: String): String {
var data = WebSetBean.dic.get(key)
var data = WebSetBean.subDic.get(key)
var req = ReqBean()
req.data = data!!
var str = gson.toJson(req)
......@@ -93,18 +202,18 @@ class MainVm @Inject constructor(
}
fun getSpaceData() {
viewModelScope.launch {
var result = spaceNoRepo.getSpaceData()
when (result) {
is MyResult.Success<SpaceNoBean> -> {
var a = 0
}
else -> {
var b = 0
}
}
}
// viewModelScope.launch {
// var result = spaceNoRepo.getSpaceData()
// when (result) {
// is MyResult.Success<SpaceNoBean> -> {
// var a = 0
// }
//
// else -> {
// var b = 0
// }
// }
// }
}
......
......@@ -4,7 +4,7 @@ package com.sd.cavphmi.websockets
import org.java_websocket.client.WebSocketClient
import org.java_websocket.drafts.Draft
import org.java_websocket.handshake.ServerHandshake
import protocol.Response.SocketResponse
import protocol.Response
import java.net.URI
import java.nio.ByteBuffer
......@@ -29,9 +29,9 @@ class MyWebSocketClient : WebSocketClient {
}
override fun onMessage(message: String?) {
System.out.println(TAG + "received message: " + message);
// System.out.println(TAG + "received message: " + message);
onSocketCb?.onMessage(message)
// onSocketCb?.onMessage(message)
//处理各种推送消息
// let data = {};
// let result = await decodeResponseProtoBuf(msg);
......@@ -50,15 +50,33 @@ class MyWebSocketClient : WebSocketClient {
}
override fun onMessage(bytes: ByteBuffer?) {
System.out.println(TAG + " received ByteBuffer")
var socketResponse=SocketResponse.parseFrom(bytes)
// socketResponse.
onSocketCb?.onMessage(bytes)
// System.out.println(TAG + " received ByteBuffer")
val socketResponse = Response.SocketResponse.parseFrom(bytes)
when (socketResponse.msgType) {
5231 -> {//联网车辆位姿数据
onDataCb?.onVehicle(socketResponse)
}
5232 -> {//感知目标物数据
onDataCb?.onTarget(socketResponse)
}
5234 -> {//V2X预警开始
onDataCb?.onStartV2x(socketResponse)
}
5235 -> {//V2X预警结束
onDataCb?.onEndV2x(socketResponse)
}
5236 -> {//联网车辆状态数据
onDataCb?.onVehicleStats(socketResponse)
}
1 -> {//更新停车场
onDataCb?.onPoint(socketResponse)
}
}
}
override fun onClose(code: Int, reason: String?, remote: Boolean) {
System.out.println(TAG + " closed with exit code " + code + " additional info: " + reason);
onSocketCb?.onClose(code,reason,remote)
onSocketCb?.onClose(code, reason, remote)
}
override fun onError(ex: Exception?) {
......@@ -70,11 +88,23 @@ class MyWebSocketClient : WebSocketClient {
interface OnSocketCb {
fun onOpen(handshakedata: ServerHandshake?)
fun onMessage(message: String?)
fun onMessage(bytes: ByteBuffer?)
// fun onMessage(message: String?)
// fun onMessage(socketResponse: Response.SocketResponse)
fun onClose(code: Int, reason: String?, remote: Boolean)
fun onError(ex: Exception?)
}
var onDataCb: OnDataCb? = null
interface OnDataCb {
fun onVehicle(res: Response.SocketResponse)
fun onVehicleStats(res: Response.SocketResponse)
fun onTarget(res: Response.SocketResponse)
fun onStartV2x(res: Response.SocketResponse)
fun onEndV2x(res: Response.SocketResponse)
fun onPoint(res: Response.SocketResponse)
}
}
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="vm"
type="com.sd.cavphmi.viewmodels.MainVm" />
</data>
<RelativeLayout xmlns:tools="http://schemas.android.com/tools"
<RelativeLayout
android:id="@+id/main"
android:layout_width="match_parent"
android:layout_height="match_parent"
......@@ -40,10 +40,12 @@
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="2dp"
android:text="--"
android:textColor="@color/text_black" />
android:layout_height="match_parent"
android:layout_marginLeft="3dp"
android:gravity="center_vertical"
android:textColor="@color/text_black"
app:showHeading="@{vm.heading}"
tools:text="23423" />
</LinearLayout>
......@@ -74,20 +76,21 @@
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="right | center_vertical"
android:layout_weight="1">
android:layout_weight="1"
android:gravity="right | center_vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/drive_mode"
android:layout_marginRight="3dp"/>
android:layout_marginRight="3dp"
android:src="@drawable/drive_mode" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="自动驾驶"
android:textColor="@color/text_black" />
android:text="@{vm.driveMode}"
android:textColor="@color/text_black"
tools:text="自动驾驶" />
</LinearLayout>
......@@ -107,12 +110,50 @@
</LinearLayout>
<ImageView
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/ll_head"
android:src="#907867" />
android:orientation="vertical"
android:src="#907867">
<Button
android:id="@+id/bt_vehicle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="车辆位姿数据" />
<Button
android:id="@+id/bt_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="联网车辆状态数据" />
<Button
android:id="@+id/bt_target"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="感知目标物数据" />
<Button
android:id="@+id/bt_v2x"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="V2X预警开始" />
<Button
android:id="@+id/bt_v2xend"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="V2X预警结束" />
<Button
android:id="@+id/bt_chewei"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="更新停车位" />
</LinearLayout>
<RelativeLayout
......@@ -132,19 +173,20 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_marginTop="3dp"
android:text="9.19Am"
android:textColor="@color/text_black" />
android:layout_marginTop="2dp"
android:textColor="@color/text_black"
tools:text="9:19" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/tv_time"
android:layout_below="@id/tv_time"
android:layout_centerHorizontal="true"
android:layout_marginTop="5dp"
android:text="0 km/h"
android:layout_marginTop="10dp"
android:textColor="@color/text_black"
android:textSize="20sp" />
android:textSize="12sp"
app:showSpeed="@{vm.speed}"
tools:text="0 km/h" />
</RelativeLayout>
......
......@@ -14,4 +14,15 @@ class ExampleUnitTest {
fun addition_isCorrect() {
assertEquals(4, 2 + 2)
}
@Test
fun testwhen() {
var driveMode=2
var str = when (driveMode) {
0 -> "自动驾驶"
1 -> "人工驾驶"
2 -> "远程驾驶"
else -> "—— ——"
}
println("str = ${str}")
}
}
\ No newline at end of file
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