View | Details | Raw Unified | Return to bug 134621
Collapse All | Expand All

(-)astro/gpstk/Makefile (-20 / +35 lines)
Lines 5-35 Link Here
5
# $FreeBSD: ports/astro/gpstk/Makefile,v 1.10 2009/04/21 08:26:44 bms Exp $
5
# $FreeBSD: ports/astro/gpstk/Makefile,v 1.10 2009/04/21 08:26:44 bms Exp $
6
#
6
#
7
7
8
PORTNAME=		gpstk
8
PORTNAME=	gpstk
9
PORTVERSION=		1.3
9
PORTVERSION=	1.5
10
CATEGORIES=		astro devel
10
CATEGORIES=	astro devel
11
MASTER_SITES=		SF
11
MASTER_SITES=	SF
12
DISTNAME=		${PORTNAME}${PORTVERSION}.src
12
DISTNAME=	${PORTNAME}${PORTVERSION}.src
13
13
14
MAINTAINER=		ports@FreeBSD.org
14
MAINTAINER=	ports@FreeBSD.org
15
COMMENT=		Toolkit for developing GPS applications
15
COMMENT=	Toolkit for developing GPS applications
16
16
17
BUILD_DEPENDS=		${LOCALBASE}/bin/jam:${PORTSDIR}/devel/jam
17
BUILD_DEPENDS=	${LOCALBASE}/bin/jam:${PORTSDIR}/devel/jam
18
18
19
USE_LDCONFIG=		yes
19
WRKSRC=		${WRKDIR}/${PORTNAME}${PORTVERSION}
20
20
21
WRKSRC=			${WRKDIR}/${PORTNAME}
21
USE_PYTHON_RUN=	yes
22
JAM=			${LOCALBASE}/bin/jam
22
USE_LDCONFIG=	yes
23
JAM_ENV=		BINDIR=${PREFIX}/bin \
23
24
			INCDIR=${PREFIX}/include/$(PORTNAME) \
24
JAM=		${LOCALBASE}/bin/jam
25
			LIBDIR=${PREFIX}/lib \
25
JAM_ENV=	BINDIR="${PREFIX}/bin" \
26
			CC=${CC} C++=${CXX}
26
		INCDIR="${PREFIX}/include/$(PORTNAME)" \
27
		LIBDIR="${PREFIX}/lib" \
28
		CC="${CC}" CCFLAGS="${CFLAGS}" \
29
		C++="${CXX}" C++FLAGS="${CXXFLAGS}" \
30
		OPTIM=""
31
32
post-patch:
33
	@${REINPLACE_CMD} -e \
34
		's|python2.5|python|g' ${WRKSRC}/apps/reszilla/ordPlot
27
35
28
do-build:
36
do-build:
29
	cd ${WRKSRC} && ${SETENV} ${JAM_ENV} ${JAM}
37
	cd ${WRKSRC} && ${SETENV} ${JAM_ENV} ${JAM}
30
38
31
do-install:
39
do-install:
32
	${MKDIR} ${PREFIX}/include/${PORTNAME}
40
	@${MKDIR} ${PREFIX}/include/${PORTNAME}
33
	cd ${WRKSRC} && ${SETENV} ${JAM_ENV} ${JAM} install
41
	cd ${WRKSRC} && ${SETENV} ${JAM_ENV} ${JAM} install
42
.for shlib in geomatics gpstk procframe rxio vplot
43
	@${LN} -sf lib${shlib}.so.15 ${PREFIX}/lib/lib${shlib}.so
44
.endfor
45
	@${STRIP_CMD} `${CAT} ${PLIST} | \
46
 		 ${GREP} '^bin/' | \
47
		 ${GREP} -E -v 'ddPlot$$|mdpscreen$$|ordPlot$$' | \
48
		 ${SED} 's:^bin/:${PREFIX}/bin/:g'`
34
49
35
.include <bsd.port.mk>
50
.include <bsd.port.mk>
(-)astro/gpstk/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (gpstk1.3.src.tar.gz) = 6354aef8bd3f0504f238538c4c475404
1
MD5 (gpstk1.5.src.tar.gz) = 098dd76b484599366506d7504fe5996a
2
SHA256 (gpstk1.3.src.tar.gz) = 02cd171e74722eafeb44d99e877378c2dbbba6ba1847038fb92c589003f16412
2
SHA256 (gpstk1.5.src.tar.gz) = 2bc699d9eb8d9774fa6a635e0f75da2f38c00e1b700974fe9197b8ba7c867277
3
SIZE (gpstk1.3.src.tar.gz) = 6922759
3
SIZE (gpstk1.5.src.tar.gz) = 7050592
(-)astro/gpstk/files/patch-Jamrules (-19 / +19 lines)
Lines 1-15 Link Here
1
--- Jamrules.orig	Wed Jan 19 19:36:30 2005
1
--- Jamrules.orig	2008-03-12 00:48:21.000000000 +0900
2
+++ Jamrules	Sun Nov  5 09:33:26 2006
2
+++ Jamrules	2009-05-08 23:57:05.000000000 +0900
3
@@ -9,7 +9,7 @@
3
@@ -33,6 +33,10 @@
4
 KEEPOBJS = true ;
5
 
6
 # where to install the .hpp files
7
-INCDIR = /usr/local/include ;
8
+#INCDIR = /usr/local/include ;
9
 
10
 # override the built-in EXEMODE
11
 EXEMODE = 755 ;
12
@@ -30,6 +30,10 @@
13
       case CYGWIN :
4
       case CYGWIN :
14
          LINKLIBS += -lstdc++ ;
5
          LINKLIBS += -lstdc++ ;
15
 
6
 
Lines 20-31 Link Here
20
       case LINUX :
11
       case LINUX :
21
          LINKLIBS += -lstdc++ ;
12
          LINKLIBS += -lstdc++ ;
22
          CCSHARE_FLAGS = -fPIC ;
13
          CCSHARE_FLAGS = -fPIC ;
23
@@ -81,7 +85,7 @@
14
@@ -115,7 +119,7 @@
24
 # fix does this need to be forward/backslash independent? darn windows.
15
 # compiler specific stuff - this is probably actually pretty clumsy
25
    BINDIR = [ FDirName $(PREFIX) bin ] ;
16
 if ( $(CC) != gcc )
26
    LIBDIR = [ FDirName $(PREFIX) lib ] ;
17
 {
27
-   INCDIR = [ FDirName $(PREFIX) include ] ;
18
-   NEED_GETOPT = true ;
28
+   INCDIR = [ FDirName $(PREFIX) include gpstk ] ;
19
+   #NEED_GETOPT = true ;
29
 }
20
 }
30
 
21
 
31
 # debug - edit this as needed.
22
 if $(PREFIX)
23
@@ -215,7 +219,7 @@
24
    if $(UNIX) && $(OS) != CYGWIN && $(OS) != MACOSX
25
    {
26
       soname = $(LIBPREFIX)$(<:S=$(SUFLIBSHR)).$(GPSTK_SO_VERSION) ;
27
-      shlib = $(LIBPREFIX)$(<:S=$(SUFLIBSHR).$(GPSTK_SO_VERSION).0) ;
28
+      shlib = $(LIBPREFIX)$(<:S=$(SUFLIBSHR)).$(GPSTK_SO_VERSION) ;
29
       shrobjs = $(>:S=$(SUFOBJ2)) ;
30
       ObjectCcFlags $(shrobjs) : $(CCSHARE_FLAGS) ;
31
       ObjectC++Flags $(shrobjs) : $(CCSHARE_FLAGS) ;
(-)astro/gpstk/pkg-plist (-75 / +166 lines)
Lines 1-60 Link Here
1
lib/libgpstk.a
1
bin/DDBase
2
lib/libgpstk.so
2
bin/DiscFix
3
lib/librxio.a
3
bin/EditRinex
4
lib/librxio.so
4
bin/IonoBias
5
bin/NavMerge
6
bin/PRSolve
7
bin/ResCor
8
bin/RinSum
9
bin/RinexDump
10
bin/TECMaps
11
bin/ash2mdp
12
bin/ash2xyz
13
bin/ats2mdp
14
bin/bc2sp3
15
bin/calgps
16
bin/compSatVis
17
bin/compStaVis
18
bin/daa
19
bin/ddGen
20
bin/ddPlot
21
bin/ddmerge
22
bin/ephdiff
23
bin/fic2rin
24
bin/ficacheck
25
bin/ficafic
26
bin/ficcheck
27
bin/ficdiff
28
bin/ficfica
29
bin/findMoreThan12
30
bin/mdp2rinex
31
bin/mdpEdit
32
bin/mdpscreen
33
bin/mdpscreenx
34
bin/mdptool
35
bin/mergeFIC
36
bin/mergeRinMet
37
bin/mergeRinNav
38
bin/mergeRinObs
39
bin/mergeSRI
40
bin/mpsolve
41
bin/navdmp
42
bin/navsum
43
bin/novaRinex
44
bin/ordClock
45
bin/ordEdit
46
bin/ordGen
47
bin/ordLinEst
48
bin/ordPlot
49
bin/ordStats
50
bin/posInterp
51
bin/poscvt
52
bin/rfw
53
bin/rinexpvt
54
bin/rinexthin
55
bin/rmwcheck
56
bin/rmwdiff
57
bin/rnwcheck
58
bin/rnwdiff
59
bin/rowcheck
60
bin/rowdiff
61
bin/rstats
62
bin/sp3version
63
bin/svvis
64
bin/timeconvert
65
bin/vecsol
66
bin/wheresat
5
include/gpstk/ANSITime.hpp
67
include/gpstk/ANSITime.hpp
68
include/gpstk/ATSData.hpp
69
include/gpstk/ATSStream.hpp
6
include/gpstk/AlmOrbit.hpp
70
include/gpstk/AlmOrbit.hpp
7
include/gpstk/AlmanacStore.hpp
8
include/gpstk/AshtechALB.hpp
71
include/gpstk/AshtechALB.hpp
9
include/gpstk/AshtechData.hpp
72
include/gpstk/AshtechData.hpp
10
include/gpstk/AshtechEPB.hpp
73
include/gpstk/AshtechEPB.hpp
11
include/gpstk/AshtechMBEN.hpp
74
include/gpstk/AshtechMBEN.hpp
12
include/gpstk/AshtechPBEN.hpp
75
include/gpstk/AshtechPBEN.hpp
13
include/gpstk/AshtechStream.hpp
76
include/gpstk/AshtechStream.hpp
14
include/gpstk/BCEphemerisStore.hpp
77
include/gpstk/AstronomicalFunctions.hpp
78
include/gpstk/BLQDataReader.hpp
15
include/gpstk/Bancroft.hpp
79
include/gpstk/Bancroft.hpp
16
include/gpstk/BasicFramework.hpp
80
include/gpstk/BasicFramework.hpp
81
include/gpstk/BasicModel.hpp
82
include/gpstk/BasicShape.hpp
17
include/gpstk/BinUtils.hpp
83
include/gpstk/BinUtils.hpp
18
include/gpstk/BinexData.hpp
84
include/gpstk/BinexData.hpp
19
include/gpstk/BinexFilterOperators.hpp
85
include/gpstk/BinexFilterOperators.hpp
20
include/gpstk/BinexStream.hpp
86
include/gpstk/BinexStream.hpp
21
include/gpstk/BivarStats.hpp
87
include/gpstk/BivarStats.hpp
88
include/gpstk/BorderLayout.hpp
22
include/gpstk/CheckPRData.hpp
89
include/gpstk/CheckPRData.hpp
90
include/gpstk/Circle.hpp
23
include/gpstk/CivilTime.hpp
91
include/gpstk/CivilTime.hpp
24
include/gpstk/ClockModel.hpp
92
include/gpstk/ClockModel.hpp
25
include/gpstk/CodeBuffer.hpp
93
include/gpstk/CodeBuffer.hpp
26
include/gpstk/CodeSmoother.hpp
94
include/gpstk/CodeSmoother.hpp
95
include/gpstk/Color.hpp
27
include/gpstk/CommandOption.hpp
96
include/gpstk/CommandOption.hpp
28
include/gpstk/CommandOptionParser.hpp
97
include/gpstk/CommandOptionParser.hpp
29
include/gpstk/CommandOptionWithCommonTimeArg.hpp
98
include/gpstk/CommandOptionWithCommonTimeArg.hpp
30
include/gpstk/CommandOptionWithPositionArg.hpp
99
include/gpstk/CommandOptionWithPositionArg.hpp
31
include/gpstk/CommandOptionWithTimeArg.hpp
100
include/gpstk/CommandOptionWithTimeArg.hpp
101
include/gpstk/Comment.hpp
32
include/gpstk/CommonTime.hpp
102
include/gpstk/CommonTime.hpp
33
include/gpstk/ComputeCombination.hpp
103
include/gpstk/ComputeCombination.hpp
34
include/gpstk/ComputeIURAWeights.hpp
104
include/gpstk/ComputeIURAWeights.hpp
35
include/gpstk/ComputeLC.hpp
105
include/gpstk/ComputeLC.hpp
36
include/gpstk/ComputeLI.hpp
106
include/gpstk/ComputeLI.hpp
37
include/gpstk/ComputeLdelta.hpp
107
include/gpstk/ComputeLdelta.hpp
108
include/gpstk/ComputeLinear.hpp
38
include/gpstk/ComputeMOPSWeights.hpp
109
include/gpstk/ComputeMOPSWeights.hpp
39
include/gpstk/ComputeMelbourneWubbena.hpp
110
include/gpstk/ComputeMelbourneWubbena.hpp
40
include/gpstk/ComputePC.hpp
111
include/gpstk/ComputePC.hpp
41
include/gpstk/ComputePI.hpp
112
include/gpstk/ComputePI.hpp
42
include/gpstk/ComputePdelta.hpp
113
include/gpstk/ComputePdelta.hpp
114
include/gpstk/ComputeTropModel.hpp
115
include/gpstk/ComputeWindUp.hpp
116
include/gpstk/CorrectObservables.hpp
117
include/gpstk/DCinternals.hpp
118
include/gpstk/DDid.hpp
43
include/gpstk/DOP.hpp
119
include/gpstk/DOP.hpp
44
include/gpstk/DataHeaders.hpp
120
include/gpstk/DataHeaders.hpp
45
include/gpstk/DataStatus.hpp
121
include/gpstk/DataStatus.hpp
46
include/gpstk/DataStructures.hpp
122
include/gpstk/DataStructures.hpp
47
include/gpstk/DayTime.hpp
123
include/gpstk/DayTime.hpp
48
include/gpstk/DeltaOp.hpp
124
include/gpstk/DeltaOp.hpp
49
include/gpstk/DeviceStream.hpp
125
include/gpstk/DiscCorr.hpp
50
include/gpstk/ECEF.hpp
126
include/gpstk/ECEF.hpp
127
include/gpstk/ENUUtil.hpp
128
include/gpstk/EPSImage.hpp
129
include/gpstk/EarthOrientation.hpp
51
include/gpstk/EngAlmanac.hpp
130
include/gpstk/EngAlmanac.hpp
52
include/gpstk/EngEphemeris.hpp
131
include/gpstk/EngEphemeris.hpp
53
include/gpstk/EngNav.hpp
132
include/gpstk/EngNav.hpp
54
include/gpstk/EphReader.hpp
133
include/gpstk/EphReader.hpp
55
include/gpstk/EphemerisRange.hpp
134
include/gpstk/EphemerisRange.hpp
56
include/gpstk/EphemerisStore.hpp
57
include/gpstk/EpochClockModel.hpp
135
include/gpstk/EpochClockModel.hpp
136
include/gpstk/Equation.hpp
58
include/gpstk/Exception.hpp
137
include/gpstk/Exception.hpp
59
include/gpstk/Expression.hpp
138
include/gpstk/Expression.hpp
60
include/gpstk/ExtractC1.hpp
139
include/gpstk/ExtractC1.hpp
Lines 68-74 Link Here
68
include/gpstk/ExtractP1.hpp
147
include/gpstk/ExtractP1.hpp
69
include/gpstk/ExtractP2.hpp
148
include/gpstk/ExtractP2.hpp
70
include/gpstk/ExtractPC.hpp
149
include/gpstk/ExtractPC.hpp
71
include/gpstk/FDStreamBuff.hpp
72
include/gpstk/FFBinaryStream.hpp
150
include/gpstk/FFBinaryStream.hpp
73
include/gpstk/FFData.hpp
151
include/gpstk/FFData.hpp
74
include/gpstk/FFIdentifier.hpp
152
include/gpstk/FFIdentifier.hpp
Lines 93-98 Link Here
93
include/gpstk/FileSpec.hpp
171
include/gpstk/FileSpec.hpp
94
include/gpstk/FileStore.hpp
172
include/gpstk/FileStore.hpp
95
include/gpstk/FileUtils.hpp
173
include/gpstk/FileUtils.hpp
174
include/gpstk/Fillable.hpp
175
include/gpstk/Frame.hpp
176
include/gpstk/GDCconfiguration.hpp
177
include/gpstk/GPSAlmanacStore.hpp
178
include/gpstk/GPSEphemerisStore.hpp
96
include/gpstk/GPSEpochWeekSecond.hpp
179
include/gpstk/GPSEpochWeekSecond.hpp
97
include/gpstk/GPSGeoid.hpp
180
include/gpstk/GPSGeoid.hpp
98
include/gpstk/GPSWeekSecond.hpp
181
include/gpstk/GPSWeekSecond.hpp
Lines 100-124 Link Here
100
include/gpstk/GPSZcount.hpp
183
include/gpstk/GPSZcount.hpp
101
include/gpstk/GPSZcount29.hpp
184
include/gpstk/GPSZcount29.hpp
102
include/gpstk/GPSZcount32.hpp
185
include/gpstk/GPSZcount32.hpp
186
include/gpstk/GSatID.hpp
103
include/gpstk/GenXSequence.hpp
187
include/gpstk/GenXSequence.hpp
104
include/gpstk/Geodetic.hpp
188
include/gpstk/Geodetic.hpp
189
include/gpstk/GeodeticFrames.hpp
105
include/gpstk/GeoidModel.hpp
190
include/gpstk/GeoidModel.hpp
191
include/gpstk/GraphicsConstants.hpp
192
include/gpstk/GridLayout.hpp
193
include/gpstk/HLayout.hpp
194
include/gpstk/Helper.hpp
195
include/gpstk/InOutFramework.hpp
106
include/gpstk/IonoModel.hpp
196
include/gpstk/IonoModel.hpp
107
include/gpstk/IonoModelStore.hpp
197
include/gpstk/IonoModelStore.hpp
108
include/gpstk/JulianDate.hpp
198
include/gpstk/JulianDate.hpp
109
include/gpstk/LICSDetector.hpp
199
include/gpstk/LICSDetector.hpp
200
include/gpstk/Layout.hpp
201
include/gpstk/Line.hpp
110
include/gpstk/LinearClockModel.hpp
202
include/gpstk/LinearClockModel.hpp
203
include/gpstk/LinearCombinations.hpp
111
include/gpstk/LoopedFramework.hpp
204
include/gpstk/LoopedFramework.hpp
112
include/gpstk/MDPHeader.hpp
205
include/gpstk/MDPHeader.hpp
113
include/gpstk/MDPNavSubframe.hpp
206
include/gpstk/MDPNavSubframe.hpp
114
include/gpstk/MDPObsEpoch.hpp
207
include/gpstk/MDPObsEpoch.hpp
115
include/gpstk/MDPPVTSolution.hpp
208
include/gpstk/MDPPVTSolution.hpp
116
include/gpstk/MDPSelftestStatus.hpp
209
include/gpstk/MDPSelftestStatus.hpp
210
include/gpstk/MDPStream.hpp
117
include/gpstk/MJD.hpp
211
include/gpstk/MJD.hpp
118
include/gpstk/MOPSWeight.hpp
212
include/gpstk/MOPSWeight.hpp
213
include/gpstk/MSCBase.hpp
119
include/gpstk/MSCData.hpp
214
include/gpstk/MSCData.hpp
215
include/gpstk/MSCHeader.hpp
216
include/gpstk/MSCStore.hpp
120
include/gpstk/MSCStream.hpp
217
include/gpstk/MSCStream.hpp
121
include/gpstk/MWCSDetector.hpp
218
include/gpstk/MWCSDetector.hpp
219
include/gpstk/Markable.hpp
220
include/gpstk/Marker.hpp
122
include/gpstk/MathBase.hpp
221
include/gpstk/MathBase.hpp
123
include/gpstk/Matrix.hpp
222
include/gpstk/Matrix.hpp
124
include/gpstk/MatrixBase.hpp
223
include/gpstk/MatrixBase.hpp
Lines 128-137 Link Here
128
include/gpstk/MatrixOperators.hpp
227
include/gpstk/MatrixOperators.hpp
129
include/gpstk/MetReader.hpp
228
include/gpstk/MetReader.hpp
130
include/gpstk/MiscMath.hpp
229
include/gpstk/MiscMath.hpp
230
include/gpstk/ModelObs.hpp
231
include/gpstk/ModelObsFixedStation.hpp
131
include/gpstk/ModeledPR.hpp
232
include/gpstk/ModeledPR.hpp
132
include/gpstk/ModeledPseudorangeBase.hpp
233
include/gpstk/ModeledPseudorangeBase.hpp
133
include/gpstk/ModeledReferencePR.hpp
234
include/gpstk/ModeledReferencePR.hpp
235
include/gpstk/MoonPosition.hpp
236
include/gpstk/NEDUtil.hpp
134
include/gpstk/NablaOp.hpp
237
include/gpstk/NablaOp.hpp
238
include/gpstk/Namelist.hpp
239
include/gpstk/NovatelData.hpp
240
include/gpstk/NovatelStream.hpp
135
include/gpstk/ORDEpoch.hpp
241
include/gpstk/ORDEpoch.hpp
136
include/gpstk/ObsClockModel.hpp
242
include/gpstk/ObsClockModel.hpp
137
include/gpstk/ObsEpochMap.hpp
243
include/gpstk/ObsEpochMap.hpp
Lines 139-152 Link Here
139
include/gpstk/ObsReader.hpp
245
include/gpstk/ObsReader.hpp
140
include/gpstk/ObsRngDev.hpp
246
include/gpstk/ObsRngDev.hpp
141
include/gpstk/ObsUtils.hpp
247
include/gpstk/ObsUtils.hpp
248
include/gpstk/OceanLoading.hpp
142
include/gpstk/OneFreqCSDetector.hpp
249
include/gpstk/OneFreqCSDetector.hpp
143
include/gpstk/PCSmoother.hpp
250
include/gpstk/PCSmoother.hpp
144
include/gpstk/PCodeConst.hpp
251
include/gpstk/PCodeConst.hpp
145
include/gpstk/PRSolution.hpp
252
include/gpstk/PRSolution.hpp
253
include/gpstk/PSImage.hpp
254
include/gpstk/PSImageBase.hpp
255
include/gpstk/Path.hpp
256
include/gpstk/PhaseWindup.hpp
257
include/gpstk/PoleTides.hpp
146
include/gpstk/PolyFit.hpp
258
include/gpstk/PolyFit.hpp
259
include/gpstk/Polygon.hpp
147
include/gpstk/Position.hpp
260
include/gpstk/Position.hpp
261
include/gpstk/PreciseRange.hpp
262
include/gpstk/ProcessingClass.hpp
263
include/gpstk/ProcessingVector.hpp
148
include/gpstk/RACRotation.hpp
264
include/gpstk/RACRotation.hpp
149
include/gpstk/RTFileFrame.hpp
265
include/gpstk/RTFileFrame.hpp
266
include/gpstk/Rectangle.hpp
150
include/gpstk/RinexConverters.hpp
267
include/gpstk/RinexConverters.hpp
151
include/gpstk/RinexEphemerisStore.hpp
268
include/gpstk/RinexEphemerisStore.hpp
152
include/gpstk/RinexMetBase.hpp
269
include/gpstk/RinexMetBase.hpp
Lines 167-172 Link Here
167
include/gpstk/RinexObsStream.hpp
284
include/gpstk/RinexObsStream.hpp
168
include/gpstk/RinexSatID.hpp
285
include/gpstk/RinexSatID.hpp
169
include/gpstk/RinexUtilities.hpp
286
include/gpstk/RinexUtilities.hpp
287
include/gpstk/RobustStats.hpp
170
include/gpstk/RungeKutta4.hpp
288
include/gpstk/RungeKutta4.hpp
171
include/gpstk/SEMAlmanacStore.hpp
289
include/gpstk/SEMAlmanacStore.hpp
172
include/gpstk/SEMBase.hpp
290
include/gpstk/SEMBase.hpp
Lines 181-202 Link Here
181
include/gpstk/SP3Header.hpp
299
include/gpstk/SP3Header.hpp
182
include/gpstk/SP3SatID.hpp
300
include/gpstk/SP3SatID.hpp
183
include/gpstk/SP3Stream.hpp
301
include/gpstk/SP3Stream.hpp
302
include/gpstk/SRI.hpp
303
include/gpstk/SRIFilter.hpp
184
include/gpstk/SVExclusionList.hpp
304
include/gpstk/SVExclusionList.hpp
305
include/gpstk/SVGImage.hpp
306
include/gpstk/SVNumXRef.hpp
185
include/gpstk/SVPCodeGen.hpp
307
include/gpstk/SVPCodeGen.hpp
308
include/gpstk/SatDataReader.hpp
186
include/gpstk/SatID.hpp
309
include/gpstk/SatID.hpp
310
include/gpstk/SatPass.hpp
187
include/gpstk/SimpleFilter.hpp
311
include/gpstk/SimpleFilter.hpp
188
include/gpstk/SimpleIURAWeight.hpp
312
include/gpstk/SimpleIURAWeight.hpp
189
include/gpstk/SimpleKalmanFilter.hpp
313
include/gpstk/SimpleKalmanFilter.hpp
314
include/gpstk/SolidTides.hpp
190
include/gpstk/SolverBase.hpp
315
include/gpstk/SolverBase.hpp
191
include/gpstk/SolverLMS.hpp
316
include/gpstk/SolverLMS.hpp
192
include/gpstk/SolverWMS.hpp
317
include/gpstk/SolverWMS.hpp
193
include/gpstk/SourceID.hpp
318
include/gpstk/SourceID.hpp
194
include/gpstk/Stats.hpp
319
include/gpstk/Stats.hpp
320
include/gpstk/StochasticModel.hpp
195
include/gpstk/StringUtils.hpp
321
include/gpstk/StringUtils.hpp
322
include/gpstk/StrokeStyle.hpp
323
include/gpstk/SunPosition.hpp
196
include/gpstk/SystemTime.hpp
324
include/gpstk/SystemTime.hpp
197
include/gpstk/TCPStream.hpp
198
include/gpstk/TCPStreamBuff.hpp
199
include/gpstk/TabularEphemerisStore.hpp
325
include/gpstk/TabularEphemerisStore.hpp
326
include/gpstk/Text.hpp
327
include/gpstk/TextStyle.hpp
200
include/gpstk/TimeConstants.hpp
328
include/gpstk/TimeConstants.hpp
201
include/gpstk/TimeConverters.hpp
329
include/gpstk/TimeConverters.hpp
202
include/gpstk/TimeNamedFileStream.hpp
330
include/gpstk/TimeNamedFileStream.hpp
Lines 206-216 Link Here
206
include/gpstk/TropModel.hpp
334
include/gpstk/TropModel.hpp
207
include/gpstk/TypeID.hpp
335
include/gpstk/TypeID.hpp
208
include/gpstk/UnixTime.hpp
336
include/gpstk/UnixTime.hpp
337
include/gpstk/VGImage.hpp
338
include/gpstk/VLayout.hpp
339
include/gpstk/VPlotException.hpp
209
include/gpstk/ValidType.hpp
340
include/gpstk/ValidType.hpp
341
include/gpstk/Variable.hpp
210
include/gpstk/Vector.hpp
342
include/gpstk/Vector.hpp
211
include/gpstk/VectorBase.hpp
343
include/gpstk/VectorBase.hpp
212
include/gpstk/VectorBaseOperators.hpp
344
include/gpstk/VectorBaseOperators.hpp
213
include/gpstk/VectorOperators.hpp
345
include/gpstk/VectorOperators.hpp
346
include/gpstk/ViewerManager.hpp
214
include/gpstk/WGS84Geoid.hpp
347
include/gpstk/WGS84Geoid.hpp
215
include/gpstk/WeightBase.hpp
348
include/gpstk/WeightBase.hpp
216
include/gpstk/WxObsMap.hpp
349
include/gpstk/WxObsMap.hpp
Lines 219-224 Link Here
219
include/gpstk/XYZ2NED.hpp
352
include/gpstk/XYZ2NED.hpp
220
include/gpstk/XYZ2NEU.hpp
353
include/gpstk/XYZ2NEU.hpp
221
include/gpstk/Xvt.hpp
354
include/gpstk/Xvt.hpp
355
include/gpstk/XvtStore.hpp
222
include/gpstk/YDSTime.hpp
356
include/gpstk/YDSTime.hpp
223
include/gpstk/YumaAlmanacStore.hpp
357
include/gpstk/YumaAlmanacStore.hpp
224
include/gpstk/YumaBase.hpp
358
include/gpstk/YumaBase.hpp
Lines 226-300 Link Here
226
include/gpstk/YumaHeader.hpp
360
include/gpstk/YumaHeader.hpp
227
include/gpstk/YumaStream.hpp
361
include/gpstk/YumaStream.hpp
228
include/gpstk/convhelp.hpp
362
include/gpstk/convhelp.hpp
363
include/gpstk/format.hpp
229
include/gpstk/geometry.hpp
364
include/gpstk/geometry.hpp
230
include/gpstk/getopt.h
231
include/gpstk/gps_constants.hpp
365
include/gpstk/gps_constants.hpp
232
include/gpstk/gpstkplatform.h
366
include/gpstk/gpstkplatform.h
233
include/gpstk/icd_200_constants.hpp
367
include/gpstk/icd_200_constants.hpp
368
include/gpstk/index.hpp
234
include/gpstk/mergePCodeWords.h
369
include/gpstk/mergePCodeWords.h
370
include/gpstk/miscdefs.hpp
235
include/gpstk/miscenum.hpp
371
include/gpstk/miscenum.hpp
372
include/gpstk/random.hpp
373
include/gpstk/regex.h
236
include/gpstk/stl_helpers.hpp
374
include/gpstk/stl_helpers.hpp
375
include/gpstk/xregex2.h
376
lib/libgeomatics.a
377
lib/libgeomatics.so
378
lib/libgeomatics.so.15
379
lib/libgpstk.a
380
lib/libgpstk.so
381
lib/libgpstk.so.15
382
lib/libprocframe.a
383
lib/libprocframe.so
384
lib/libprocframe.so.15
385
lib/librxio.a
386
lib/librxio.so
387
lib/librxio.so.15
388
lib/libvplot.a
389
lib/libvplot.so
390
lib/libvplot.so.15
237
@dirrm include/gpstk
391
@dirrm include/gpstk
238
bin/DDBase
239
bin/DiscFix
240
bin/EditRinex
241
bin/IonoBias
242
bin/NavMerge
243
bin/PRSolve
244
bin/ResCor
245
bin/RinSum
246
bin/RinexDump
247
bin/TECMaps
248
bin/ash2mdp
249
bin/bc2sp3
250
bin/calgps
251
bin/daa
252
bin/ddGen
253
bin/ddPlot
254
bin/ddmerge
255
bin/ephdiff
256
bin/fic2rin
257
bin/ficacheck
258
bin/ficafic
259
bin/ficcheck
260
bin/ficdiff
261
bin/ficfica
262
bin/findMoreThan12
263
bin/mdp2rinex
264
bin/mdptool
265
bin/mergeFIC
266
bin/mergeRinMet
267
bin/mergeRinNav
268
bin/mergeRinObs
269
bin/mergeSRI
270
bin/mpsolve
271
bin/navdmp
272
bin/novaRinex
273
bin/ordClock
274
bin/ordEdit
275
bin/ordGen
276
bin/ordLinEst
277
bin/ordPlot
278
bin/ordStats
279
bin/posInterp
280
bin/poscvt
281
bin/rfw
282
bin/rinexpvt
283
bin/rinexthin
284
bin/rmwcheck
285
bin/rmwdiff
286
bin/rnwcheck
287
bin/rnwdiff
288
bin/rowcheck
289
bin/rowdiff
290
bin/rstats
291
bin/rtAshtech
292
bin/sp3version
293
bin/tcptest
294
bin/timeconvert
295
bin/tnl
296
bin/tsrif
297
bin/tsrifsu
298
bin/tsriftu
299
bin/vecsol
300
bin/wheresat

Return to bug 134621