智驾安全云 (ADSC) 风险辨识与控制系统
注意: 以下数据为模拟数据,请根据实际业务场景替换。每个功能点入口点击后会跳转到相应的HTML页面。
应用场景数据
车辆传感器数据
{
"timestamp": "2024-10-27 10:00:00",
"sensorData": {
"camera": {
"front": {
"status": "OK",
"image": "base64_encoded_image_data"
},
"left": {
"status": "DEGRADED",
"error_code": "CAMERA_BLURRED"
}
},
"lidar": {
"status": "OK",
"point_cloud": "base64_encoded_point_cloud_data"
}
},
"vehicleState": {
"speed": 60,
"steering_angle": 0,
"throttle": 0.2,
"brake": 0
},
"environmentData": {
"weather": "Rainy",
"visibility": 50
},
"mapData": {
"status": "OK",
"version": "1.0"
},
"remoteAssistanceData": {
"intervention": false,
"intervention_type": null,
"intervention_reason": null
},
"systemResourceUsage": {
"cpuUsage": 85,
"memoryUsage": 90,
"diskUsage": 70
},
"networkConnectivity": {
"signalStrength": -80,
"latency": 150,
"packetLossRate": 0.05
}
}
安全预测模块数据
{
"timestamp": "2024-10-27 10:00:00",
"features": {
"speed_change_rate": 5,
"distance_to_front_vehicle": 10,
"lane_deviation": 0.5,
"traffic_flow": 100,
"weather": "Rainy"
},
"label": 1
}
远程协助优化模块数据
{
"timestamp": "2024-10-27 10:00:00",
"intervention_type": "Takeover",
"intervention_reason": "Object Misidentification",
"intervention_duration": 60,
"intervention_user": "RemoteOperator1",
"audio_log": "base64_encoded_audio_data",
"text_description": "Operator took over due to incorrect object classification in heavy rain."
}
风险评估模块数据
{
"timestamp": "2024-10-27 10:00:00",
"risk_factors": {
"weather": "Rainy",
"light": "Low",
"road_condition": "Slippery",
"speed": 70,
"distance_to_front_vehicle": 15,
"pedestrian_density": "High"
},
"risk_probability": 0.8,
"risk_level": "High"
}
故障诊断模块数据
{
"timestamp": "2024-10-27 10:00:00",
"dtc": "P0101",
"sensor_data": {
"engine_temperature": 120,
"battery_voltage": 11.5
},
"log_data": "System log message indicating engine overheating."
}
功能点列表
##实施数据##: 你构建的智驾安全云 (ADSC) 业务体系,理出应用场景数据,包括外部数据、采集数据、业务数据等进行测试的数据,并明确每个模块的业务流程、数据流转、以及对顶层价值场景的贡献。