Open zqzqz opened 1 year ago
Log of python carla_cyber_bridge/bridge.py.
python carla_cyber_bridge/bridge.py
[2023-04-02 03:03:43,291] [carla_bridge] [INFO]: Loading town 'Town01' (previous: 'Carla/Maps/Town01').
At https://github.com/guardstrikelab/carla_apollo_bridge/blob/master/src/carla_cyber_bridge/bridge.py#L454
if carla_world.get_map().name != parameters["town"]:
carla_world.get_map().name is in format Carla/Maps/TownXXX while the parameters["town"] is in TownXXX. The check does not work even if the same map is loaded.
carla_world.get_map().name
Carla/Maps/TownXXX
parameters["town"]
TownXXX
This issue is stale because it has been open for 30 days with no activity.
We have fixed this issue in the latest version and will soon release it
Log of
python carla_cyber_bridge/bridge.py
.At https://github.com/guardstrikelab/carla_apollo_bridge/blob/master/src/carla_cyber_bridge/bridge.py#L454
carla_world.get_map().name
is in formatCarla/Maps/TownXXX
while theparameters["town"]
is inTownXXX
. The check does not work even if the same map is loaded.