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
fe840245
Commit
fe840245
authored
4 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Patches
Plain Diff
bugfix: elmin in rads
parent
4537ad25
No related branches found
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/processor/processor_gnss_fix.h
+1
-1
1 addition, 1 deletion
include/gnss/processor/processor_gnss_fix.h
include/gnss/processor/processor_tracker_gnss.h
+1
-1
1 addition, 1 deletion
include/gnss/processor/processor_tracker_gnss.h
with
2 additions
and
2 deletions
include/gnss/processor/processor_gnss_fix.h
+
1
−
1
View file @
fe840245
...
...
@@ -52,7 +52,7 @@ struct ParamsProcessorGnssFix : public ParamsProcessorBase
compute_pos_opt
.
tropopt
=
_server
.
getParam
<
int
>
(
prefix
+
_unique_name
+
"/gnss/tropopt"
);
// troposphere option: (0:correction off,1:Saastamoinen model,2:SBAS model,3:troposphere option: ZTD estimation,4:ZTD+grad estimation,5:ZTD correction,6:ZTD+grad correction)
compute_pos_opt
.
sbascorr
=
_server
.
getParam
<
int
>
(
prefix
+
_unique_name
+
"/gnss/sbascorr"
);
// SBAS option (1:long term correction,2:fast correction,4:ionosphere correction,8:ranging)
compute_pos_opt
.
raim
=
_server
.
getParam
<
bool
>
(
prefix
+
_unique_name
+
"/gnss/raim"
);
// RAIM enabled
compute_pos_opt
.
elmin
=
D2R
*
_server
.
getParam
<
double
>
(
prefix
+
_unique_name
+
"/gnss/elmin"
);
// min elevation (
degrees
)
compute_pos_opt
.
elmin
=
_server
.
getParam
<
double
>
(
prefix
+
_unique_name
+
"/gnss/elmin"
);
// min elevation (
rad
)
compute_pos_opt
.
maxgdop
=
_server
.
getParam
<
double
>
(
prefix
+
_unique_name
+
"/gnss/maxgdop"
);
// maxgdop: reject threshold of gdop
compute_pos_opt
.
GPS
=
_server
.
getParam
<
bool
>
(
prefix
+
_unique_name
+
"/gnss/constellations/GPS"
);
/* navigation system */
...
...
This diff is collapsed.
Click to expand it.
include/gnss/processor/processor_tracker_gnss.h
+
1
−
1
View file @
fe840245
...
...
@@ -45,7 +45,7 @@ struct ParamsProcessorTrackerGnss : public ParamsProcessorTrackerFeature
gnss_opt
.
tropopt
=
_server
.
getParam
<
int
>
(
prefix
+
_unique_name
+
"/gnss/tropopt"
);
// troposphere option: (0:correction off,1:Saastamoinen model,2:SBAS model,3:troposphere option: ZTD estimation,4:ZTD+grad estimation,5:ZTD correction,6:ZTD+grad correction)
gnss_opt
.
sbascorr
=
_server
.
getParam
<
int
>
(
prefix
+
_unique_name
+
"/gnss/sbascorr"
);
// SBAS option (1:long term correction,2:fast correction,4:ionosphere correction,8:ranging)
gnss_opt
.
raim
=
_server
.
getParam
<
int
>
(
prefix
+
_unique_name
+
"/gnss/raim"
);
// RAIM enabled
gnss_opt
.
elmin
=
D2R
*
_server
.
getParam
<
double
>
(
prefix
+
_unique_name
+
"/gnss/elmin"
);
// min elevation (
degrees
)
gnss_opt
.
elmin
=
_server
.
getParam
<
double
>
(
prefix
+
_unique_name
+
"/gnss/elmin"
);
// min elevation (
rad
)
gnss_opt
.
maxgdop
=
_server
.
getParam
<
double
>
(
prefix
+
_unique_name
+
"/gnss/maxgdop"
);
// maxgdop: reject threshold of gdop
gnss_opt
.
GPS
=
_server
.
getParam
<
bool
>
(
prefix
+
_unique_name
+
"/gnss/constellations/GPS"
);
/* navigation system */
...
...
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