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
Commits
fe4765c9
Commit
fe4765c9
authored
5 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Patches
Plain Diff
added params in TDCP
parent
9da6d63f
Branches
master
No related tags found
2 merge requests
!20
new tag
,
!19
new tag
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/gnss_utils/TDCP.h
+2
-0
2 additions, 0 deletions
include/gnss_utils/TDCP.h
src/TDCP.cpp
+1
-1
1 addition, 1 deletion
src/TDCP.cpp
with
3 additions
and
1 deletion
include/gnss_utils/TDCP.h
+
2
−
0
View file @
fe4765c9
...
@@ -24,6 +24,7 @@ namespace GNSSUtils
...
@@ -24,6 +24,7 @@ namespace GNSSUtils
double
raim_min_residual
;
double
raim_min_residual
;
bool
use_carrier_phase
;
bool
use_carrier_phase
;
bool
correct_tropo
;
bool
correct_tropo
;
bool
correct_iono
;
bool
relinearize_jacobian
;
bool
relinearize_jacobian
;
int
max_iterations
;
int
max_iterations
;
double
sigma_atm
;
double
sigma_atm
;
...
@@ -31,6 +32,7 @@ namespace GNSSUtils
...
@@ -31,6 +32,7 @@ namespace GNSSUtils
double
sigma_carrier
;
double
sigma_carrier
;
bool
use_old_nav
;
bool
use_old_nav
;
bool
use_multi_freq
;
bool
use_multi_freq
;
double
time_window
;
};
};
bool
TDCP
(
const
Observations
&
obs_r
,
Navigation
&
nav_r
,
bool
TDCP
(
const
Observations
&
obs_r
,
Navigation
&
nav_r
,
...
...
This diff is collapsed.
Click to expand it.
src/TDCP.cpp
+
1
−
1
View file @
fe4765c9
...
@@ -199,7 +199,7 @@ bool TDCP(const Observations& common_obs_r, const Navigation& nav_r, const std::
...
@@ -199,7 +199,7 @@ bool TDCP(const Observations& common_obs_r, const Navigation& nav_r, const std::
if
(
!
sd_params
.
relinearize_jacobian
)
if
(
!
sd_params
.
relinearize_jacobian
)
{
{
// Unit vectors from rece
r
ivers to satellites
// Unit vectors from receivers to satellites
Eigen
::
Vector3d
u_k
=
(
s_k
.
col
(
row
)
-
x_r
-
d
.
head
(
3
)).
normalized
();
Eigen
::
Vector3d
u_k
=
(
s_k
.
col
(
row
)
-
x_r
-
d
.
head
(
3
)).
normalized
();
// Fill Jacobian matrix
// Fill Jacobian matrix
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment