Closed yuanhaorannnnnn closed 2 years ago
IngestStream
. This works for running a vehicle in small regions (e.g. CARLA scenarios); however, I could also imagine developing an HDMap operator which takes in the pose stream and sends out updated maps when the vehicle moves to a new section of the map.hd_map.py
uses CARLA's map object to parse and interact with arbitrary OpenDRIVE maps, so the CARLA integration should not pose a problem.
- We haven't worked with real-world HD mapping much, but you could try reading the OpenDRIVE map data and sending the string on the
IngestStream
. This works for running a vehicle in small regions (e.g. CARLA scenarios); however, I could also imagine developing an HDMap operator which takes in the pose stream and sends out updated maps when the vehicle moves to a new section of the map.- I believe the planner and the localization module should automatically parse maps in the OpenDRIVE format.
hd_map.py
uses CARLA's map object to parse and interact with arbitrary OpenDRIVE maps, so the CARLA integration should not pose a problem.
Thanks for your reply and I've been working on this, and now I need your help. In the lincoln.conf, this is a waypoint csv file item. I found my pipeline was stuck may because I didn't inject the waypoint file, but I dont know how to generate a file like this, so could you send me a hard copy of waypoint csv file?
Thanks for your reply and I've been working on this, and now I need your help. In the lincoln.conf, this is a waypoint csv file item. I found my pipeline was stuck may because I didn't inject the waypoint file, but I dont know how to generate a file like this, so could you send me a hard copy of waypoint csv file?
Unfortunately, the CSV file of waypoints is dependent on the actual real-world route you want the vehicle to take, so sharing it would not really be helpful to running the vehicle. However, the CSV file is a simple list of (X, Y, Z)
coordinates that you want the vehicle to follow, and you can look at how we parse such a file here. It should be pretty easy to generate such a file from the HD-Map.
Thanks for your reply and I've been working on this, and now I need your help. In the lincoln.conf, this is a waypoint csv file item. I found my pipeline was stuck may because I didn't inject the waypoint file, but I dont know how to generate a file like this, so could you send me a hard copy of waypoint csv file?
Unfortunately, the CSV file of waypoints is dependent on the actual real-world route you want the vehicle to take, so sharing it would not really be helpful to running the vehicle. However, the CSV file is a simple list of
(X, Y, Z)
coordinates that you want the vehicle to follow, and you can look at how we parse such a file here. It should be pretty easy to generate such a file from the HD-Map.
Thanks for your clear explanation, and now I can get some available waypoints data fro test.
Hello, I want to figure out how to use the hdmap exported from openstreet without Carla. I've chekced the code hd_map.py in map directory, and found it deeply binded with Carla. Now I have two questions:
Thnaks for everyone here, I've worked on pylot for a while, I found it's a great project to explore and research the self-driving program, thanks again for any help.