Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gnss
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
mobile_robotics
wolf_projects
wolf_lib
plugins
gnss
Commits
b04c500b
Commit
b04c500b
authored
4 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Patches
Plain Diff
default values for tests
parent
a18a5f47
No related branches found
Branches containing commit
No related tags found
2 merge requests
!28
release after RAL
,
!27
After 2nd RAL submission
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/gnss/sensor/sensor_gnss.h
+9
-9
9 additions, 9 deletions
include/gnss/sensor/sensor_gnss.h
src/sensor/sensor_gnss.cpp
+1
-1
1 addition, 1 deletion
src/sensor/sensor_gnss.cpp
with
10 additions
and
10 deletions
include/gnss/sensor/sensor_gnss.h
+
9
−
9
View file @
b04c500b
...
...
@@ -19,17 +19,17 @@ WOLF_PTR_TYPEDEFS(SensorGnss);
struct
ParamsSensorGnss
:
public
ParamsSensorBase
{
// extrinsics and intrinsics
bool
extrinsics_fixed
;
bool
clock_bias_GPS_GLO_dynamic
;
bool
clock_bias_GPS_GAL_dynamic
;
bool
clock_bias_GPS_CMP_dynamic
;
bool
extrinsics_fixed
=
true
;
bool
clock_bias_GPS_GLO_dynamic
=
false
;
bool
clock_bias_GPS_GAL_dynamic
=
false
;
bool
clock_bias_GPS_CMP_dynamic
=
false
;
// ENU
std
::
string
ENU_mode
;
bool
roll_fixed
=
fals
e
;
bool
pitch_fixed
=
fals
e
;
bool
yaw_fixed
=
fals
e
;
bool
translation_fixed
=
fals
e
;
std
::
string
ENU_mode
=
"auto"
;
bool
roll_fixed
=
tru
e
;
bool
pitch_fixed
=
tru
e
;
bool
yaw_fixed
=
tru
e
;
bool
translation_fixed
=
tru
e
;
Eigen
::
Vector3d
ENU_latlonalt
=
Eigen
::
Vector3d
::
Zero
();
...
...
This diff is collapsed.
Click to expand it.
src/sensor/sensor_gnss.cpp
+
1
−
1
View file @
b04c500b
...
...
@@ -45,7 +45,7 @@ SensorGnss::SensorGnss(const Eigen::VectorXd& _extrinsics,
// PRIORS
// prior to ENU-MAP (avoid non-observable problem)
if
(
params
->
ENU_mode
!=
"ECEF"
)
if
(
params
_
->
ENU_mode
!=
"ECEF"
)
{
if
(
not
params_
->
translation_fixed
)
addPriorParameter
(
't'
,
Eigen
::
Vector3d
::
Zero
(),
10
*
Eigen
::
Matrix3d
::
Identity
());
...
...
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