Skip to content

Commit

Permalink
Unflipped northing and easting to match firmware
Browse files Browse the repository at this point in the history
  • Loading branch information
RedRussianBear committed Nov 14, 2024
1 parent 7c9e218 commit 96b0346
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rb_ws/src/buggy/scripts/serial/ros_to_bnyahaj.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def reader_thread(self):

# TODO: Not mock rolled accurately (Needs to be Fact Checked)
try:
lat, long = World.utm_to_gps(packet.y, packet.x)
lat, long = World.utm_to_gps(packet.x, packet.y)
odom.pose.pose.position.x = long
odom.pose.pose.position.y = lat
odom.twist.twist.angular.z = packet.heading_rate
Expand Down

0 comments on commit 96b0346

Please sign in to comment.