1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-12-15 04:48:07 +00:00

Process and apply Galileo HAS corrections to the PVT solution

Add getters to Galileo_HAS_data class, improve implementation of existing ones
Process reception of HAS messages and inject corrections to RTKLIB
Apply HAS corrections to PVT computation within RTKLIB
Add configuration parameter PVT.use_has_corrections=true/false, true by default, to deactivate application of corrections but still retrieve HAS messages
Add configuration parameter PVT.use_unhealthy_sats=true/false, false by default, to use observables from satellites flagged as unhealthy
Use an unordered_map for signals and frequencies
This commit is contained in:
Carles Fernandez
2023-02-28 13:08:53 +01:00
parent 0d60e46390
commit 0a11f1470a
24 changed files with 1929 additions and 840 deletions

View File

@@ -92,6 +92,8 @@ public:
bool dump_mat = true;
bool log_source_timetag;
bool use_e6_for_pvt = true;
bool use_has_corrections = true;
bool use_unhealthy_sats = false;
};