- Created project filter file for Visual Studio to organize source files. - Added JSON configuration files for airport bounds, intersections, system settings, and unmanned vehicles. - Implemented a recipe file for CMake's ZERO_CHECK target to manage build dependencies. - Updated tlog files to track build state and command execution for the project.
34 lines
935 B
JSON
34 lines
935 B
JSON
{
|
|
"intersections": [
|
|
{
|
|
"id": "T2路口",
|
|
"name": "无人车与特勤车交叉路口",
|
|
"trafficLightId": "TL001",
|
|
"position": {
|
|
"longitude": 120.08502054,
|
|
"latitude": 36.35448347,
|
|
"altitude": 9.543
|
|
},
|
|
"width": 20.0,
|
|
"safetyZone": {
|
|
"aircraftRadius": 50.0,
|
|
"vehicleRadius": 50.0
|
|
}
|
|
},
|
|
{
|
|
"id": "T6路口",
|
|
"name": "无人车与飞机交叉路口",
|
|
"trafficLightId": "TL002",
|
|
"position": {
|
|
"longitude": 120.08649105,
|
|
"latitude": 36.35074527,
|
|
"altitude": 9.778
|
|
},
|
|
"width": 30.0,
|
|
"safetyZone": {
|
|
"aircraftRadius": 50.0,
|
|
"vehicleRadius": 50.0
|
|
}
|
|
}
|
|
]
|
|
} |