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
!14
Range class
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Range class
pseudorange_class
into
devel
Overview
0
Commits
1
Pipelines
0
Changes
8
Merged
Joan Vallvé Navarro
requested to merge
pseudorange_class
into
devel
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
8
Expand
0
0
Merge request reports
Compare
devel
devel (base)
and
latest version
latest version
174a690f
1 commit,
4 years ago
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)
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