This repository has been archived by the owner on May 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrew Kuck
committed
Apr 1, 2020
1 parent
46b37f6
commit b5975eb
Showing
11 changed files
with
147 additions
and
29 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
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
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
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 |
---|---|---|
@@ -1,26 +1,35 @@ | ||
GPSTk 3.1.0 Release Notes | ||
GPSTk 4.0.0 Release Notes | ||
======================== | ||
|
||
* This version was created in response to additional Navigation message processing capability. | ||
* This major version number release was due to some API breaking call signature changes. | ||
|
||
Updates since v3.0.0 | ||
Updates since v3.1.0 | ||
--------------------- | ||
|
||
**Build System and Test Suite** | ||
* Adjusted build.sh to better support specifying a python3 executable. | ||
|
||
**Gitlab CI** | ||
* Windows CI testing was added back. | ||
* Added package building and testing for redhat and debian to master branch pipelines. | ||
* Conda packages are now correctly preserved as build artifacts. | ||
* Master branch now run both build & test on debian 7, debian 8, and debian 10. | ||
|
||
**Library Changes** | ||
* OrbAlm/OrbAlmGen updated to support direct loading of the engineering unit values. (Better support for Nav Messages) | ||
* NavFilter framework updated to include classes that abstract access to the storage of the subframe data. | ||
* Modified YumaAlamancStore and SEMAlmanacStore to inherit from OrbAlmStore (instead of GPSAlmanacStore). | ||
* Changed a calling signature in OrbElemRinex | ||
* Add string conversions to-from SatID.SatelliteSystem | ||
* Remove exception specifications from function/method prototypes and definitions | ||
* SVNumXRef - PRN 18 removed from SVN 34 and assigned to SVN 75 | ||
|
||
Fixes since v3.0.0 | ||
Fixes since v3.1.0 | ||
-------------------- | ||
* Fixed a bug revealed by GPS III where endValid times was calculated incorrectly in OrbElemRinex | ||
* Fix to recognized QZSS navigation message data set cutovers. | ||
* Fix an installation bug when using versioned header directories. | ||
* Fix slight errors in svXvt velocity computation. | ||
* Update svXvt to set Xvt.health when available. | ||
* Fix BrcKeplerOrbit to use relativity correction and initial URE value of 0. | ||
* Fix AlmOrbit to add missing final value of G. | ||
* Fix BDSEphemeris to use GEO equations only above 7 degrees. | ||
* Change OrbitEph to use CGCS2000 ellipsoid for BeiDou when computing relativity correction | ||
* Fix bug in timeconvert app breaking after year 2038 | ||
* Fix incorrect interval in output header from RinEdit if thinning option is used. | ||
* Fix memory leak during OrbElmStore deallocation. | ||
|
||
Removed Code due to Deprecation | ||
------------------------------- | ||
NEWS.md |
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 |
---|---|---|
@@ -1,3 +1,32 @@ | ||
gpstk (4.0.0-1) stable; urgency=low | ||
|
||
* Updated to version 4.0.0 | ||
* Modify RPM packages to seperate python installation from C++ | ||
apps/libs. | ||
* Fix slight errors in svXvt velocity computation. | ||
* Update svXvt to set Xvt.health when available. | ||
* Fix BrcKeplerOrbit to use relativity correction and initial URE | ||
value of 0. | ||
* Fix AlmOrbit to add missing final value of G. | ||
* Fix BDSEphemeris to use GEO equations only above 7 degrees. | ||
* Change OrbitEph to use CGCS2000 ellipsoid for BeiDou when computing | ||
relativity correction | ||
* Fix misleading comment on CommonTime.m_day | ||
* Fix test failures observed running on Debian 10. | ||
* Add CI checks to ensure continued compatibility with Debian 7. | ||
* Update SVNumXRef to move PRN 18 from SVN 34 to SVN 75 | ||
* Remove deprecated dynamic exception specifications. | ||
* Add string conversions to-from SatID.SatelliteSystem | ||
* Updated call signatures in OrbElemRinex to support downstream | ||
callers. | ||
* Update CMAKE to optimize at level O3 on linux by default. | ||
* Fix bug in timeconvert app breaking after year 2038 | ||
* Fix incorrect interval in output header from RinEdit if thinning | ||
option is used. | ||
* Fix memory leak during OrbElmStore deallocation. | ||
|
||
-- Andrew Kuck <[email protected]> Mon, 30 Mar 2020 15:06:22 -0500 | ||
|
||
gpstk (3.1.0-1) stable; urgency=low | ||
|
||
* Updated to version 3.1.0 | ||
|
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
File renamed without changes.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
%define name gpstk | ||
%define version 3.1.0 | ||
%define release 2 | ||
%define version 4.0.0 | ||
%define release 1 | ||
|
||
Summary: GPS Toolkit | ||
Name: %{name} | ||
|
@@ -54,6 +54,26 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Mon Mar 30 2020 Andrew Kuck <[email protected]> | ||
- Updated for v4.0.0 release | ||
- Update CMAKE to optimize at level O3 on linux by default. | ||
- Updated call signatures in OrbElemRinex to support downstream callers. | ||
- Add string conversions to-from SatID.SatelliteSystem | ||
- Remove deprecated dynamic exception specifications. | ||
- Update SVNumXRef to move PRN 18 from SVN 34 to SVN 75 | ||
- Add CI checks to ensure continued compatibility with Debian 7. | ||
- Fix test failures observed running on Debian 10. | ||
- Fix misleading comment on CommonTime.m_day | ||
- Change OrbitEph to use CGCS2000 ellipsoid for BeiDou when computing relativity correction | ||
- Fix BDSEphemeris to use GEO equations only above 7 degrees. | ||
- Fix AlmOrbit to add missing final value of G. | ||
- Fix BrcKeplerOrbit to use relativity correction and initial URE value of 0. | ||
- Update svXvt to set Xvt.health when available. | ||
- Fix slight errors in svXvt velocity computation. | ||
- Modify RPM packages to seperate python installation from C++ apps/libs. | ||
- Fix bug in timeconvert app breaking after year 2038 | ||
- Fix incorrect interval in output header from RinEdit if thinning option is used. | ||
- Fix memory leak during OrbElmStore deallocation. | ||
* Tue Mar 03 2020 Andrew Kuck <[email protected]> | ||
- Split single RPM into core and python packages for v3.1.0 release 2 | ||
* Tue Mar 03 2020 Andrew Kuck <[email protected]> | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
%define name python-gpstk | ||
%define version 3.1.0 | ||
%define release 2 | ||
%define version 4.0.0 | ||
%define release 1 | ||
|
||
Summary: GPS Toolkit | ||
Name: %{name} | ||
|
@@ -61,6 +61,8 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Mon Mar 30 2020 Andrew Kuck <[email protected]> | ||
- Updated for v4.0.0 release | ||
* Tue Mar 03 2020 Andrew Kuck <[email protected]> | ||
- Split single RPM into core and python packages for v3.1.0 release 2 | ||
* Tue Mar 03 2020 Andrew Kuck <[email protected]> | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
%define name python3-gpstk | ||
%define version 3.1.0 | ||
%define release 2 | ||
%define version 4.0.0 | ||
%define release 1 | ||
|
||
Summary: GPS Toolkit | ||
Name: %{name} | ||
|
@@ -60,6 +60,8 @@ rm -rf $RPM_BUILD_ROOT | |
|
||
|
||
%changelog | ||
* Mon Mar 30 2020 Andrew Kuck <[email protected]> | ||
- Updated for v4.0.0 release | ||
* Tue Mar 03 2020 Andrew Kuck <[email protected]> | ||
- Split single RPM into core and python packages for v3.1.0 release 2 | ||
* Tue Mar 03 2020 Andrew Kuck <[email protected]> | ||
|
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