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
c0ded649
Commit
c0ded649
authored
4 years ago
by
Joan Vallvé Navarro
Browse files
Options
Downloads
Patches
Plain Diff
same constellations for fix and better printing
parent
29ef3ecf
No related branches found
No related tags found
3 merge requests
!28
release after RAL
,
!27
After 2nd RAL submission
,
!18
Gauss
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/gnss/processor/processor_tracker_gnss.h
+9
-0
9 additions, 0 deletions
include/gnss/processor/processor_tracker_gnss.h
src/processor/processor_tracker_gnss.cpp
+5
-1
5 additions, 1 deletion
src/processor/processor_tracker_gnss.cpp
with
14 additions
and
1 deletion
include/gnss/processor/processor_tracker_gnss.h
+
9
−
0
View file @
c0ded649
...
@@ -82,6 +82,15 @@ struct ParamsProcessorTrackerGnss : public ParamsProcessorTrackerFeature
...
@@ -82,6 +82,15 @@ struct ParamsProcessorTrackerGnss : public ParamsProcessorTrackerFeature
// COMPUTE FIX OPTIONS (RAIM)
// COMPUTE FIX OPTIONS (RAIM)
fix_opt
.
elmin
=
0
;
fix_opt
.
elmin
=
0
;
fix_opt
.
maxgdop
=
30
;
fix_opt
.
maxgdop
=
30
;
// same constellations
fix_opt
.
GPS
=
gnss_opt
.
GPS
;
fix_opt
.
SBS
=
gnss_opt
.
SBS
;
fix_opt
.
GLO
=
gnss_opt
.
GLO
;
fix_opt
.
GAL
=
gnss_opt
.
GAL
;
fix_opt
.
QZS
=
gnss_opt
.
QZS
;
fix_opt
.
CMP
=
gnss_opt
.
CMP
;
fix_opt
.
IRN
=
gnss_opt
.
IRN
;
fix_opt
.
LEO
=
gnss_opt
.
LEO
;
}
}
std
::
string
print
()
const
std
::
string
print
()
const
...
...
This diff is collapsed.
Click to expand it.
src/processor/processor_tracker_gnss.cpp
+
5
−
1
View file @
c0ded649
...
@@ -105,9 +105,13 @@ void ProcessorTrackerGnss::preProcess()
...
@@ -105,9 +105,13 @@ void ProcessorTrackerGnss::preProcess()
untracked_incoming_features_
[
feat
->
satNumber
()]
=
feat
;
untracked_incoming_features_
[
feat
->
satNumber
()]
=
feat
;
}
}
std
::
string
discarded_str
;
for
(
auto
sat
:
fix_incoming_
.
discarded_sats
)
discarded_str
+=
std
::
to_string
(
sat
)
+
" "
;
WOLF_DEBUG
(
"ProcessorTrackerGnss::preProcess()"
,
WOLF_DEBUG
(
"ProcessorTrackerGnss::preProcess()"
,
"
\n\t
initial observations: "
,
n_initial
,
"
\n\t
initial observations: "
,
n_initial
,
"
\n\t
RTKLIB discarded: "
,
fix_incoming_
.
discarded_sats
.
size
(),
"
\n\t
RTKLIB discarded: "
,
fix_incoming_
.
discarded_sats
.
size
(),
" ("
,
discarded_str
,
")"
,
"
\n\t
gnssutils discarded: "
,
n_initial
-
untracked_incoming_features_
.
size
()
-
fix_incoming_
.
discarded_sats
.
size
(),
"
\n\t
gnssutils discarded: "
,
n_initial
-
untracked_incoming_features_
.
size
()
-
fix_incoming_
.
discarded_sats
.
size
(),
"
\n\t
detected incoming features: "
,
untracked_incoming_features_
.
size
());
"
\n\t
detected incoming features: "
,
untracked_incoming_features_
.
size
());
}
}
...
...
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