-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from RaccoonlabDev/dynamics3d_relay
Dynamics3d relay
- Loading branch information
Showing
2 changed files
with
126 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#!/usr/bin/env python | ||
|
||
import rospy | ||
from sensor_msgs.msg import NavSatFix, Joy | ||
from geometry_msgs.msg import QuaternionStamped | ||
import time | ||
|
||
# Define publish rate limit (Hz) | ||
PUBLISH_RATE_HZ = 10 | ||
PUBLISH_PERIOD_SEC = 1.0 / PUBLISH_RATE_HZ | ||
|
||
class DynamicsTo3DRelay: | ||
def __init__(self): | ||
rospy.init_node('dynamics_to_3d_relay', anonymous=True) | ||
|
||
# ROS topic subscribers | ||
rospy.Subscriber('/uav/gps_point', NavSatFix, self.callback_gps_point) | ||
rospy.Subscriber('/uav/attitude', QuaternionStamped, self.callback_attitude) | ||
rospy.Subscriber('/uav/actuators', Joy, self.callback_actuators) | ||
|
||
# ROS topic publishers | ||
self.publisher_gps_position = rospy.Publisher('/sim/gps_position', NavSatFix, queue_size=10) | ||
self.publisher_attitude = rospy.Publisher('/sim/attitude', QuaternionStamped, queue_size=10) | ||
self.publisher_actuators = rospy.Publisher('/sim/actuators', Joy, queue_size=10) | ||
|
||
# Time variables for controlling publish rate | ||
self.last_publish_time_gps = time.time() | ||
self.last_publish_time_attitude = time.time() | ||
self.last_publish_time_actuators = time.time() | ||
|
||
def callback_gps_point(self, data): | ||
if time.time() - self.last_publish_time_gps >= PUBLISH_PERIOD_SEC: | ||
self.publisher_gps_position.publish(data) | ||
self.last_publish_time_gps = time.time() | ||
|
||
def callback_attitude(self, data): | ||
if time.time() - self.last_publish_time_attitude >= PUBLISH_PERIOD_SEC: | ||
self.publisher_attitude.publish(data) | ||
self.last_publish_time_attitude = time.time() | ||
|
||
def callback_actuators(self, data): | ||
if time.time() - self.last_publish_time_actuators >= PUBLISH_PERIOD_SEC: | ||
self.publisher_actuators.publish(data) | ||
self.last_publish_time_actuators = time.time() | ||
|
||
def main(): | ||
try: | ||
relay = DynamicsTo3DRelay() | ||
rospy.spin() | ||
except rospy.ROSInterruptException: | ||
pass | ||
|
||
if __name__ == '__main__': | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
import rospy | ||
import pyproj | ||
import utm | ||
from geometry_msgs.msg import PoseStamped, QuaternionStamped, Quaternion, Pose, Twist, Vector3 | ||
from sensor_msgs.msg import NavSatFix | ||
from nav_msgs.msg import Odometry | ||
|
||
# Initialize node | ||
rospy.init_node('gps_attitude_to_pose') | ||
|
||
# Set up publishers and subscribers | ||
pose_pub = rospy.Publisher('/drone_pose', PoseStamped, queue_size=1) | ||
odom_pub = rospy.Publisher('/drone_odom', Odometry, queue_size=1) | ||
attitude = Quaternion() | ||
position = NavSatFix() | ||
|
||
# Variables to hold the origin of the local frame (first received GPS data) | ||
origin_lat = None | ||
origin_lon = None | ||
origin_east = None | ||
origin_north = None | ||
origin_zone = None | ||
origin_letter = None | ||
|
||
def attitude_callback(msg): | ||
global attitude | ||
attitude = msg.quaternion | ||
|
||
def gps_callback(msg): | ||
global position, origin_lat, origin_lon, origin_east, origin_north, origin_zone, origin_letter | ||
position = msg | ||
|
||
if origin_lat is None and origin_lon is None: | ||
# Store the first received GPS data as the origin of our local frame | ||
origin_lat = position.latitude | ||
origin_lon = position.longitude | ||
origin_east, origin_north, origin_zone, origin_letter = utm.from_latlon(origin_lat, origin_lon) | ||
|
||
else: | ||
pose = PoseStamped() | ||
pose.header = msg.header | ||
pose.header.frame_id = "world" | ||
|
||
# Convert from LLA to UTM | ||
east, north, _, _ = utm.from_latlon(position.latitude, position.longitude, force_zone_number=origin_zone, force_zone_letter=origin_letter) | ||
|
||
# Subtract the first position in UTM format | ||
pose.pose.position.x = east - origin_east | ||
pose.pose.position.y = north - origin_north | ||
pose.pose.position.z = position.altitude | ||
|
||
# Orientation | ||
pose.pose.orientation = attitude | ||
|
||
# Publishing the PoseStamped message | ||
pose_pub.publish(pose) | ||
|
||
# Creating and publishing the Odometry message | ||
odom_msg = Odometry() | ||
odom_msg.header = pose.header | ||
odom_msg.child_frame_id = "base_link" | ||
odom_msg.pose.pose = pose.pose | ||
odom_msg.twist.twist = Twist(Vector3(0, 0, 0), Vector3(0, 0, 0)) # Assuming velocities are zero | ||
odom_pub.publish(odom_msg) | ||
|
||
attitude_sub = rospy.Subscriber('/sim/attitude', QuaternionStamped, attitude_callback) | ||
gps_sub = rospy.Subscriber('/sim/gps_position', NavSatFix, gps_callback) | ||
|
||
rate = rospy.Rate(10) # 10 Hz | ||
|
||
while not rospy.is_shutdown(): | ||
rate.sleep() |