Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
feat(#211): Fix lidar position
Browse files Browse the repository at this point in the history
  • Loading branch information
timdreier committed Mar 21, 2023
1 parent 79906e5 commit 1b07220
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/agent/config/dev_objects.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
"z": 1.60,
"roll": 0.0,
"pitch": 0.0,
"yaw": 0
"yaw": 0.0
},
"range": 85,
"rotation_frequency": 10,
Expand Down
2 changes: 1 addition & 1 deletion code/agent/src/agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def sensors(self):
'yaw': 0.0, 'width': 300, 'height': 200, 'fov': 100},
{'type': 'sensor.lidar.ray_cast', 'id': 'LIDAR',
'x': 0.7, 'y': -0.4, 'z': 1.60, 'roll': 0.0, 'pitch': 0.0,
'yaw': -45.0},
'yaw': 0.0},
{'type': 'sensor.other.radar', 'id': 'RADAR',
'x': 0.7, 'y': -0.4, 'z': 1.60, 'roll': 0.0, 'pitch': 0.0,
'yaw': -45.0, 'horizontal_fov': 30, 'vertical_fov': 30},
Expand Down

0 comments on commit 1b07220

Please sign in to comment.