#include <ComputePC.hpp>
Inheritance diagram for ComputePC:


This class is meant to be used with the GNSS data structures objects found in "DataStructures" class.
A typical way to use this class follows:
RinexObsStream rin("ebre0300.02o"); gnssRinex gRin; ComputePC getPC; while(rin >> gRin) { gRin >> getPC; }
The "ComputePC" object will visit every satellite in the GNSS data structure that is "gRin" and will try to compute its PC combination.
When used with the ">>" operator, this class returns the same incoming data structure with the PC inserted along their corresponding satellites. Be warned that if a given satellite does not have the observations required, it will be summarily deleted from the data structure.
Sometimes, the Rinex observations file does not have P1, but provides C1 instead. In such cases, you must use the useC1() method.
All observations are in meters.
Definition at line 86 of file ComputePC.hpp.
Public Member Functions | |
| ComputePC () | |
| Default constructor. | |
| virtual satTypeValueMap & | Process (satTypeValueMap &gData) throw (ProcessingException) |
| Returns a satTypeValueMap object, adding the new data generated when calling this object. | |
| virtual ComputePC & | useC1 (void) |
| Some Rinex data files provide C1 instead of P1. | |
| virtual int | getIndex (void) const |
| Returns an index identifying this object. | |
| virtual std::string | getClassName (void) const |
| Returns a string identifying this object. | |
| virtual | ~ComputePC () |
| Destructor. | |
Protected Member Functions | |
| virtual double | getCombination (const double &obs1, const double &obs2) |
| Compute the combination of observables. | |
|
|
Default constructor.
Definition at line 52 of file ComputePC.cpp. |
|
|
Destructor.
Definition at line 119 of file ComputePC.hpp. |
|
|
Returns a string identifying this object.
Reimplemented from ComputeCombination. Definition at line 47 of file ComputePC.cpp. |
|
||||||||||||
|
Compute the combination of observables.
Implements ComputeCombination. Definition at line 126 of file ComputePC.hpp. References gpstk::GAMMA_GPS. |
|
|
Returns an index identifying this object.
Reimplemented from ComputeCombination. Definition at line 42 of file ComputePC.cpp. |
|
|
Returns a satTypeValueMap object, adding the new data generated when calling this object.
Reimplemented from ComputeCombination. Definition at line 99 of file ComputePC.hpp. |
|
|
Some Rinex data files provide C1 instead of P1. Use this method in those cases. Definition at line 106 of file ComputePC.hpp. |
1.3.9.1