Skip to content

Commit

Permalink
docs(planning_debug_tools): fix reactive script example (#16)
Browse files Browse the repository at this point in the history
* docs(planning_debug_tools): fix reactive script example

Signed-off-by: satoshi-ota <[email protected]>

* fix(repos): add build dependency

Signed-off-by: satoshi-ota <[email protected]>

---------

Signed-off-by: satoshi-ota <[email protected]>
  • Loading branch information
satoshi-ota authored Mar 21, 2024
1 parent 6443b68 commit f43ff4e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions build_depends.repos
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ repositories:
type: git
url: https://github.com/autowarefoundation/autoware_adapi_msgs.git
version: main
core/autoware_internal_msgs:
type: git
url: https://github.com/autowarefoundation/autoware_internal_msgs.git
version: main
core/external/autoware_auto_msgs:
type: git
url: https://github.com/tier4/autoware_auto_msgs.git
Expand Down
4 changes: 2 additions & 2 deletions planning/planning_debug_tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ function PlotValue(name, path, timestamp, value)
new_series = ScatterXY.new(name)
index = 0
while(true) do
series_k = TimeseriesView.find( string.format( "%s/"..value..".%d", path, index) )
series_s = TimeseriesView.find( string.format( "%s/arclength.%d", path, index) )
series_k = TimeseriesView.find( string.format( "%s/"..value.."[%d]", path, index) )
series_s = TimeseriesView.find( string.format( "%s/arclength[%d]", path, index) )
series_size = TimeseriesView.find( string.format( "%s/size", path) )

if series_k == nil or series_s == nil then break end
Expand Down

0 comments on commit f43ff4e

Please sign in to comment.