Skip to content

Commit

Permalink
even though the ID of the ADAS map does not start with autowarefounda…
Browse files Browse the repository at this point in the history
…tion#1, it has been modified to work properly
  • Loading branch information
YamatoAndo committed Dec 22, 2017
1 parent 8ef1d9a commit 734817d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -309,9 +309,9 @@ void echoSignals2(ros::Publisher &pub, bool useOpenGLCoord = false)
}
}

for (unsigned int i = 1; i <= vmap.signals.size(); i++)
for (const auto& signal_map : vmap.signals)
{
Signal signal = vmap.signals[i];
const Signal signal = signal_map.second;
int pid = vmap.vectors[signal.vid].pid;

Point3 signalcenter = vmap.getPoint(pid);
Expand Down

0 comments on commit 734817d

Please sign in to comment.