Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gnss_utils
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
labrobotica
algorithms
gnss_utils
Merge requests
!20
new tag
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
new tag
devel
into
main
Overview
0
Commits
280
Pipelines
1
Changes
8
Merged
Joan Vallvé Navarro
requested to merge
devel
into
main
3 years ago
Overview
0
Commits
280
Pipelines
1
Changes
8
Expand
0
0
Merge request reports
Viewing commit
174a690f
Prev
Next
Show latest version
8 files
+
284
−
216
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
174a690f
range class and other changes. working
· 174a690f
Joan Vallvé Navarro
authored
5 years ago
include/gnss_utils/gnss_utils.h
+
4
−
15
Options
@@ -27,20 +27,6 @@ namespace GnssUtils
{
// Structs
struct
PseudoRange
{
int
sat
=
0
;
double
p
=
-
1
;
double
prange_var
=
1
;
double
prange
=
-
1
;
double
iono_corr
=
0
;
double
tropo_corr
=
0
;
double
sat_clock_corr
=
0
;
double
L
=
-
1
;
double
carrier_range
=
-
1
;
double
carrier_range_var
=
1
;
};
struct
ComputePosOutput
{
time_t
time
;
@@ -114,6 +100,7 @@ struct TdcpOptions
bool
enabled
;
// TDCP enabled
bool
corr_iono
;
// apply correction also in TDCP
bool
corr_tropo
;
// apply correction also in TDCP
bool
corr_clock
;
bool
loss_function
;
// apply loss function in TDCP factors
double
sigma_atm
;
double
sigma_carrier
;
@@ -179,10 +166,12 @@ class Observations;
class
Navigation
;
class
Snapshot
;
struct
Satellite
;
class
Range
;
// Typedefs
typedef
std
::
map
<
int
,
Satellite
>
Satellites
;
typedef
std
::
map
<
int
,
PseudoRange
>
PseudoRanges
;
typedef
std
::
map
<
int
,
Range
>
Ranges
;
typedef
std
::
map
<
int
,
Eigen
::
Vector2d
>
Azels
;
// pointer typedefs
typedef
std
::
shared_ptr
<
Observations
>
ObservationsPtr
;
Loading