Storage for single RINEX OBS data measurements.
Definition at line 55 of file RinexDatum.hpp.
#include <RinexDatum.hpp>
Public Member Functions | |
std::string | asString () const |
Turn this datum into a RINEX OBS formatted string. More... | |
void | fromString (const std::string &str) |
RinexDatum () | |
Initialize data to default values. More... | |
RinexDatum (const std::string &str) | |
Public Attributes | |
double | data |
The actual data point. More... | |
bool | dataBlank |
True if the data is blank in the file. More... | |
short | lli |
See the RINEX Spec. for an explanation. More... | |
bool | lliBlank |
True if the lli is blank in the file. More... | |
short | ssi |
See the RINEX Spec. for an explanation. More... | |
bool | ssiBlank |
True if the ssi is blank in the file. More... | |
gnsstk::RinexDatum::RinexDatum | ( | ) |
Initialize data to default values.
Definition at line 50 of file RinexDatum.cpp.
gnsstk::RinexDatum::RinexDatum | ( | const std::string & | str | ) |
Parse a RINEX OBS datum string into data members
[in] | str | a RINEX-formatted datum, must be 16 characters in length. |
AssertionFailure | if str.length() != 16 |
Definition at line 59 of file RinexDatum.cpp.
std::string gnsstk::RinexDatum::asString | ( | ) | const |
Turn this datum into a RINEX OBS formatted string.
Definition at line 107 of file RinexDatum.cpp.
void gnsstk::RinexDatum::fromString | ( | const std::string & | str | ) |
Parse a RINEX OBS datum string into data members
[in] | str | a RINEX-formatted datum, must be 16 characters in length. |
AssertionFailure | if str.length() != 16 |
Definition at line 66 of file RinexDatum.cpp.
double gnsstk::RinexDatum::data |
The actual data point.
Definition at line 76 of file RinexDatum.hpp.
bool gnsstk::RinexDatum::dataBlank |
True if the data is blank in the file.
Definition at line 77 of file RinexDatum.hpp.
short gnsstk::RinexDatum::lli |
See the RINEX Spec. for an explanation.
Definition at line 78 of file RinexDatum.hpp.
bool gnsstk::RinexDatum::lliBlank |
True if the lli is blank in the file.
Definition at line 79 of file RinexDatum.hpp.
short gnsstk::RinexDatum::ssi |
See the RINEX Spec. for an explanation.
Definition at line 80 of file RinexDatum.hpp.
bool gnsstk::RinexDatum::ssiBlank |
True if the ssi is blank in the file.
Definition at line 81 of file RinexDatum.hpp.