Skip to content

Commit

Permalink
Merge branch 'main' into refactor-ros-config-behavior_velocity_planner
Browse files Browse the repository at this point in the history
  • Loading branch information
satoshi-ota authored Nov 23, 2023
2 parents 62aedd7 + c171d1c commit fbe364f
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ def print_data(self):
print("-" * len(header_str))

# Print each topic's data
for topic, data in self.data_map.items():
for topic in sorted(self.data_map.keys()):
# Fetch the data for the current topic
data = self.data_map[topic]
# Round the data to the third decimal place for display
data_rounded = round(data, 3)
# Calculate the number of bars to be displayed (clamped to max_display_time)
Expand Down

0 comments on commit fbe364f

Please sign in to comment.