Skip to content

Commit

Permalink
Removed patch to truth publishing.
Browse files Browse the repository at this point in the history
  • Loading branch information
iandareid committed May 22, 2024
1 parent 9add2d0 commit 615ffe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rosplane_sim/src/gazebo_state_transcription.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ class gazebo_transcription : public rclcpp::Node
state.initial_lon = 0.0; // TODO implement correct initial lat and lon
state.initial_alt = 0.0;

state.position[0] = -msg.pose.pose.position.x;
state.position[1] = -msg.pose.pose.position.y;
state.position[0] = msg.pose.pose.position.x;
state.position[1] = msg.pose.pose.position.y;
state.position[2] = msg.pose.pose.position.z;

Eigen::Quaternionf q;
Expand Down

0 comments on commit 615ffe6

Please sign in to comment.