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
5aa076b2
Commit
5aa076b2
authored
4 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Patches
Plain Diff
duplicated param
parent
177a0806
No related branches found
No related tags found
3 merge requests
!20
new tag
,
!19
new tag
,
!17
Resolve "TDCP batch implementation"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/gnss_utils/tdcp.h
+0
-1
0 additions, 1 deletion
include/gnss_utils/tdcp.h
src/tdcp.cpp
+2
-2
2 additions, 2 deletions
src/tdcp.cpp
with
2 additions
and
3 deletions
include/gnss_utils/tdcp.h
+
0
−
1
View file @
5aa076b2
...
@@ -14,7 +14,6 @@ struct TdcpBatchParams
...
@@ -14,7 +14,6 @@ struct TdcpBatchParams
int
raim_n
;
int
raim_n
;
double
raim_min_residual
;
double
raim_min_residual
;
bool
relinearize_jacobian
;
bool
relinearize_jacobian
;
bool
old_nav
;
int
max_iterations
;
int
max_iterations
;
};
};
...
...
This diff is collapsed.
Click to expand it.
src/tdcp.cpp
+
2
−
2
View file @
5aa076b2
...
@@ -41,7 +41,7 @@ bool Tdcp(SnapshotPtr snapshot_r,
...
@@ -41,7 +41,7 @@ bool Tdcp(SnapshotPtr snapshot_r,
{
{
// If use old nav temporary change navigation to (re)compute satellites positions
// If use old nav temporary change navigation to (re)compute satellites positions
auto
nav_k
=
snapshot_k
->
getNavigation
();
auto
nav_k
=
snapshot_k
->
getNavigation
();
if
(
tdcp_params
.
old_nav
)
if
(
tdcp_params
.
tdcp
.
use_
old_nav
)
{
{
snapshot_k
->
getSatellites
().
clear
();
snapshot_k
->
getSatellites
().
clear
();
snapshot_k
->
setNavigation
(
snapshot_r
->
getNavigation
());
snapshot_k
->
setNavigation
(
snapshot_r
->
getNavigation
());
...
@@ -79,7 +79,7 @@ bool Tdcp(SnapshotPtr snapshot_r,
...
@@ -79,7 +79,7 @@ bool Tdcp(SnapshotPtr snapshot_r,
tdcp_params
);
tdcp_params
);
// UNDO temporary change navigation
// UNDO temporary change navigation
if
(
tdcp_params
.
old_nav
)
if
(
tdcp_params
.
tdcp
.
use_
old_nav
)
{
{
snapshot_k
->
setNavigation
(
nav_k
);
snapshot_k
->
setNavigation
(
nav_k
);
snapshot_k
->
computeSatellites
(
opt
.
sateph
);
snapshot_k
->
computeSatellites
(
opt
.
sateph
);
...
...
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