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
!15
New pntpos output
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
New pntpos output
new-pntpos-output
into
devel
Overview
0
Commits
2
Pipelines
0
Changes
2
Merged
Joan Vallvé Navarro
requested to merge
new-pntpos-output
into
devel
4 years ago
Overview
0
Commits
2
Pipelines
0
Changes
2
Expand
few changes:
from
int pos_stat
(0 or 1) to
bool success
added
std::string msg
for failing message
0
0
Merge request reports
Viewing commit
7a2a6646
Prev
Next
Show latest version
2 files
+
11
−
12
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
7a2a6646
new output adding msg and bool success
· 7a2a6646
Joan Vallvé Navarro
authored
4 years ago
include/gnss_utils/gnss_utils.h
+
2
−
1
Options
@@ -42,7 +42,8 @@ struct ComputePosOutput
double
age
;
// age of differential (s)
double
ratio
;
// AR ratio factor for valiation
int
pos_stat
;
// return from pntpos 1:ok,0:error
bool
success
;
// return from pntpos true/false
std
::
string
msg
;
// message returned (in case of error)
Eigen
::
Vector3d
lat_lon
;
// latitude_longitude_altitude
std
::
map
<
int
,
Eigen
::
Vector2d
>
sat_azel
;
// azimuth and elevation of each satellite provided
Loading