Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change NavSatFixPtr to NavSatFix #103

Closed
wants to merge 21 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CI

on: [push, pull_request]

jobs:
industrial_ci:
strategy:
matrix:
env:
- {ROS_DISTRO: noetic, ROS_REPO: testing}
- {ROS_DISTRO: noetic, ROS_REPO: main}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: 'ros-industrial/industrial_ci@master'
env: ${{matrix.env}}
25 changes: 0 additions & 25 deletions .travis.yml

This file was deleted.

11 changes: 11 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Copyright 2023, Ken Tossell

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14 changes: 14 additions & 0 deletions gps_common/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
Changelog for package gps_common
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.3.4 (2023-06-14)
------------------

0.3.3 (2022-11-28)
------------------
* Fix truncation warning for UTM zone snprintf() (`#44 <https://github.com/swri-robotics/gps_umd/issues/44>`_)
* Contributors: Kevin Hallenbeck

0.3.2 (2020-05-25)
------------------

0.3.1 (2020-03-05)
------------------

0.3.0 (2019-10-03)
------------------
* Switching order of commands to make catkin happy
Expand Down
1 change: 1 addition & 0 deletions gps_common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ catkin_python_setup()
add_message_files(
FILES
GPSStatus.msg
GPSExtendedStatus.msg
GPSFix.msg
)

Expand Down
4 changes: 2 additions & 2 deletions gps_common/include/gps_common/conversions.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ static inline void LLtoUTM(const double Lat, const double Long,
LongOriginRad = LongOrigin * RADIANS_PER_DEGREE;

//compute the UTM Zone from the latitude and longitude
snprintf(UTMZone, 4, "%d%c", ZoneNumber, UTMLetterDesignator(Lat));
snprintf(UTMZone, 13, "%d%c", ZoneNumber, UTMLetterDesignator(Lat));

eccPrimeSquared = (eccSquared)/(1-eccSquared);

Expand All @@ -210,7 +210,7 @@ static inline void LLtoUTM(const double Lat, const double Long,
static inline void LLtoUTM(const double Lat, const double Long,
double &UTMNorthing, double &UTMEasting,
std::string &UTMZone) {
char zone_buf[] = {0, 0, 0, 0};
char zone_buf[13] = {0};

LLtoUTM(Lat, Long, UTMNorthing, UTMEasting, zone_buf);

Expand Down
9 changes: 9 additions & 0 deletions gps_common/msg/GPSExtendedStatus.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Extended Measurement status to use for GPSStatus.msg
int16 STATUS_NO_FIX=-1 # Unable to fix position
int16 STATUS_FIX=0 # Normal fix
int16 STATUS_SBAS_FIX=1 # Fixed using a satellite-based augmentation system
int16 STATUS_GBAS_FIX=2 # or a ground-based augmentation system
int16 STATUS_DGPS_FIX=18 # Fixed with DGPS
int16 STATUS_RTK_FIX=19 # Real-Time Kinematic, fixed integers
int16 STATUS_RTK_FLOAT=20 # Real-Time Kinematic, float integers
int16 STATUS_WAAS_FIX=33 # Fixed with WAAS
7 changes: 4 additions & 3 deletions gps_common/package.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<?xml version="1.0"?>
<package>
<name>gps_common</name>
<version>0.3.0</version>
<version>0.3.4</version>
<description>GPS messages and common routines for use in GPS drivers</description>

<maintainer email="[email protected]">Timo Roehling</maintainer>
<maintainer email="[email protected]">P. J. Reed</maintainer>
<author email="[email protected]">Timo Roehling</author>
<author email="[email protected]">P. J. Reed</author>
<maintainer email="[email protected]">Southwest Research Institute</maintainer>
<license>BSD</license>
<url type="website">http://ros.org/wiki/gps_common</url>

Expand Down
12 changes: 12 additions & 0 deletions gps_umd/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
Changelog for package gps_umd
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.3.4 (2023-06-14)
------------------

0.3.3 (2022-11-28)
------------------

0.3.2 (2020-05-25)
------------------

0.3.1 (2020-03-05)
------------------

0.3.0 (2019-10-03)
------------------

Expand Down
7 changes: 4 additions & 3 deletions gps_umd/package.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<?xml version="1.0"?>
<package>
<name>gps_umd</name>
<version>0.3.0</version>
<version>0.3.4</version>
<description>gps_umd metapackage</description>

<maintainer email="[email protected]">Ken Tossell</maintainer>
<maintainer email="[email protected]">P. J. Reed</maintainer>
<author email="[email protected]">Ken Tossell</author>
<author email="[email protected]">P. J. Reed</author>
<maintainer email="[email protected]">Southwest Research Institute</maintainer>

<license>BSD</license>

Expand Down
27 changes: 27 additions & 0 deletions gpsd_client/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,33 @@
Changelog for package gpsd_client
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

0.3.4 (2023-06-14)
------------------
* GPSD API v12 Compatibility (`#78 <https://github.com/swri-robotics/gps_umd/issues/78>`_)
* Contributors: MariuszSzczepanikSpyrosoft

0.3.3 (2022-11-28)
------------------
* Adding better debugging output to help diagnose corner case (`#59 <https://github.com/swri-robotics/gps_umd/issues/59>`_)
* Adding better debugging output to help diagnose corner case
DISTRIBUTION A. Approved for public release; distribution unlimited. OPSEC `#4584 <https://github.com/swri-robotics/gps_umd/issues/4584>`_
* Merge pull request `#39 <https://github.com/swri-robotics/gps_umd/issues/39>`_ from shr-project/jansa/gpsd
Fix build with gpsd-3.21
* Fix build with gpsd-3.21
Adapt to changes from this commit:
https://gitlab.com/gpsd/gpsd/-/commit/29991d6ffeb41ecfc8297db68bb68be0128c8514
* Contributors: David Anthony, Martin Jansa

0.3.2 (2020-05-25)
------------------
* Fix build with gpsd 3.20 (`#28 <https://github.com/swri-robotics/gps_umd/issues/28>`_)
* Contributors: P. J. Reed

0.3.1 (2020-03-05)
------------------
* Fix for gpsd-3.19 compatibility (`#26 <https://github.com/swri-robotics/gps_umd/issues/26>`_)
* Contributors: P. J. Reed

0.3.0 (2019-10-03)
------------------

Expand Down
7 changes: 4 additions & 3 deletions gpsd_client/package.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
<?xml version="1.0"?>
<package>
<name>gpsd_client</name>
<version>0.3.0</version>
<version>0.3.4</version>
<description>connects to a GPSd server and broadcasts GPS fixes
using the NavSatFix message</description>

<maintainer email="[email protected]">Timo Roehling</maintainer>
<maintainer email="[email protected]">P. J. Reed</maintainer>
<author email="[email protected]">Ken Tossell</author>
<author email="[email protected]">Rob Thomson</author>
<author email="[email protected]">Timo Roehling</author>
<author email="[email protected]">P. J. Reed</author>
<maintainer email="[email protected]">Southwest Research Institute</maintainer>

<license>BSD</license>
<url type="website">http://ros.org/wiki/gpsd_client</url>
Expand Down
Loading