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
0705279f
Commit
0705279f
authored
5 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Patches
Plain Diff
bug in time copy of results
parent
8e188ae4
No related branches found
Branches containing commit
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/gnss_utils.h
+1
-1
1 addition, 1 deletion
include/gnss_utils/gnss_utils.h
src/gnss_utils.cpp
+2
-2
2 additions, 2 deletions
src/gnss_utils.cpp
with
3 additions
and
3 deletions
include/gnss_utils/gnss_utils.h
+
1
−
1
View file @
0705279f
...
@@ -29,7 +29,7 @@ namespace GNSSUtils
...
@@ -29,7 +29,7 @@ namespace GNSSUtils
Eigen
::
Matrix3d
pos_covar
;
// position covariance (m^2)
Eigen
::
Matrix3d
pos_covar
;
// position covariance (m^2)
// {c_xx,c_yy,c_zz,c_xy,c_yz,c_zx}
// {c_xx,c_yy,c_zz,c_xy,c_yz,c_zx}
Eigen
::
VectorXd
rcv_bias
;
// receiver clock bias to time systems (s)
Eigen
::
VectorXd
rcv_bias
;
// receiver clock bias to time systems (s)
int
type
;
//
type
(0:xyz-ecef,1:enu-baseline)
int
type
;
//
coordinates used
(0:xyz-ecef,1:enu-baseline)
int
stat
;
// solution status (SOLQ_???)
int
stat
;
// solution status (SOLQ_???)
int
ns
;
// number of valid satellites
int
ns
;
// number of valid satellites
double
age
;
// age of differential (s)
double
age
;
// age of differential (s)
...
...
This diff is collapsed.
Click to expand it.
src/gnss_utils.cpp
+
2
−
2
View file @
0705279f
...
@@ -29,7 +29,7 @@ namespace GNSSUtils
...
@@ -29,7 +29,7 @@ namespace GNSSUtils
}
}
output
.
time
=
sol
.
time
.
time
;
output
.
time
=
sol
.
time
.
time
;
output
.
time
=
sol
.
time
.
sec
;
output
.
sec
=
sol
.
time
.
sec
;
output
.
pos
=
Eigen
::
Vector3d
(
sol
.
rr
);
output
.
pos
=
Eigen
::
Vector3d
(
sol
.
rr
);
// std::cout << "Compute pos: " << output.pos.transpose() << "\n";
// std::cout << "Compute pos: " << output.pos.transpose() << "\n";
output
.
vel
=
Eigen
::
Vector3d
(
&
sol
.
rr
[
3
]);
output
.
vel
=
Eigen
::
Vector3d
(
&
sol
.
rr
[
3
]);
...
@@ -78,7 +78,7 @@ namespace GNSSUtils
...
@@ -78,7 +78,7 @@ namespace GNSSUtils
}
}
output
.
time
=
sol
.
time
.
time
;
output
.
time
=
sol
.
time
.
time
;
output
.
time
=
sol
.
time
.
sec
;
output
.
sec
=
sol
.
time
.
sec
;
output
.
pos
=
Eigen
::
Vector3d
(
sol
.
rr
);
output
.
pos
=
Eigen
::
Vector3d
(
sol
.
rr
);
// std::cout << "Compute pos: " << output.pos.transpose() << "\n";
// std::cout << "Compute pos: " << output.pos.transpose() << "\n";
output
.
vel
=
Eigen
::
Vector3d
(
&
sol
.
rr
[
3
]);
output
.
vel
=
Eigen
::
Vector3d
(
&
sol
.
rr
[
3
]);
...
...
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