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
!17
Resolve "TDCP batch implementation"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "TDCP batch implementation"
15-tdcp-batch-implementation
into
devel
Overview
0
Commits
15
Pipelines
0
Changes
3
Merged
Joan Vallvé Navarro
requested to merge
15-tdcp-batch-implementation
into
devel
4 years ago
Overview
0
Commits
15
Pipelines
0
Changes
3
Expand
Closes
#15 (closed)
Edited
3 years ago
by
Joan Vallvé Navarro
0
0
Merge request reports
Viewing commit
c31b219d
Prev
Next
Show latest version
3 files
+
140
−
144
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
c31b219d
struct for tdcp output
· c31b219d
Joan Vallvé Navarro
authored
3 years ago
include/gnss_utils/tdcp.h
+
44
−
31
Options
@@ -14,40 +14,53 @@ struct TdcpBatchParams
int
raim_n
;
double
raim_min_residual
;
bool
relinearize_jacobian
;
bool
old_nav
;
int
max_iterations
;
};
bool
Tdcp
(
SnapshotPtr
snapshot_r
,
SnapshotPtr
snapshot_k
,
Eigen
::
Vector4d
&
d
,
Eigen
::
Matrix4d
&
cov_d
,
double
&
residual
,
const
std
::
set
<
int
>&
discarded_sats
,
std
::
set
<
int
>&
raim_discarded_sats
,
const
TdcpBatchParams
&
tdcp_params
,
const
Options
&
opt
);
bool
Tdcp
(
SnapshotPtr
snapshot_r
,
SnapshotPtr
snapshot_k
,
const
Eigen
::
Vector3d
&
x_r
,
Eigen
::
Vector4d
&
d
,
Eigen
::
Matrix4d
&
cov_d
,
double
&
residual
,
const
std
::
set
<
int
>&
discarded_sats
,
std
::
set
<
int
>&
raim_discarded_sats
,
const
TdcpBatchParams
&
tdcp_params
,
const
Options
&
opt
);
bool
Tdcp
(
SnapshotPtr
snapshot_r
,
SnapshotPtr
snapshot_k
,
const
Eigen
::
Vector3d
&
x_r
,
const
std
::
set
<
int
>
common_sats
,
Eigen
::
Vector4d
&
d
,
Eigen
::
Matrix4d
&
cov_d
,
double
&
residual
,
std
::
set
<
int
>
raim_discarded_sats
,
const
TdcpBatchParams
&
tdcp_params
);
struct
TdcpOutput
{
bool
success
=
false
;
std
::
string
msg
=
""
;
std
::
set
<
int
>
raim_discarded_sats
;
std
::
set
<
int
>
used_sats
;
Eigen
::
Vector4d
d
=
Eigen
::
Vector4d
::
Zero
();
Eigen
::
Matrix4d
cov_d
=
Eigen
::
Matrix4d
::
Zero
();
double
dt
=
0
;
double
residual
=
0
;
};
TdcpOutput
Tdcp
(
SnapshotPtr
snapshot_r
,
SnapshotPtr
snapshot_k
,
const
Eigen
::
Vector4d
&
d_0
,
const
std
::
set
<
int
>&
discarded_sats
,
const
TdcpBatchParams
&
tdcp_params
,
const
Options
&
opt
);
TdcpOutput
Tdcp
(
SnapshotPtr
snapshot_r
,
SnapshotPtr
snapshot_k
,
const
Eigen
::
Vector3d
&
x_r
,
const
Eigen
::
Vector4d
&
d_0
,
const
std
::
set
<
int
>&
discarded_sats
,
const
TdcpBatchParams
&
tdcp_params
,
const
Options
&
opt
);
TdcpOutput
Tdcp
(
SnapshotPtr
snapshot_r
,
SnapshotPtr
snapshot_k
,
const
Eigen
::
Vector3d
&
x_r
,
const
std
::
set
<
int
>&
common_sats
,
const
Eigen
::
Vector4d
&
d_0
,
const
TdcpBatchParams
&
tdcp_params
);
TdcpOutput
Tdcp
(
const
Eigen
::
Vector3d
&
x_r
,
Eigen
::
MatrixXd
&
A
,
Eigen
::
VectorXd
&
r
,
Eigen
::
VectorXd
&
drho_m
,
Eigen
::
MatrixXd
&
s_k
,
Eigen
::
MatrixXd
&
s_r
,
const
Eigen
::
Vector4d
&
d_0
,
std
::
set
<
int
>&
raim_discarded_rows
,
const
TdcpBatchParams
&
tdcp_params
);
}
// namespace GnssUtils
#endif
/* INCLUDE_GNSS_UTILS_Tdcp_H_ */
Loading