nmea_navsat_driver
nmea_navsat_driver copied to clipboard
ROS package containing drivers for NMEA devices that can output satellite navigation data (e.g. GPS or GLONASS).
I think it’s often that people of robotics use this driver with robot_localization package, IMU messages are accepted for state estimation nodes but in the current form heading is only...
I added a new `nmea_tcpclient_driver`, because Sensors like the `Emlid Reach RS2` do not offer any UDP connection, but transmit NMEA-Sentences on Port 9001/tcp. The `nmea_tcpclient_driver` connects to it via...
Hi there, A newbie to GPS here, I have a few questions: 1. What GPS modules (compatible with nmea_navsat_driver) would you recommend? 2. How would the GPS package interact with...
Added the ability to parse the PASHCR sentence. Also added the ability to parse the heading sentence which was already implemented on master branch, but missing on melodic devel branch.
We are making the transition from ROS1 to ROS2. It looks like there was some work getting this package compatible with ROS2. https://github.com/ros-drivers/nmea_navsat_driver/issues/61 Checking [ROS packages](https://index.ros.org/p/nmea_navsat_driver/github-ros-drivers-nmea_navsat_driver/#noetic) and apt not seeing...
Hello! I'm using ROS Melodic and got this error when working with the nmea_topic_driver node. `Value error, likely due to missing fields in the NMEA message. Error was: invalid literal...
Currently the altitude covariance is approximated by using the Horizontal Dilution of Precision (HDOP) times two instead of the Vertical Dilution of Precision (VDOP): https://github.com/ros-drivers/nmea_navsat_driver/blob/f60d849b5648561dc6a4e5112d3e793dace66cf4/src/libnmea_navsat_driver/driver.py#L242-L243 While from my very anecdotal...
Hi, Are there any plans to add functionality that will send RTCM correction data to a supporting GPS module ? There are many publicly available NTRIP servers that could provide...
Is NavSatFix message status.service populated correctly? I always have service = 1 (uint16 SERVICE_GPS=1), although I have GPGSV, GLGSV, GBGSV NMEA sentences incoming. Please clarify if the "service" field is...
This causes it to emit incorrect time reference messages if the system time is off the GPS time by more than a second. The root cause here is that [`datetime.replace`](https://docs.python.org/3/library/datetime.html#datetime.datetime.replace)...