Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
wolf_ros_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_ros
wolf_ros_gnss
Merge requests
!1
new release
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
new release
devel
into
master
Overview
0
Commits
91
Pipelines
0
Changes
31
Merged
Joan Vallvé Navarro
requested to merge
devel
into
master
3 years ago
Overview
0
Commits
91
Pipelines
0
Changes
31
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
3347ca63
91 commits,
3 years ago
31 files
+
3387
−
67
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
31
Search (e.g. *.vue) (Ctrl+P)
include/publisher_gnss_accuracy.h
0 → 100644
+
64
−
0
Options
//--------LICENSE_START--------
//
// Copyright (C) 2020,2021,2022 Institut de Robòtica i Informàtica Industrial, CSIC-UPC.
// Authors: Joan Solà Ortega (jsola@iri.upc.edu)
// All rights reserved.
//
// This file is part of WOLF
// WOLF is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
//--------LICENSE_END--------
#ifndef PUBLISHER_GNSS_ACCURACY_H
#define PUBLISHER_GNSS_ACCURACY_H
/**************************
* WOLF includes *
**************************/
#include
"core/problem/problem.h"
#include
"publisher.h"
/**************************
* ROS includes *
**************************/
#include
<ros/ros.h>
#include
<visualization_msgs/Marker.h>
namespace
wolf
{
class
PublisherGnssAccuracy
:
public
Publisher
{
visualization_msgs
::
Marker
PL_marker_msg_
;
std_msgs
::
ColorRGBA
marker_color_
;
SensorBasePtr
sensor_
;
double
k_H_
,
k_V_
;
public:
PublisherGnssAccuracy
(
const
std
::
string
&
_unique_name
,
const
ParamsServer
&
_server
,
const
ProblemPtr
_problem
);
WOLF_PUBLISHER_CREATE
(
PublisherGnssAccuracy
);
virtual
~
PublisherGnssAccuracy
(){};
void
initialize
(
ros
::
NodeHandle
&
nh
,
const
std
::
string
&
topic
)
override
;
void
publishDerived
()
override
;
};
WOLF_REGISTER_PUBLISHER
(
PublisherGnssAccuracy
)
}
#endif
Loading