aboutsummaryrefslogtreecommitdiff
path: root/astro/gpstk
diff options
context:
space:
mode:
authorBruce M Simpson <bms@FreeBSD.org>2007-09-05 07:19:37 +0000
committerBruce M Simpson <bms@FreeBSD.org>2007-09-05 07:19:37 +0000
commit40fafa200628a37ff38563e48f4d80dc5310369b (patch)
tree89ed7e06078c7b1a83d041316b67b6381c71b3eb /astro/gpstk
parent08fae1a618f90d842b345ebbf031f32eee73607a (diff)
downloadports-40fafa200628a37ff38563e48f4d80dc5310369b.tar.gz
ports-40fafa200628a37ff38563e48f4d80dc5310369b.zip
Notes
Diffstat (limited to 'astro/gpstk')
-rw-r--r--astro/gpstk/files/patch-apps-ionosphere-VTECMap.hpp18
-rw-r--r--astro/gpstk/files/patch-src-EpochClockModel.hpp20
-rw-r--r--astro/gpstk/files/patch-src-MatrixImplementation.hpp24
3 files changed, 0 insertions, 62 deletions
diff --git a/astro/gpstk/files/patch-apps-ionosphere-VTECMap.hpp b/astro/gpstk/files/patch-apps-ionosphere-VTECMap.hpp
deleted file mode 100644
index 625622c89655..000000000000
--- a/astro/gpstk/files/patch-apps-ionosphere-VTECMap.hpp
+++ /dev/null
@@ -1,18 +0,0 @@
---- apps/ionosphere/VTECMap.hpp.orig Thu Jan 11 21:38:35 2007
-+++ apps/ionosphere/VTECMap.hpp Thu Jan 11 21:38:51 2007
-@@ -193,13 +193,13 @@
- /// Compute the obliquity at a given elevation
- /// @param el elevation in degrees
- /// @return obliquity factor
-- double VTECMap::Obliquity(double el);
-+ double Obliquity(double el);
-
- protected:
- /// Allocate the grid array and fill it.
- /// @param refStation reference station
- /// @param factor : 1 for VTEC maps, 2 for MUF maps
-- void VTECMap::reallyMakeGrid(Station& refStation, int factor)
-+ void reallyMakeGrid(Station& refStation, int factor)
- throw(Exception);
-
- /// Compute one grid value, using all the data. Called by ComputeMap.
diff --git a/astro/gpstk/files/patch-src-EpochClockModel.hpp b/astro/gpstk/files/patch-src-EpochClockModel.hpp
deleted file mode 100644
index 714308057750..000000000000
--- a/astro/gpstk/files/patch-src-EpochClockModel.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/EpochClockModel.hpp.orig Thu Jan 11 21:39:06 2007
-+++ src/EpochClockModel.hpp Thu Jan 11 21:39:26 2007
-@@ -67,7 +67,7 @@
- PRNMode mode = ALWAYS)
- :ObsClockModel(sigma, elmask, mode){}
-
-- virtual double EpochClockModel::getOffset(const gpstk::DayTime& t) const
-+ virtual double getOffset(const gpstk::DayTime& t) const
- throw(gpstk::InvalidArgumentException)
- {
- if (t!=time)
-@@ -92,7 +92,7 @@
-
- // An unchecked accessor for programs that don't need the generic
- // interface
-- double EpochClockModel::getOffset() const
-+ double getOffset() const
- throw() {return clkc;};
-
- bool isOffsetValid() const
diff --git a/astro/gpstk/files/patch-src-MatrixImplementation.hpp b/astro/gpstk/files/patch-src-MatrixImplementation.hpp
deleted file mode 100644
index 27cda0b1d923..000000000000
--- a/astro/gpstk/files/patch-src-MatrixImplementation.hpp
+++ /dev/null
@@ -1,24 +0,0 @@
---- src/MatrixImplementation.hpp.orig Thu Jan 11 21:31:51 2007
-+++ src/MatrixImplementation.hpp Thu Jan 11 21:33:18 2007
-@@ -37,18 +37,18 @@
- //@{
-
- template <class T>
-- Matrix<T>::Matrix<T>()
-+ Matrix<T>::Matrix()
- : v((size_t)0), r(0), c(0), s(0)
- {}
-
-
- template <class T>
-- Matrix<T>::Matrix<T>(size_t rows, size_t cols)
-+ Matrix<T>::Matrix(size_t rows, size_t cols)
- : v(rows * cols), r(rows), c(cols), s(rows * cols)
- {}
-
- template <class T>
-- Matrix<T>::Matrix<T>(size_t rows, size_t cols,
-+ Matrix<T>::Matrix(size_t rows, size_t cols,
- T initialValue)
- : v(rows * cols, initialValue), r(rows), c(cols), s(rows * cols)
- {}