34 #ifndef GNSS_SDR_RTKLIB_SOLVER_H 35 #define GNSS_SDR_RTKLIB_SOLVER_H 86 const std::string& dump_filename,
88 bool flag_dump_to_file,
89 bool flag_dump_to_mat);
93 bool get_PVT(
const std::map<int, Gnss_Synchro>& gnss_observables_map,
double kf_update_interval_s);
95 double get_hdop()
const override;
96 double get_vdop()
const override;
97 double get_pdop()
const override;
98 double get_gdop()
const override;
101 void update_has_corrections(
const std::map<int, Gnss_Synchro>& obs_map);
104 std::array<ssat_t, MAXSAT> pvt_ssat{};
114 std::map<int, Galileo_Almanac> galileo_almanac_map;
118 std::map<int, Gps_Almanac> gps_almanac_map;
128 std::map<int, Beidou_Dnav_Almanac> beidou_dnav_almanac_map;
131 bool save_matfile()
const;
133 void check_has_orbit_clock_validity(
const std::map<int, Gnss_Synchro>& obs_map);
134 void get_has_biases(
const std::map<int, Gnss_Synchro>& obs_map);
135 void get_current_has_obs_correction(
const std::string& signal, uint32_t tow_obs,
int prn);
137 std::array<obsd_t, MAXOBS> d_obs_data{};
138 std::array<double, 4> d_dop{};
139 std::map<int, int> d_rtklib_freq_index;
140 std::map<std::string, int> d_rtklib_band_index;
142 std::map<std::string, std::map<int, HAS_orbit_corrections>> d_has_orbit_corrections_store_map;
143 std::map<std::string, std::map<int, HAS_clock_corrections>> d_has_clock_corrections_store_map;
145 std::map<std::string, std::map<int, std::pair<float, uint32_t>>> d_has_code_bias_store_map;
146 std::map<std::string, std::map<int, std::pair<float, uint32_t>>> d_has_phase_bias_store_map;
148 std::map<std::string, std::map<int, HAS_obs_corrections>> d_has_obs_corr_map;
150 std::string d_dump_filename;
151 std::ofstream d_dump_file;
157 uint32_t d_type_of_rx;
158 bool d_flag_dump_enabled;
159 bool d_flag_dump_mat_enabled;
165 #endif // GNSS_SDR_RTKLIB_SOLVER_H This class is a storage for the GPS IONOSPHERIC data as described in IS-GPS-200M. ...
Interface of a GLONASS EPHEMERIS storage.
This class is a storage for the BeiDou DNAV UTC Model.
Interface of a GLONASS GNAV UTC MODEL storage.
Kalman Filter for Position and Velocity.
Interface of a GLONASS GNAV ALMANAC storage.
Interface of a BeiDou UTC MODEL storage.
Interface of a GPS CNAV UTC MODEL storage.
Interface of a Beidou DNAV Almanac storage.
This class is a storage for the BEIDOU IONOSPHERIC data as described in ICD v2.1. ...
Glonass_Gnav_Almanac glonass_gnav_almanac
Map storing GLONASS GNAV Almanac Model.
This class is a storage for Galileo HAS message type 1, as defined in Galileo High Accuracy Service S...
Interface of a GPS UTC MODEL storage.
Interface of a BEIDOU EPHEMERIS storage.
Class that contains all the configuration parameters for the PVT block.
Interface of a Galileo ALMANAC storage.
This class contains parameters and outputs of the PVT block.
This class implements a PVT solution based on RTKLIB.
Interface of a GPS ALMANAC storage.
main header file for the rtklib library
This class is a storage for the GPS UTC MODEL data as described in in IS-GPS-200M.
std::map< int, Gps_CNAV_Ephemeris > gps_cnav_ephemeris_map
Map storing new GPS_CNAV_Ephemeris.
GNSS-SDR to RTKLIB data structures conversion functions.
Glonass_Gnav_Utc_Model glonass_gnav_utc_model
Map storing GLONASS GNAV UTC Model.
This class is a storage for the GALILEO IONOSPHERIC data as described in Galileo ICD paragraph 5...
Interface of a Galileo UTC MODEL storage.
Interface of a GPS EPHEMERIS storage.
std::map< int, Galileo_Ephemeris > galileo_ephemeris_map
Map storing new Galileo_Ephemeris.
Interface of a GPS CNAV IONOSPHERIC MODEL storage.
This class is a storage for the GLONASS GNAV UTC MODEL data as described in GLONASS ICD (Edition 5...
This class is a storage for the GPS UTC MODEL data as described in IS-GPS-200M.
Interface of a BEIDOU IONOSPHERIC MODEL storage.
Interface of the Monitor_Pvt class.
This class is a storage for the GLONASS SV ALMANAC data as described GLONASS ICD (Edition 5...
Kalman Filter for Position and Velocity.
This class is a storage for the GALILEO UTC MODEL data as described in Galileo ICD https://www...
Interface of a GPS CNAV EPHEMERIS storage.
Interface of a Galileo Ionospheric Model storage.
This class is a storage for the GPS IONOSPHERIC data as described in IS-GPS-200M. ...
std::map< int, Beidou_Dnav_Ephemeris > beidou_dnav_ephemeris_map
Map storing new BeiDou DNAV Ephmeris.
std::map< int, Glonass_Gnav_Ephemeris > glonass_gnav_ephemeris_map
Map storing new GLONASS GNAV Ephemeris.
Interface of a GPS IONOSPHERIC MODEL storage.
Interface of a Galileo EPHEMERIS storage.
Class for Galileo HAS message type 1 data storage.
std::map< int, Gps_Ephemeris > gps_ephemeris_map
Map storing new GPS_Ephemeris.
Base class for a PVT solution.
Interface of a base class for a PVT solution.
Interface of the Gnss_Synchro class.