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

first

parent 0b4d4d4e
Pipeline #3217 failed with stages
in 0 seconds
*.iml
.gradle
.idea
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
/mycomutils
# C-AVP2.0
https://docs.qq.com/sheet/DVWdOYXZXdVVrQWts?tab=xxmysv socket文档
https://s.apifox.cn/e355c9e1-cdd1-49ab-acb2-54cfc66b1598/320994000e0 大屏文档
获取AVP状态信息 /v1/avp/overview/listAvpStatus 这个曲华烨要做成socket 的推送形式,通过这个接口获取全局路径和局部路径,车辆业务状态。
通过里面的vehicleId,调车辆详情(/v1/avp/overview/getVehicleInfo)获取车内视频流,
websocket 那几个连接,都需要传vehicleId,你也可以不传,不传就是获取所有的
【腾讯文档】AVP-HMI接口需求清单
https://docs.qq.com/sheet/DVmNmZ3VhVEFxRkpV?tab=BB08J2
#AVP状态接口返回 - 见avp_statu.txt
智能泊车2.0
\ No newline at end of file
/build
\ No newline at end of file
plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android)
id("dagger.hilt.android.plugin")
id("kotlin-kapt")
// id("com.google.protobuf")
// alias(libs.plugins.proto.google)
}
android {
namespace = "com.sd.cavphmi"
compileSdk = 35
defaultConfig {
applicationId = "com.sd.cavphmi"
minSdk = 31
targetSdk = 35
versionCode = 1
versionName = "1.0"
ndk {
// abiFilters.addAll(listOf("x86_64", "arm64-v8a"))
abiFilters.addAll(listOf("arm64-v8a","x86_64"))
}
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "11"
}
buildFeatures {
dataBinding = true
viewBinding = true
}
lint {
abortOnError = false
checkReleaseBuilds = false
}
packaging {
jniLibs {
excludes.add("META-INF/*******")
excludes.add("plugin.xml")
}
resources {
excludes.addAll(
listOf(
"META-INF/*******",
"META-INF/INDEX.LIST",
"META-INF/io.netty.versions.properties"
)
)
}
}
applicationVariants.all {
outputs.all {
if (this is com.android.build.gradle.internal.api.ApkVariantOutputImpl) {
val config = project.android.defaultConfig
val versionName = config.versionName
// val formatter = DateTimeFormatter.ofPattern("yyyy_MM_dd_HHmm")
// val createTime = LocalDateTime.now().format(formatter)
outputFileName = "avp_${versionName}.apk"
}
}
}
}
dependencies {
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar", "*.aar"))))
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.appcompat)
implementation(libs.material)
implementation(libs.androidx.activity)
implementation(libs.androidx.constraintlayout)
// implementation(libs.androidx.navigation.fragment.ktx)
// implementation(libs.androidx.navigation.ui.ktx)
androidTestImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.10.2")
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)
implementation("com.tencent:mmkv:2.2.4")
implementation("io.github.cymchad:BaseRecyclerViewAdapterHelper4:4.1.7")
implementation("com.jakewharton.rxbinding4:rxbinding:4.0.0")
//屏幕适配
implementation("com.github.JessYanCoding:AndroidAutoSize:v1.2.1")
//用于坐标重投影的Proj.4库的Java端口
// implementation("org.locationtech.proj4j:proj4j:1.4.1")
// // https://mvnrepository.com/artifact/org.locationtech.proj4j/proj4j-epsg
// implementation("org.locationtech.proj4j:proj4j-epsg:1.3.0")// 包含EPSG定义
//sm4 加密
implementation("org.bouncycastle:bcprov-jdk15on:1.70")
//公共工具类库
implementation(project(":mycomutils"))
implementation("com.google.protobuf:protobuf-java:4.31.1")
// implementation("com.google.protobuf:protobuf-javalite:4.31.1")CRSFactory
// implementation("com.google.protobuf:protoc:3.0.0")
// implementation("com.google.protobuf:protobuf-kotlin-lite:4.31.1")
//播放器
implementation("androidx.media3:media3-exoplayer:1.8.0")
implementation("androidx.media3:media3-exoplayer-dash:1.8.0")
implementation("androidx.media3:media3-ui:1.8.0")
implementation("androidx.media3:media3-ui-compose:1.8.0")
//java web socket
implementation("org.java-websocket:Java-WebSocket:1.6.0")
//proto
// Hilt dependencies
val hilt_version = "2.56.1"
implementation("com.google.dagger:hilt-android:$hilt_version")
kapt("com.google.dagger:hilt-android-compiler:${hilt_version}")
// ViewModel
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2")
//fragment-ktx
implementation("androidx.fragment:fragment-ktx:1.8.0")
// 权限请求框架
implementation("com.guolindev.permissionx:permissionx:1.8.1")
//加密库
// implementation("androidx.security:security-crypto:1.0.0")
// implementation("com.gyf.immersionbar:immersionbar:2.3.3-beta15")
//网络
// implementation("io.reactivex.rxjava3:rxjava:3.0.8")
// implementation("io.reactivex.rxjava3:rxandroid:3.0.0")
implementation("com.squareup.retrofit2:retrofit:2.9.0"){
exclude("com.squareup.okhttp3", "okhttp")
}
// OkHttp 核心库(必须与 SSE 版本一致)
// implementation("com.squareup.okhttp3:okhttp:5.3.0")
// OkHttp-SSE 库(5.3.0 版本)
implementation("com.squareup.okhttp3:okhttp-sse:4.9.0")
implementation("com.squareup.retrofit2:converter-gson:2.9.0")
// implementation("com.squareup.retrofit2:adapter-rxjava3:2.9.0")
implementation("com.squareup.retrofit2:converter-scalars:2.9.0")
implementation("com.squareup.okhttp3:logging-interceptor:4.9.0")
}
\ No newline at end of file
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
-keep class org.bouncycastle.** { *; }
-dontwarn org.bouncycastle.**
package com.sd.cavphmi
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
import com.google.gson.Gson
import com.minedata.minenavi.mapdal.LatLng
import com.minedata.minenavi.util.Tools
import com.sd.cavphmi.bean.AvpStatuBean
import com.sd.cavphmi.bean.CarVehicle
import com.sd.cavphmi.bean.mock.MRoutes
import com.sd.cavphmi.utils.FileIoUtils
import com.sd.cavphmi.utils.SM4CryptoHelper
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
import kotlinx.coroutines.test.TestScope
import kotlinx.coroutines.test.UnconfinedTestDispatcher
import org.junit.Assert.assertEquals
import org.junit.Test
import org.junit.runner.RunWith
/**
* Instrumented test, which will execute on an Android device.
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("com.sd.cavphmi", appContext.packageName)
}
@Test
fun loginCpy() {
var pwd = "vUO2dStZDhbd*88FfT84"
var key = "Cusc@itmp-sm4key".toByteArray()
var pp = SM4CryptoHelper.encryptECB(key, pwd.toByteArray())
println("------------------pp = ${pp}")
}
@Test
fun calculateTouYing2() {
// 02runTest
TestScope(UnconfinedTestDispatcher()).launch {
var gson = Gson()
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
//获取全局路径
var avpDatas = mutableListOf<String>()
FileIoUtils.getAssetMock(appContext.applicationContext, "mock/shiche/avp_status_call.txt", avpDatas)
var str = avpDatas.first()
val statu = gson.fromJson<AvpStatuBean>(str, AvpStatuBean::class.java)
//转换小弟提路径点
var sLatLngs = statu.drivenDecision.trajectory.points.map {
Tools.latLngToPoint(LatLng(it.latitude, it.longitude))
}.toTypedArray()
println("-------------sLatLngs = ${sLatLngs}")
//点传线段
val testPoint = mutableListOf<List<Double>>()
//车辆位姿
var carDatas = mutableListOf<String>()
FileIoUtils.getAssetMock(appContext, "mock/shiche/CarVehicle_Call.txt", carDatas)
carDatas.forEach { str ->
val cCar = gson.fromJson<CarVehicle>(str, CarVehicle::class.java)
if (cCar.vehiclePos != null) {
delay(300)
}
}
// val testPoint = doubleArrayOf(116.38810256578773, 39.92848759523565) // 北海公园
// val testPoint = mutableListOf<DoubleArray>()
}
}
}
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<!-- 打开关闭sdcard的权限 -->
<uses-permission
android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"
tools:ignore="ProtectedPermissions" />
<uses-permission
android:name="android.permission.INTERACT_ACROSS_USERS_FULL"
tools:ignore="ProtectedPermissions" /> <!-- 允许程序打开网络套接字 -->
<uses-permission android:name="android.permission.INTERNET" /> <!-- 允许程序访问网络状态 -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <!-- 允许用户改变WiFi连接状态 -->
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> <!-- 程序访问粗略位置 -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <!-- 允许用户访问精确位置 -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <!-- Android Q 允许后台运行定位 -->
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" /> <!-- 允许程序读取手机状态 -->
<uses-permission android:name="android.permission.READ_PHONE_STATE" /> <!-- 打电话的权限 -->
<!-- <uses-permission android:name="android.permission.CALL_PHONE" /> -->
<!-- 从SDCard读出数据权限 -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <!-- 允许程序写入外部存储设备 -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!-- 允许程序读取所有者数据 -->
<uses-permission android:name="android.permission.READ_OWNER_DATA" /> <!-- 访问WiFi状态,需要WiFi信息用于网络定位 -->
<uses-permission
android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
tools:ignore="ScopedStorage" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <!-- 访问网络的变化, 需要某些信息用于网络定位 -->
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> <!-- 8.0 安装未知程序权限 -->
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<application
android:name=".MyAppcation"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:supportsRtl="true"
android:theme="@style/Theme.SuZhouAvp"
tools:targetApi="31">
<!-- 去UNITY广告-->
<!-- <meta-data-->
<!-- android:name="unity.splash-mode"-->
<!-- android:value="0" />-->
<!-- <meta-data-->
<!-- android:name="unity.splash-enable"-->
<!-- android:value="False" />-->
<uses-library
android:name="org.apache.http.legacy"
android:required="false" />
<meta-data
android:name="com.minedata.minenavi.apikey"
android:value="c6eaf46ec48640f3b222c29730518dfd" /> <!-- android:screenOrientation="userLandscape" -->
<meta-data
android:name="design_width_in_dp"
android:value="960" />
<meta-data
android:name="design_height_in_dp"
android:value="540" />
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<activity
android:name=".ui.LoginActivity"
android:exported="true"
android:screenOrientation="landscape"
android:theme="@style/Theme.SuZhouAvp">
<!-- <intent-filter>-->
<!-- <action android:name="android.intent.action.MAIN" />-->
<!-- <category android:name="android.intent.category.LAUNCHER" />-->
<!-- </intent-filter>-->
</activity>
<activity
android:name=".ui.MainActivity"
android:exported="false"
android:hardwareAccelerated="false"
android:launchMode="singleTask"
android:resizeableActivity="false"
android:screenOrientation="landscape">
</activity>
<activity
android:name=".ui.BootActivity"
android:exported="true"
android:screenOrientation="landscape"
android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
\ No newline at end of file
/*** 感知延时**/
fun subPreDelay(): LiveData<PreDelay> {
try {
if (preDelayWSClient == null) {
preDelayWSClient = PreDelayWSClient(URI(MyContants.WS_PRE_DELAY))
preDelayWSClient?.connect()
preDelayWSClient?.onDataCb = object : PreDelayWSClient.OnDataCb {
override fun onMsg(str: String) {
viewModelScope.launch {
FileIoUtils.writeToFile(str, "pre_delay.txt")
var bean = gson.fromJson(str, PreDelay::class.java)
preDelay.postValue(bean)
}
}
}
}
} catch (e: Exception) {
e.printStackTrace()
}
return preDelay
}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
{
"rs": [
[116.5024625,39.8090317],[116.50246452571352,39.809032676237166],[116.50246655142706,39.80903365247434],[116.5024685771406,39.80903462871151],[116.50247060285415,39.80903560494868],[116.50247262856767,39.80903658118585],[116.50247465428123,39.809037557423025],[116.50247667999476,39.80903853366019],[116.5024787057083,39.80903950989737],[116.50248073142184,39.809040486134535],[116.50248275713537,39.80904146237171],[116.50248478284891,39.80904243860888],[116.50248554937339,39.80904280015562],[116.50248625256704,39.8090431183115],[116.50248696285315,39.809043426953984],[116.50248768001542,39.80904372598901],[116.50248840383534,39.80904401532554],[116.50248913409246,39.80904429487541],[116.50248987056432,39.80904456455347],[116.50249061302658,39.809044824277564],[116.50249136125309,39.80904507396862],[116.50249211501594,39.809045313550534],[116.5024928740855,39.809045542950344],[116.50249363823058,39.809045762098165],[116.50249440721838,39.80904597092725],[116.50249518081468,39.809046169374014],[116.50249595878384,39.80904635737795],[116.50249674088887,39.80904653488182],[116.50249752689155,39.80904670183156],[116.50249831655243,39.809046858176316],[116.50249910963099,39.80904700386845],[116.50249990588564,39.8090471388636],[116.50250070507383,39.80904726312063],[116.50250150695214,39.8090473766017],[116.50250231127629,39.80904747927224],[116.50250311780128,39.809047571100976],[116.50250392628145,39.80904765205992],[116.5025047364705,39.80904772212444],[116.50250554812165,39.80904778127317],[116.50250636098767,39.8090478294881],[116.50250717482095,39.809047866754554],[116.50250798937358,39.80904789306116],[116.50250880439745,39.80904790839994],[116.50250961964429,39.809047912766175],[116.50251043486577,39.80904790615856],[116.50251124981355,39.809047888579094],[116.50251206423943,39.80904786003317],[116.50251287789527,39.80904782052943],[116.50251369053326,39.80904777007994],[116.50251450190586,39.80904770870008],[116.5025153117659,39.80904763640851],[116.50251611986671,39.80904755322727],[116.50251692596213,39.8090474591817],[116.5025177298066,39.809047354300446],[116.50251853115527,39.80904723861545],[116.50251932976404,39.80904711216196],[116.50252012538965,39.80904697497849],[116.50252091778974,39.80904682710682],[116.50252170672294,39.80904666859201],[116.50252249194894,39.80904649948232],[116.50252327322852,39.80904631982929],[116.50252405032373,39.80904612968762],[116.50252482299786,39.809045929115264],[116.50252559101551,39.809045718173266],[116.50252635414277,39.80904549692593],[116.50252711214716,39.80904526544063],[116.50252786479781,39.80904502378788],[116.50252861186543,39.80904477204128],[116.50252935312245,39.80904451027753],[116.50253008834312,39.80904423857637],[116.50253081730344,39.80904395702054],[116.50253153978137,39.80904366569581],[116.50253225555686,39.80904336469095],[116.50253296441184,39.80904305409761],[116.50253366613042,39.80904273401042],[116.50253436049884,39.80904240452689],[116.50253504730557,39.80904206574736],[116.50253572634142,39.809041717775045],[116.50253639739954,39.80904136071593],[116.50253706027554,39.80904099467878],[116.50253771476747,39.8090406197751],[116.50253836067598,39.809040236119095],[116.50253899780434,39.80903984382761],[116.50253962595843,39.80903944302016],[116.50254024494696,39.809039033818834],[116.50254085458133,39.809038616348246],[116.50254145467586,39.80903819073561],[116.50254204504778,39.80903775711055],[116.50254262551721,39.80903731560515],[116.50254319590738,39.80903686635389],[116.5025437560445,39.80903640949364],[116.502544305758,39.809035945163544],[116.50254484488038,39.80903547350505],[116.50254537324744,39.809034994661815],[116.50254589069823,39.80903450877972],[116.50254639707514,39.80903401600677],[116.5025468922239,39.80903351649306],[116.50254873251244,39.80903121870854],[116.50255048525985,39.80902903906369],[116.50255215519805,39.809026971172585],[116.50255374705901,39.80902500864927],[116.50255526557463,39.809023145107844],[116.50255671547697,39.80902137416238],[116.50255810149788,39.80901968942692],[116.50255942836942,39.80901808451557],[116.5025607008234,39.80901655304239],[116.50256192359191,39.80901508862146],[116.50256310140682,39.80901368486684],[116.50256423900012,39.8090123353926],[116.50256534110378,39.80901103381284],[116.50256641244967,39.80900977374158],[116.50256745776986,39.809008548792946],[116.50256848179617,39.80900735258098],[116.50256948926067,39.80900617871975],[116.50257048489526,39.80900502082334],[116.50257147343187,39.809003872505826],[116.50257245960252,39.80900272738129],[116.50257344813913,39.809001579063775],[116.50257444377361,39.80900042116737],[116.50257545123799,39.80899924730615],[116.50257647526416,39.80899805109418],[116.50257752058411,39.80899682614553],[116.50257859192976,39.80899556607427],[116.5025796940331,39.808994264494494],[116.50258083162609,39.808992915020255],[116.50258200944063,39.80899151126563],[116.50258323220868,39.808990046844684],[116.50258450466227,39.808988515371496],[116.50258583153325,39.80898691046014],[116.50258721755367,39.80898522572469],[116.5025886674554,39.80898345477921],[116.50259018597043,39.808981591237774],[116.5025917778307,39.808979628714454],[116.50259344776819,39.80897756082334],[116.50259520051483,39.80897538117847],[116.50259704080258,39.80897308339394],
[
116.50260652829927,
39.80896138259575
],
[
116.50261595656403,
39.80894963426086
],
[
116.50262538482876,
39.80893788592398
],
[
116.50263481309352,
39.80892613758509
],
[
116.50264424135828,
39.80891438924419
],
[
116.50265366962303,
39.80890264090128
],
[
116.50266309788779,
39.80889089255635
],
[
116.50267252615251,
39.808879144209435
],
[
116.50268195441728,
39.808867395860496
],
[
116.50269138268203,
39.80885564750955
],
[
116.50270081094675,
39.8088438991566
],
[
116.50271023921152,
39.80883215080165
],
[
116.50271966747628,
39.80882040244469
],
[
116.50272909574102,
39.8088086540857
],
[
116.50273852400579,
39.80879690572473
],
[
116.50274795227055,
39.80878515736174
],
[
116.50275738053527,
39.808773408996736
],
[
116.50276680880005,
39.80876166062974
],
[
116.5027762370648,
39.80874991226073
],
[
116.50278566532953,
39.80873816388972
],
[
116.50279420230066,
39.80872752614001
],
[
116.50280353151834,
39.80871573236971
],
[
116.50281048428627,
39.80870303338525
],
[
116.50281405862891,
39.80868953352494
],
[
116.50281404037212,
39.80867575730624
],
[
116.50281046861977,
39.80866225701582
],
[
116.50280343493115,
39.808649585669684
],
[
116.50279324712442,
39.80863824913313
],
[
116.50278027954208,
39.80862873543999
],
[
116.50276508406697,
39.80862142721356
],
[
116.50274825941413,
39.80861675684903
],
[
116.5027303799696,
39.808616110118535
],
[
116.50271293867053,
39.808619088363244
],
[
116.50269720864796,
39.80862564603595
],
[
116.50268447677053,
39.80863527937748
],
[
116.50267341280619,
39.80864615002302
],
[
116.50266212329731,
39.80865688638265
],
[
116.5026508337884,
39.80866762274061
],
[
116.50263954427948,
39.80867835909688
],
[
116.50262525253801,
39.80869195058276
],
[
116.50262524257603,
39.808691950612655
],
[
116.50261580612782,
39.80870369511379
],
[
116.50260636967965,
39.80871543961292
],
[
116.50259693323143,
39.80872718411004
],
[
116.50258749678324,
39.80873892860516
],
[
116.50257806033504,
39.808750673098274
],
[
116.50256862388684,
39.80876241758937
],
[
116.50255918743866,
39.808774162078464
],
[
116.50254974864124,
39.808785905451415
],
[
116.50254030866101,
39.8087976482614
],
[
116.50253086868078,
39.80880939106937
],
[
116.50252142870058,
39.80882113387535
],
[
116.50251198872037,
39.8088328766793
],
[
116.50250254874015,
39.80884461948126
],
[
116.50249310875992,
39.808856362281205
],
[
116.50248366877972,
39.80886810507916
],
[
116.5024742287995,
39.8088798478751
],
[
116.5024647888193,
39.808891590669035
],
[
116.50245534883908,
39.80890333346096
],
[
116.50244590885885,
39.80891507625088
],
[
116.50243648704945,
39.80892682764632
],
[
116.50242706678878,
39.80893857977338
],
[
116.50241764652812,
39.80895033189842
],
[
116.50240822626745,
39.808962084021466
],
[
116.50239880600678,
39.808973836142506
],
[
116.50238938574607,
39.80898558826153
],
[
116.5023799654854,
39.808997340378546
],
[
116.50237054522474,
39.809009092493554
],
[
116.50236112496407,
39.80902084460654
],
[
116.5023518081128,
39.80903246771061
],
[
116.50234241407298,
39.80904423219872
],
[
116.50233302003318,
39.80905599668481
],
[
116.50232362599334,
39.8090677611689
],
[
116.50231410317872,
39.80907946408927
],
[
116.50230451214804,
39.80909113439654
],
[
116.50229492111734,
39.80910280470181
],
[
116.50228571333837,
39.809114655344956
],
[
116.50227653686962,
39.80912652071914
],
[
116.50226736040084,
39.80913838609128
],
[
116.5022581839321,
39.80915025146137
],
[
116.50224999247808,
39.809160843184586
],
[
116.50224042543937,
39.80917252509297
],
[
116.50223085840065,
39.80918420699937
],
[
116.50222129136195,
39.80919588890379
],
[
116.50221172432323,
39.809207570806215
],
[
116.50220215728451,
39.809219252706654
],
[
116.50219259024581,
39.80923093460512
],
[
116.5021830232071,
39.809242616501585
],
[
116.50217345616836,
39.80925429839608
],
[
116.50216388912965,
39.80926598028858
],
[
116.50215432209092,
39.80927766217909
],
[
116.50214475505221,
39.80928934406762
],
[
116.5021351880135,
39.80930102595418
],
[
116.50212562097478,
39.809312707838735
],
[
116.5021161682309,
39.80932444445018
],
[
116.50210672752434,
39.80933618682361
],
[
116.50209728681781,
39.80934792919502
],
[
116.50208784611127,
39.80935967156444
],
[
116.50207840540475,
39.809371413931835
],
[
116.50206896469822,
39.80938315629724
],
[
116.50205952399168,
39.809394898660635
],
[
116.50205008328514,
39.809406641022015
],
[
116.5020406425786,
39.80941838338139
],
[
116.50203120187207,
39.809430125738764
],
[
116.50202176116555,
39.80944186809414
],
[
116.50201232045903,
39.809453610447505
],
[
116.50200287975248,
39.80946535279886
],
[
116.50199343904592,
39.80947709514822
],
[
116.50198399833941,
39.809488837495564
],
[
116.50197455763286,
39.80950057984091
],
[
116.50196511692633,
39.80951232218425
],
[
116.50195568818478,
39.80952407018145
],
[
116.50194629734833,
39.80953583609448
],
[
116.50193690651183,
39.80954760200551
],
[
116.50192751567536,
39.80955936791453
],
[
116.50191812483887,
39.80957113382152
],
[
116.5019087340024,
39.8095828997265
],
[
116.50189934316592,
39.80959466562948
],
[
116.50188995232944,
39.80960643153043
],
[
116.50188056149298,
39.80961819742937
],
[
116.50187117065649,
39.80962996332631
],
[
116.50186177982,
39.80964172922121
],
[
116.50185238898351,
39.80965349511412
],
[
116.50184299814707,
39.80966526100501
],
[
116.50183360731057,
39.80967702689388
],
[
116.50182421647412,
39.80968879278074
],
[
116.50181482563762,
39.809700558665575
],
[
116.50180543480116,
39.809712324548414
],
[
116.50179604396466,
39.809724090429235
],
[
116.5017866531282,
39.80973585630804
],
[
116.50177726229172,
39.80974762218483
],
[
116.50176603303983,
39.809761691428776
],
[
116.5017559315272,
39.80977310463863
],
[
116.50174606013915,
39.80978461575066
],
[
116.501745399369,
39.80979802876061
],
[
116.50176111803627,
39.80981199004545
],
[
116.5017794095362,
39.80982207596424
],
[
116.50179458916823,
39.8098294587058
],
[
116.50180976712517,
39.8098368434775
],
[
116.50182494052174,
39.80984423377744
],
[
116.50183986641409,
39.80985190936817
],
[
116.50186093375147,
39.80986323461995
],
[
116.50187602871003,
39.80987071910237
],
[
116.50189112366859,
39.80987820358399
],
[
116.50190621862716,
39.80988568806478
],
[
116.50192135787326,
39.80989311925764
],
[
116.50193654901727,
39.80990048800575
],
[
116.5019517411002,
39.80990785560883
],
[
116.5019669480251,
39.80991520512269
],
[
116.5019889433169,
39.80992583545604
],
[
116.50200411254258,
39.80993323079723
],
[
116.50201928176824,
39.80994062613762
],
[
116.5020344549998,
39.80994801662329
],
[
116.50204936866068,
39.809955271625505
]
]
}
\ No newline at end of file
{"rs":[[116.50238005214746,39.81014469509955],[116.50236486876796,39.81013731694055],[116.50234968537274,39.81012993879976],[116.50233450197756,39.8101225606582],[116.50231931858238,39.81011518251584],[116.5023041333868,39.81010780655952],[116.50229565547512,39.81010368888862],[116.50228036234131,39.810096445719445],[116.50226506920752,39.8100892025495],[116.50224985746125,39.81008185923798],[116.50223467091115,39.81007448492373],[116.5022194843611,39.81006711060869],[116.502204297811,39.81005973629286],[116.50218911126096,39.81005236197624],[116.50217392471086,39.81004498765881],[116.50215873816082,39.810037613340604],[116.50214354204267,39.81003025071994],[116.50212940967664,39.81002347155654],[116.50211414052076,39.810016198589445],[116.50209895321649,39.81000882529198],[116.50208377514453,39.8100014406772],[116.5020685970726,39.809994056061605],[116.50205341900066,39.80998667144523],[116.50203824092873,39.809979286828046],[116.50202306285678,39.80997190221008],[116.50200788607032,39.80996451603342],[116.50199271461229,39.809957123398306],[116.50197175150723,39.80994690865124],[116.5019565677659,39.809939530910334],[116.50194138402462,39.809932153168646],[116.5019261959587,39.80992478068344],[116.50191100349002,39.809917413549634],[116.50189579233196,39.809910069682026],[116.50188040671078,39.80990294300845],[116.50186502108963,39.80989581633414],[116.50184281562053,39.80988553068078],[116.50182802471463,39.809877696172016],[116.50181322516318,39.80986987170683],[116.50179804843465,39.80986248544798],[116.50178280602617,39.80985518091484],[116.50176075352947,39.80984499368132],[116.50174177475655,39.809835769889],[116.5017274954714,39.80982739397197],[116.50171740536683,39.80981635635335],[116.50171295482671,39.809803030251885],[116.50171301661533,39.80978929564729],[116.50171746496443,39.80977596765635],[116.5017259444861,39.8097638114287],[116.5017379185738,39.80974819470519],[116.50174729851142,39.80973642369948],[116.50175667844906,39.80972465269176],[116.50176605838669,39.80971288168202],[116.50177543832429,39.809701110670275],[116.50178481826192,39.8096893396565],[116.50179419819955,39.80967756864072],[116.50180357813717,39.809665797622905],[116.5018129580748,39.8096540266031],[116.50182233801245,39.80964225558127],[116.50183171795007,39.80963048455742],[116.50184109788769,39.809618713531556],[116.5018504778253,39.80960694250368],[116.50185985776292,39.80959517147379],[116.50186923770057,39.80958340044187],[116.5018786176382,39.80957162940795],[116.50188799757582,39.80955985837201],[116.50189737751344,39.80954808733406],[116.50190675745107,39.80953631629408],[116.50191613738868,39.8095245452521],[116.5019255173263,39.80951277420809],[116.50193493157849,39.80950101936984],[116.50194437236506,39.80948927706254],[116.50195381315163,39.80947753475324],[116.5019632539382,39.80946579244194],[116.50197269472476,39.809454050128615],[116.50198213551133,39.809442307813306],[116.5019915762979,39.80943056549599],[116.50200101708447,39.80941882317666],[116.50201045787104,39.809407080855316],[116.50201989865761,39.809395338531964],[116.50202933944418,39.80938359620662],[116.50203878023075,39.80937185387928],[116.50204822101732,39.809360111549914],[116.50205766180389,39.809348369218554],[116.50206710259046,39.809336626885184],[116.50207654337703,39.80932488454981],[116.50208598416357,39.809313142212424],[116.50209542495014,39.80930139987304],[116.50210499804051,39.809289720982065],[116.50211458612095,39.80927804927806],[116.50212417420141,39.80926637757208],[116.50213376228183,39.80925470586412],[116.50214335036227,39.809243034154164],[116.50215293844273,39.80923136244224],[116.50216252652316,39.809219690728334],[116.5021721146036,39.809208019012445],[116.50218170268406,39.809196347294574],[116.5021912907645,39.80918467557471],[116.50220087884492,39.80917300385288],[116.50221046692533,39.80916133212906],[116.50222194778321,39.80914735629438],[116.50223079042868,39.80913537219419],[116.50224437375732,39.80912656561062],[116.5022616599528,39.80912330256496],[116.50227897733187,39.809126399012214],[116.50229461795695,39.80913317723447],[116.50231015045868,39.80914011342922],[116.5023256829604,39.80914704962326],[116.50234121546217,39.80915398581661],[116.50235709967029,39.80916040951712],[116.50237406319151,39.80916484398448],[116.50239187097037,39.80916636876694],[116.50240970211905,39.80916504764615],[116.50242686120255,39.80916110814383],[116.50244272398614,39.809154696622954],[116.50245637374258,39.80914577271494],[116.50246747881728,39.809134975672535],[116.50247697374292,39.80912326014347],[116.50248632266518,39.80911147447951],[116.5024956715874,39.80909968881352],[116.50250735122155,39.80908496494592],[116.50251677946527,39.80907321662218],[116.50252620770894,39.80906146829645],[116.50253563595264,39.8090497199687],[116.50254394816011,39.809039362307594]]}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
{"haulingNo":"PARK-202511263","vin":"LU123456789011111","spaceId":"1594179823000223754","space":{"id":1594179823000223754,"createdAt":1693016363,"updatedAt":1764137952156,"name":"B002","code":"1567","state":"OCCUPY","spaceType":"PARK","surface":"[[116.502672641583686,39.808717348607381],[116.502656697557583,39.808737040046204],[116.502719621229957,39.808767724154123],[116.502735514232526,39.808748008315952],[116.502672641583686,39.808717348607381]]","entranceLongitude":116.50274476891985,"entranceLatitude":39.808767558388645,"centerLongitude":120.7066859236955,"centerLatitude":31.324335727750118,"elevation":null,"occupyTime":"2025-11-26T06:19:12.139Z","occupySource":"LOCK","placeId":1,"line":null},"haulingStageState":"TRANSPORT_PROGRESS","businessType":"Park","vehicleContext":{"vin":"LU123456789011111","vehicleBusinessType":null,"online":true,"vehicleBasic":{"id":27,"deviceId":"0102072022380026","vehicleLength":null,"vehicleWidth":null,"maxSpeed":null,"minTurnRadius":null},"vehicleDynamic":{"speed":0.006823937919616057,"accSpeed":9.98458292271517,"longitude":116.502475,"latitude":39.809097,"elevation":23.00799999999981,"heading":148.6669921875,"drivingMode":"MANUAL","gearType":"PARK","power":null,"doorStatus":"1111111","light":null,"wiper":null},"perceptionContext":null},"drivenDecision":{"startPoint":{"id":"8b437b15-eb41-45d5-a1e4-d086dd5e62fd","longitude":116.502475,"latitude":39.809097,"altitude":23.00799999999981,"heading":148.6669921875,"targetSpeed":0.0,"acceleration":0.0,"timestamp":0.0,"curvature":0.0,"curvatureRate":0.0,"area":null,"longitudinalAcce":null,"longitudinalDis":null,"longitudinalSpeed":null,"transverseAcce":null,"transverseDis":null,"transverseSpeed":null,"verticalAcce":null},"endPoint":{"id":"1567","longitude":116.50274476891985,"latitude":39.808767558388645,"altitude":0.0,"heading":0.0,"targetSpeed":0.0,"acceleration":0.0,"timestamp":0.0,"curvature":0.0,"curvatureRate":0.0,"area":null,"longitudinalAcce":null,"longitudinalDis":null,"longitudinalSpeed":null,"transverseAcce":null,"transverseDis":null,"transverseSpeed":null,"verticalAcce":null},"trajectory":{"arrived":false,"startPoint":{"id":null,"longitude":0.0,"latitude":0.0,"altitude":0.0,"heading":0.0,"targetSpeed":0.0,"acceleration":0.0,"timestamp":0.0,"curvature":0.0,"curvatureRate":0.0,"area":null,"longitudinalAcce":null,"longitudinalDis":null,"longitudinalSpeed":null,"transverseAcce":null,"transverseDis":null,"transverseSpeed":null,"verticalAcce":null},"endPoint":{"id":null,"longitude":116.50274476891985,"latitude":39.808767558388645,"altitude":0.0,"heading":0.0,"targetSpeed":0.0,"acceleration":0.0,"timestamp":0.0,"curvature":0.0,"curvatureRate":0.0,"area":null,"longitudinalAcce":null,"longitudinalDis":null,"longitudinalSpeed":null,"transverseAcce":null,"transverseDis":null,"transverseSpeed":null,"verticalAcce":null},"points":[{"id":null,"longitude":116.50248899270137,"latitude":39.80910810251742,"altitude":0.0,"heading":0.0,"targetSpeed":0.0,"acceleration":0.0,"timestamp":0.0,"curvature":0.0,"curvatureRate":0.0,"area":null,"longitudinalAcce":null,"longitudinalDis":null,"longitudinalSpeed":null,"transverseAcce":null,"transverseDis":null,"transverseSpeed":null,"verticalAcce":null},{"id":null,"longitude":116.50250735122155,"latitude":39.80908496494593,"altitude":0.0,"heading":0.0,"targetSpeed":0.0,"acceleration":0.0,"timestamp":0.0,"curvature":0.0,"curvatureRate":0.0,"area":null,"longitudinalAcce":null,"longitudinalDis":null,"longitudinalSpeed":null,"transverseAcce":null,"transverseDis":null,"transverseSpeed":null,"verticalAcce":null},{"id":null,"longitude":116.50275529593338,"latitude":39.808776006506584,"altitude":0.0,"heading":0.0,"targetSpeed":0.0,"acceleration":0.0,"timestamp":0.0,"curvature":0.0,"curvatureRate":0.0,"area":null,"longitudinalAcce":null,"longitudinalDis":null,"longitudinalSpeed":null,"transverseAcce":null,"transverseDis":null,"transverseSpeed":null,"verticalAcce":null}],"pathLine":"1471_0.0000_-1,1457_0.0000_-1,1432_0.0000_-1,1348_0.0000_1,1450_0.0000_-1,1456_0.0000_-1,1487_0.0000_-1,1457_0.0000_1","pathArray":null,"length":56.522754903940324,"time":40},"routing":null,"progress":null},"exceptionCode":null,"exceptionMessage":null}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50262994,"latitude":39.80879038,"elevation":500.0},{"id":"2411","name":"Participants","longitude":116.50295014,"latitude":39.80895027,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815087408}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50263402,"latitude":39.80879237,"elevation":500.0},{"id":"2411","name":"Participants","longitude":116.50295014,"latitude":39.80895027,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815088496}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50263522,"latitude":39.80879297,"elevation":500.0},{"id":"2431","name":"Participants","longitude":116.50276509,"latitude":39.80885719,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815089497}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50263522,"latitude":39.80879297,"elevation":500.0},{"id":"2431","name":"Participants","longitude":116.50276509,"latitude":39.80885719,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815090499}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50263522,"latitude":39.80879297,"elevation":500.0},{"id":"2431","name":"Participants","longitude":116.50276509,"latitude":39.80885719,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815091500}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50263522,"latitude":39.80879297,"elevation":500.0},{"id":"2431","name":"Participants","longitude":116.50276509,"latitude":39.80885719,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815092502}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50263771,"latitude":39.80879416,"elevation":500.0},{"id":"2411","name":"Participants","longitude":116.50295014,"latitude":39.80895027,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815093504}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.5026409,"latitude":39.80879585,"elevation":500.0},{"id":"2411","name":"Participants","longitude":116.50295014,"latitude":39.80895027,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815094505}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50264638,"latitude":39.80879864,"elevation":500.0},{"id":"2411","name":"Participants","longitude":116.50295014,"latitude":39.80895027,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815095507}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50265504,"latitude":39.80880281,"elevation":500.0},{"id":"2411","name":"Participants","longitude":116.50295014,"latitude":39.80895027,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815096508}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50266222,"latitude":39.80880619,"elevation":500.0},{"id":"2431","name":"Participants","longitude":116.50276509,"latitude":39.80885719,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815097510}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50266222,"latitude":39.80880619,"elevation":500.0},{"id":"2431","name":"Participants","longitude":116.50276509,"latitude":39.80885719,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815098511}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50266222,"latitude":39.80880619,"elevation":500.0},{"id":"2431","name":"Participants","longitude":116.50276509,"latitude":39.80885719,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815099513}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50266222,"latitude":39.80880619,"elevation":500.0},{"id":"2431","name":"Participants","longitude":116.50276509,"latitude":39.80885719,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815100514}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50266222,"latitude":39.80880619,"elevation":500.0},{"id":"2431","name":"Participants","longitude":116.50276509,"latitude":39.80885719,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"reportTime":1764815101516}
{"id":"41056663902769152","objects":[{"id":"27","name":"Vehicle","longitude":116.50266222,"latitude":39.80880619,"elevation":500.0},{"id":"2431","name":"Participants","longitude":116.50276509,"latitude":39.80885719,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815087408,"endTime":1764815101516,"reportTime":1764815101516}
{"id":"41056667189661696","objects":[{"id":"27","name":"Vehicle","longitude":116.50280436,"latitude":39.80867045,"elevation":500.0},{"id":"102426","name":"Participants","longitude":116.5027721,"latitude":39.8086266,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815112430,"reportTime":1764815112430}
{"id":"41056667189661696","objects":[{"id":"27","name":"Vehicle","longitude":116.50280226,"latitude":39.80866716,"elevation":500.0},{"id":"102426","name":"Participants","longitude":116.5027721,"latitude":39.8086266,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815112430,"reportTime":1764815113530}
{"id":"41056667189661696","objects":[{"id":"27","name":"Vehicle","longitude":116.50280226,"latitude":39.80866716,"elevation":500.0},{"id":"102426","name":"Participants","longitude":116.5027721,"latitude":39.8086266,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815112430,"reportTime":1764815114531}
{"id":"41056667189661696","objects":[{"id":"27","name":"Vehicle","longitude":116.50280226,"latitude":39.80866716,"elevation":500.0},{"id":"102426","name":"Participants","longitude":116.5027721,"latitude":39.8086266,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815112430,"reportTime":1764815115533}
{"id":"41056667189661696","objects":[{"id":"27","name":"Vehicle","longitude":116.50280226,"latitude":39.80866716,"elevation":500.0},{"id":"102426","name":"Participants","longitude":116.5027721,"latitude":39.8086266,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815112430,"reportTime":1764815116535}
{"id":"41056667189661696","objects":[{"id":"27","name":"Vehicle","longitude":116.50280226,"latitude":39.80866716,"elevation":500.0},{"id":"102426","name":"Participants","longitude":116.5027721,"latitude":39.8086266,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815112430,"reportTime":1764815117537}
{"id":"41056667189661696","objects":[{"id":"27","name":"Vehicle","longitude":116.50280226,"latitude":39.80866716,"elevation":500.0},{"id":"102426","name":"Participants","longitude":116.5027721,"latitude":39.8086266,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815112430,"reportTime":1764815118538}
{"id":"41056667189661696","objects":[{"id":"27","name":"Vehicle","longitude":116.50280226,"latitude":39.80866716,"elevation":500.0},{"id":"102426","name":"Participants","longitude":116.5027721,"latitude":39.8086266,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815112430,"reportTime":1764815119540}
{"id":"41056667189661696","objects":[{"id":"27","name":"Vehicle","longitude":116.50280226,"latitude":39.80866716,"elevation":500.0},{"id":"102426","name":"Participants","longitude":116.5027721,"latitude":39.8086266,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815112430,"reportTime":1764815120542}
{"id":"41056667189661696","objects":[{"id":"27","name":"Vehicle","longitude":116.50280226,"latitude":39.80866716,"elevation":500.0},{"id":"102426","name":"Participants","longitude":116.5027721,"latitude":39.8086266,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815112430,"reportTime":1764815121543}
{"id":"41056667189661696","objects":[{"id":"27","name":"Vehicle","longitude":116.50280226,"latitude":39.80866716,"elevation":500.0},{"id":"102426","name":"Participants","longitude":116.5027721,"latitude":39.8086266,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815112430,"endTime":1764815121543,"reportTime":1764815121543}
{"id":"41056669328756736","objects":[{"id":"27","name":"Vehicle","longitude":116.50318761,"latitude":39.80795764,"elevation":500.0},{"id":"601694","name":"Participants","longitude":116.5032265,"latitude":39.8078809,"elevation":500.0}],"type":12,"typeName":"弱势交通参与者","level":1,"startTime":1764815128768,"reportTime":1764815128768}
{"id":"41056669328756736","objects":[{"id":"27","name":"Vehicle","longitude":116.50320892,"latitude":39.80793118,"elevation":500.0},{"id":"601693","name":"Participants","longitude":116.5032809,"latitude":39.8078982,"elevation":500.0}],"type":12,"typeName":"弱势交通参与者","level":1,"startTime":1764815128768,"reportTime":1764815129310}
{"id":"41056669328756736","objects":[{"id":"27","name":"Vehicle","longitude":116.50323641,"latitude":39.80790379,"elevation":500.0},{"id":"601694","name":"Participants","longitude":116.5032427,"latitude":39.8078855,"elevation":500.0}],"type":12,"typeName":"弱势交通参与者","level":1,"startTime":1764815128768,"reportTime":1764815130312}
{"id":"41056669328756736","objects":[{"id":"27","name":"Vehicle","longitude":116.5032665,"latitude":39.8078867,"elevation":500.0},{"id":"601695","name":"Participants","longitude":116.5031929,"latitude":39.8078803,"elevation":500.0}],"type":12,"typeName":"弱势交通参与者","level":1,"startTime":1764815128768,"reportTime":1764815131322}
{"id":"41056669328756736","objects":[{"id":"27","name":"Vehicle","longitude":116.50330594,"latitude":39.80787388,"elevation":500.0},{"id":"601694","name":"Participants","longitude":116.5032642,"latitude":39.8078925,"elevation":500.0}],"type":12,"typeName":"弱势交通参与者","level":1,"startTime":1764815128768,"reportTime":1764815132324}
{"id":"41056669328756736","objects":[{"id":"27","name":"Vehicle","longitude":116.50333593,"latitude":39.80787289,"elevation":500.0},{"id":"601694","name":"Participants","longitude":116.5032747,"latitude":39.8078965,"elevation":500.0}],"type":12,"typeName":"弱势交通参与者","level":1,"startTime":1764815128768,"reportTime":1764815134327}
{"id":"41056669328756736","objects":[{"id":"27","name":"Vehicle","longitude":116.50333593,"latitude":39.80787289,"elevation":500.0},{"id":"601694","name":"Participants","longitude":116.5032747,"latitude":39.8078965,"elevation":500.0}],"type":12,"typeName":"弱势交通参与者","level":1,"startTime":1764815128768,"reportTime":1764815135329}
{"id":"41056669328756736","objects":[{"id":"27","name":"Vehicle","longitude":116.50333593,"latitude":39.80787289,"elevation":500.0},{"id":"601694","name":"Participants","longitude":116.5032747,"latitude":39.8078965,"elevation":500.0}],"type":12,"typeName":"弱势交通参与者","level":1,"startTime":1764815128768,"reportTime":1764815136331}
{"id":"41056669328756736","objects":[{"id":"27","name":"Vehicle","longitude":116.50333593,"latitude":39.80787289,"elevation":500.0},{"id":"601694","name":"Participants","longitude":116.5032747,"latitude":39.8078965,"elevation":500.0}],"type":12,"typeName":"弱势交通参与者","level":1,"startTime":1764815128768,"reportTime":1764815137332}
{"id":"41056669328756736","objects":[{"id":"27","name":"Vehicle","longitude":116.50333026,"latitude":39.80798272,"elevation":500.0},{"id":"601695","name":"Participants","longitude":116.5032869,"latitude":39.807901,"elevation":500.0}],"type":12,"typeName":"弱势交通参与者","level":1,"startTime":1764815128768,"reportTime":1764815138334}
{"id":"41056670746562560","objects":[{"id":"27","name":"Vehicle","longitude":116.50329769,"latitude":39.80801852,"elevation":500.0},{"name":"Vehicle","longitude":116.5032787,"latitude":39.8080572,"elevation":500.0}],"type":1,"typeName":"前向碰撞预警","level":1,"startTime":1764815139552,"reportTime":1764815139552}
[{"id":"3743379f-ddea-4816-9a34-e3b699810c50","deviceCode":"C-HK-38","deviceId":"DW17-XJ-003-034","intersectionCode":"yz-17","reportTime":1758163422384,"accessTime":1758163345458,"receiveTime":1758163422384,"participants":[{"ptcId":"50332456-3030-3030-3530-303334533955","ptcType":"pedestrian","longitude":"116.50230306","latitude":"39.80994386","heading":145,"speed":8.14,"gear":0,"color":0}]}]
[{"id":"3743379f-ddea-4816-9a34-e3b699810c50","deviceCode":"C-HK-38","deviceId":"DW17-XJ-003-034","intersectionCode":"yz-17","reportTime":1758163422384,"accessTime":1758163345458,"receiveTime":1758163422384,"participants":[{"ptcId":"50332456-3030-3030-3530-303334533955","ptcType":"pedestrian","longitude":"116.50226374","latitude":"39.80999206","heading":145,"speed":8.14,"gear":0,"color":0}]}]
[{"id":"3743379f-ddea-4816-9a34-e3b699810c50","deviceCode":"C-HK-38","deviceId":"DW17-XJ-003-034","intersectionCode":"yz-17","reportTime":1758163422384,"accessTime":1758163345458,"receiveTime":1758163422384,"participants":[{"ptcId":"50332456-3030-3030-3530-303334533955","ptcType":"pedestrian","longitude":"116.50220032","latitude":"39.80999713","heading":145,"speed":8.14,"gear":0,"color":0}]}]
[{"id":"3743379f-ddea-4816-9a34-e3b699810c50","deviceCode":"C-HK-38","deviceId":"DW17-XJ-003-034","intersectionCode":"yz-17","reportTime":1758163422384,"accessTime":1758163345458,"receiveTime":1758163422384,"participants":[{"ptcId":"50332456-3030-3030-3530-303334533955","ptcType":"pedestrian","longitude":"116.50204936866068","latitude":"39.809955271625505","heading":145,"speed":8.14,"gear":0,"color":0}]}]
[{"id":"3743379f-ddea-4816-9a34-e3b699810c50","deviceCode":"C-HK-38","deviceId":"DW17-XJ-003-034","intersectionCode":"yz-17","reportTime":1758163422384,"accessTime":1758163345458,"receiveTime":1758163422384,"participants":[{"ptcId":"50332456-3030-3030-3530-303334533955","ptcType":"pedestrian","longitude":"116.50204936866068","latitude":"39.809955271625505","heading":145,"speed":8.14,"gear":0,"color":0}]}]
\ No newline at end of file
{
"code": "1",
"msg": "执行成功",
"time": null,
"result": {
"vehicleId": "9",
"parkingPlaceId": "1582",
"routes": [
{
"routeId": 1,
"origin": [
116.5024625,
39.8090317,
0.5,
57.89772041872096
],
"destination": [
116.50259704080258,
39.80897308339394,
0.5,
148.39870153031333
],
"gear": 3,
"polyline": [
[
116.5024625,
39.8090317,
0.5,
57.89772041872096
],
[
116.50246452571352,
39.809032676237166,
0.5,
57.89772044830573
],
[
116.50246655142706,
39.80903365247434,
0.5,
57.89771960213193
],
[
116.5024685771406,
39.80903462871151,
0.5,
57.89771922370134
],
[
116.50247060285415,
39.80903560494868,
0.5,
57.89771936162544
],
[
116.50247262856767,
39.80903658118585,
0.5,
57.89771865921313
],
[
116.50247465428123,
39.809037557423025,
0.5,
57.89771813702095
],
[
116.50247667999476,
39.80903853366019,
0.5,
57.89771784262395
],
[
116.5024787057083,
39.80903950989737,
0.5,
57.89771781248072
],
[
116.50248073142184,
39.809040486134535,
0.5,
57.89771678608663
],
[
116.50248275713537,
39.80904146237171,
0.5,
57.897716911857806
],
[
116.50248478284891,
39.80904243860888,
0.5,
58.44974131872028
],
[
116.50248554937339,
39.80904280015562,
0.5,
59.50276252272974
],
[
116.50248625256704,
39.8090431183115,
0.5,
60.50475304316576
],
[
116.50248696285315,
39.809043426953984,
0.5,
61.5068690495854
],
[
116.50248768001542,
39.80904372598901,
0.5,
62.509093634085886
],
[
116.50248840383534,
39.80904401532554,
0.5,
63.51143735134052
],
[
116.50248913409246,
39.80904429487541,
0.5,
64.51389158185725
],
[
116.50248987056432,
39.80904456455347,
0.5,
65.51645302638387
],
[
116.50249061302658,
39.809044824277564,
0.5,
66.51911766227889
],
[
116.50249136125309,
39.80904507396862,
0.5,
67.52188629589547
],
[
116.50249211501594,
39.809045313550534,
0.5,
68.52475118194243
],
[
116.5024928740855,
39.809045542950344,
0.5,
69.52771135087231
],
[
116.50249363823058,
39.809045762098165,
0.5,
70.53076430088171
],
[
116.50249440721838,
39.80904597092725,
0.5,
71.5338982044983
],
[
116.50249518081468,
39.809046169374014,
0.5,
72.53712493227154
],
[
116.50249595878384,
39.80904635737795,
0.5,
73.54042603149213
],
[
116.50249674088887,
39.80904653488182,
0.5,
74.54380288535211
],
[
116.50249752689155,
39.80904670183156,
0.5,
75.54725220454134
],
[
116.50249831655243,
39.809046858176316,
0.5,
76.55076767205209
],
[
116.50249910963099,
39.80904700386845,
0.5,
77.55434597079713
],
[
116.50249990588564,
39.8090471388636,
0.5,
78.55798326200355
],
[
116.50250070507383,
39.80904726312063,
0.5,
79.56167512302761
],
[
116.50250150695214,
39.8090473766017,
0.5,
80.56541540346562
],
[
116.50250231127629,
39.80904747927224,
0.5,
81.5692015283057
],
[
116.50250311780128,
39.809047571100976,
0.5,
82.57302937448215
],
[
116.50250392628145,
39.80904765205992,
0.5,
83.57688999287667
],
[
116.5025047364705,
39.80904772212444,
0.5,
84.5807824690351
],
[
116.50250554812165,
39.80904778127317,
0.5,
85.5847021536356
],
[
116.50250636098767,
39.8090478294881,
0.5,
86.58864243359417
],
[
116.50250717482095,
39.809047866754554,
0.5,
87.59259916496013
],
[
116.50250798937358,
39.80904789306116,
0.5,
88.59656676751135
],
[
116.50250880439745,
39.80904790839994,
0.5,
89.60054301548143
],
[
116.50250961964429,
39.809047912766175,
0.5,
90.60452082561588
],
[
116.50251043486577,
39.80904790615856,
0.5,
91.60849540020708
],
[
116.50251124981355,
39.809047888579094,
0.5,
92.61246076526814
],
[
116.50251206423943,
39.80904786003317,
0.5,
93.61641601638239
],
[
116.50251287789527,
39.80904782052943,
0.5,
94.62035153464652
],
[
116.50251369053326,
39.80904777007994,
0.5,
95.62426498169609
],
[
116.50251450190586,
39.80904770870008,
0.5,
96.62815247584469
],
[
116.5025153117659,
39.80904763640851,
0.5,
97.6320077010017
],
[
116.50251611986671,
39.80904755322727,
0.5,
98.63582615246445
],
[
116.50251692596213,
39.8090474591817,
0.5,
99.6396029356568
],
[
116.5025177298066,
39.809047354300446,
0.5,
100.64333509460064
],
[
116.50251853115527,
39.80904723861545,
0.5,
101.64701481535195
],
[
116.50251932976404,
39.80904711216196,
0.5,
102.65064030944193
],
[
116.50252012538965,
39.80904697497849,
0.5,
103.65420787736437
],
[
116.50252091778974,
39.80904682710682,
0.5,
104.65770832871664
],
[
116.50252170672294,
39.80904666859201,
0.5,
105.6611445619776
],
[
116.50252249194894,
39.80904649948232,
0.5,
106.66450576708726
],
[
116.50252327322852,
39.80904631982929,
0.5,
107.66779300607064
],
[
116.50252405032373,
39.80904612968762,
0.5,
108.67099662191657
],
[
116.50252482299786,
39.809045929115264,
0.5,
109.67412031788409
],
[
116.50252559101551,
39.809045718173266,
0.5,
110.67715151686095
],
[
116.50252635414277,
39.80904549692593,
0.5,
111.68009243558053
],
[
116.50252711214716,
39.80904526544063,
0.5,
112.68293908702827
],
[
116.50252786479781,
39.80904502378788,
0.5,
113.68568606396775
],
[
116.50252861186543,
39.80904477204128,
0.5,
114.68833162716399
],
[
116.50252935312245,
39.80904451027753,
0.5,
115.69086865982342
],
[
116.50253008834312,
39.80904423857637,
0.5,
116.69330117287126
],
[
116.50253081730344,
39.80904395702054,
0.5,
117.69562139347418
],
[
116.50253153978137,
39.80904366569581,
0.5,
118.69782370428561
],
[
116.50253225555686,
39.80904336469095,
0.5,
119.69991398048334
],
[
116.50253296441184,
39.80904305409761,
0.5,
120.70188200132634
],
[
116.50253366613042,
39.80904273401042,
0.5,
121.70372833093772
],
[
116.50253436049884,
39.80904240452689,
0.5,
122.70545171632885
],
[
116.50253504730557,
39.80904206574736,
0.5,
123.70704849067864
],
[
116.50253572634142,
39.809041717775045,
0.5,
124.70851708470254
],
[
116.50253639739954,
39.80904136071593,
0.5,
125.70985397561847
],
[
116.50253706027554,
39.80904099467878,
0.5,
126.71106292311008
],
[
116.50253771476747,
39.8090406197751,
0.5,
127.71213477877798
],
[
116.50253836067598,
39.809040236119095,
0.5,
128.71307671567462
],
[
116.50253899780434,
39.80903984382761,
0.5,
129.71387938472418
],
[
116.50253962595843,
39.80903944302016,
0.5,
130.71454795094456
],
[
116.50254024494696,
39.809039033818834,
0.5,
131.715081353887
],
[
116.50254085458133,
39.809038616348246,
0.5,
132.71547244539005
],
[
116.50254145467586,
39.80903819073561,
0.5,
133.7157297517892
],
[
116.50254204504778,
39.80903775711055,
0.5,
134.7158451609438
],
[
116.50254262551721,
39.80903731560515,
0.5,
135.71582415142416
],
[
116.50254319590738,
39.80903686635389,
0.5,
136.7156629287259
],
[
116.5025437560445,
39.80903640949364,
0.5,
137.71536603730516
],
[
116.502544305758,
39.809035945163544,
0.5,
138.71492824573588
],
[
116.50254484488038,
39.80903547350505,
0.5,
139.71435524765133
],
[
116.50254537324744,
39.809034994661815,
0.5,
140.7136462092789
],
[
116.50254589069823,
39.80903450877972,
0.5,
141.71279800369544
],
[
116.50254639707514,
39.80903401600677,
0.5,
142.7118199466092
],
[
116.5025468922239,
39.80903351649306,
0.5,
148.39871208813233
],
[
116.50254873251244,
39.80903121870854,
0.5,
148.29516590244342
],
[
116.50255048525985,
39.80902903906369,
0.5,
148.18657771713612
],
[
116.50255215519805,
39.809026971172585,
0.5,
148.0731393794447
],
[
116.50255374705901,
39.80902500864927,
0.5,
147.95518990539915
],
[
116.50255526557463,
39.809023145107844,
0.5,
147.83323091131479
],
[
116.50255671547697,
39.80902137416238,
0.5,
147.7079753531522
],
[
116.50255810149788,
39.80901968942692,
0.5,
147.58035310284382
],
[
116.50255942836942,
39.80901808451557,
0.5,
147.4515603761775
],
[
116.5025607008234,
39.80901655304239,
0.5,
147.32305151685384
],
[
116.50256192359191,
39.80901508862146,
0.5,
147.19656656808223
],
[
116.50256310140682,
39.80901368486684,
0.5,
147.07409902594105
],
[
116.50256423900012,
39.8090123353926,
0.5,
146.9578700105823
],
[
116.50256534110378,
39.80901103381284,
0.5,
146.85026686659725
],
[
116.50256641244967,
39.80900977374158,
0.5,
146.75374406907338
],
[
116.50256745776986,
39.809008548792946,
0.5,
146.67072880702094
],
[
116.50256848179617,
39.80900735258098,
0.5,
146.60346613239437
],
[
116.50256948926067,
39.80900617871975,
0.5,
146.55389727736443
],
[
116.50257048489526,
39.80900502082334,
0.5,
146.52352464440904
],
[
116.50257147343187,
39.809003872505826,
0.5,
146.51329021995704
],
[
116.50257245960252,
39.80900272738129,
0.5,
146.5235233054894
],
[
116.50257344813913,
39.809001579063775,
0.5,
146.55389917083156
],
[
116.50257444377361,
39.80900042116737,
0.5,
146.60346623187232
],
[
116.50257545123799,
39.80899924730615,
0.5,
146.67072865587727
],
[
116.50257647526416,
39.80899805109418,
0.5,
146.7537458220197
],
[
116.50257752058411,
39.80899682614553,
0.5,
146.85026754296166
],
[
116.50257859192976,
39.80899556607427,
0.5,
146.95787167443586
],
[
116.5025796940331,
39.808994264494494,
0.5,
147.07409844260607
],
[
116.50258083162609,
39.808992915020255,
0.5,
147.19656711187423
],
[
116.50258200944063,
39.80899151126563,
0.5,
147.32305135626325
],
[
116.50258323220868,
39.808990046844684,
0.5,
147.45155825407082
],
[
116.50258450466227,
39.808988515371496,
0.5,
147.58035254077038
],
[
116.50258583153325,
39.80898691046014,
0.5,
147.70797126024345
],
[
116.50258721755367,
39.80898522572469,
0.5,
147.8332280436243
],
[
116.5025886674554,
39.80898345477921,
0.5,
147.95518396080843
],
[
116.50259018597043,
39.808981591237774,
0.5,
148.0731342468305
],
[
116.5025917778307,
39.808979628714454,
0.5,
148.18656990784697
],
[
116.50259344776819,
39.80897756082334,
0.5,
148.2951576602122
],
[
116.50259520051483,
39.80897538117847,
0.5,
148.39870153031333
],
[
116.50259704080258,
39.80897308339394,
0.5,
148.39870153031333
]
]
}
],
"origin": null,
"destination": null,
"points": null,
"execType": null,
"execTypeDesc": null,
"vehicleInfo": null,
"time": null,
"parkingPlace": null
}
}
\ 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