You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i was doing some stuff with rss sensor, at first i was getting no errors, but later i looked i started getting this error:
Use 'default' RSS Parameters
[2024-12-07 18:37:20.732] [ad_map_access] [error] AdMapAccess::initializeFromOpenDriveContent() failed; already initialized with different store object or content
ERROR: Actor 8149 (sensor.other.rss) : Initialization of map failed
ERROR: Actor 8149 (sensor.other.rss) : not yet listening. SetLogLevel has no effect.
ERROR: Actor 8149 (sensor.other.rss) : not yet listening. SetMapLogLevel has no effect.
ERROR: Actor 8149 (sensor.other.rss) : not yet listening. SetRoadBoundariesMode has no effect.
ERROR: Actor 8149 (sensor.other.rss) : not yet listening. ResetRoutingTargets has no effect.
anyone knows why this could happen
The text was updated successfully, but these errors were encountered:
i dont understand much whats happening in cpp files but,
` auto mapInitializationResult = ::ad::map::access::initFromOpenDriveContent(
open_drive_content, 0.2, ::ad::map::intersection::IntersectionType::TrafficLight,
::ad::map::landmark::TrafficLightType::LEFT_STRAIGHT_RED_YELLOW_GREEN);
if (!mapInitializationResult) {
log_error(GetDisplayId(), ": Initialization of map failed");
return;
}` fails, in RssSensor::Listen method, if i add here a AdMapAccess::reset() and compile rss carla again, would it solve this issue ? or add the reset into AdMapAccess::initializeFromOpenDriveContent, would it solve the issue, im lost
Hi,
Hmm, that's interesting that no one else found that problem so far.
I guess you are using multiple RSSSensors (or multiple vehicles with attached RSSSensor).
The cleanup() call before would most probably help, yes. But since at that time most probably the other Sensor is already running that might be not a good idea.
Hi, i was doing some stuff with rss sensor, at first i was getting no errors, but later i looked i started getting this error:
Use 'default' RSS Parameters
[2024-12-07 18:37:20.732] [ad_map_access] [error] AdMapAccess::initializeFromOpenDriveContent() failed; already initialized with different store object or content
ERROR: Actor 8149 (sensor.other.rss) : Initialization of map failed
ERROR: Actor 8149 (sensor.other.rss) : not yet listening. SetLogLevel has no effect.
ERROR: Actor 8149 (sensor.other.rss) : not yet listening. SetMapLogLevel has no effect.
ERROR: Actor 8149 (sensor.other.rss) : not yet listening. SetRoadBoundariesMode has no effect.
ERROR: Actor 8149 (sensor.other.rss) : not yet listening. ResetRoutingTargets has no effect.
anyone knows why this could happen
The text was updated successfully, but these errors were encountered: