Public Member Functions | List of all members
sdf::v11::Sensor Class Reference

Information about an SDF sensor. More...

#include <Sensor.hh>

Public Member Functions

 Sensor ()
 Default constructor. More...
 
const AirPressureAirPressureSensor () const
 Get the air pressure sensor, or nullptr if this sensor type is not an AirPressure sensor. More...
 
const AltimeterAltimeterSensor () const
 Get the altimeter sensor, or nullptr if this sensor type is not an Altimeter. More...
 
const CameraCameraSensor () const
 Get a pointer to a camera sensor, or nullptr if the sensor does not contain a camera sensor. More...
 
sdf::ElementPtr Element () const
 Get a pointer to the SDF element that was used during load. More...
 
const ForceTorqueForceTorqueSensor () const
 Get a pointer to a force torque sensor, or nullptr if the sensor does not contain a force torque sensor. More...
 
const ImuImuSensor () const
 Get a pointer to an IMU sensor, or nullptr if the sensor does not contain an IMU sensor. More...
 
const LidarLidarSensor () const
 Get the lidar sensor, or nullptr if this sensor type is not a Lidar. More...
 
Errors Load (ElementPtr _sdf)
 Load the sensor based on a element pointer. More...
 
const MagnetometerMagnetometerSensor () const
 Get the magnetometer sensor, or nullptr if this sensor type is not a Magnetometer. More...
 
std::string Name () const
 Get the name of the sensor. More...
 
bool operator!= (const Sensor &_sensor) const
 Return true this Sensor object does not contain the same values as the passed in parameter. More...
 
bool operator== (const Sensor &_sensor) const
 Return true if both Sensor objects contain the same values. More...
 
const std::string & PoseRelativeTo () const
 Get the name of the coordinate frame relative to which this object's pose is expressed. More...
 
const ignition::math::Pose3d & RawPose () const
 Get the pose of the sensor. More...
 
sdf::SemanticPose SemanticPose () const
 Get SemanticPose object of this object to aid in resolving poses. More...
 
void SetAirPressureSensor (const AirPressure &_air)
 Set the air pressure sensor. More...
 
void SetAltimeterSensor (const Altimeter &_alt)
 Set the altimeter sensor. More...
 
void SetCameraSensor (const Camera &_cam)
 Set the camera sensor. More...
 
void SetForceTorqueSensor (const ForceTorque &_ft)
 Set the force torque sensor. More...
 
void SetImuSensor (const Imu &_imu)
 Set the IMU sensor. More...
 
void SetLidarSensor (const Lidar &_lidar)
 Set the lidar sensor. More...
 
void SetMagnetometerSensor (const Magnetometer &_mag)
 Set the magnetometer sensor. More...
 
void SetName (const std::string &_name)
 Set the name of the sensor. More...
 
void SetPoseRelativeTo (const std::string &_frame)
 Set the name of the coordinate frame relative to which this object's pose is expressed. More...
 
void SetRawPose (const ignition::math::Pose3d &_pose)
 Set the pose of the sensor. More...
 
void SetTopic (const std::string &_topic)
 Set the topic on which sensor data should be published. More...
 
void SetType (const SensorType _type)
 Set the sensor type. More...
 
bool SetType (const std::string &_typeStr)
 Set the sensor type from a string. More...
 
void SetUpdateRate (double _hz)
 Set the update rate. More...
 
std::string Topic () const
 Get the topic on which sensor data should be published. More...
 
SensorType Type () const
 Get the sensor type. More...
 
std::string TypeStr () const
 Get the sensor type as a string. More...
 
double UpdateRate () const
 Get the update rate in Hz. More...
 

Detailed Description

Information about an SDF sensor.

Constructor & Destructor Documentation

◆ Sensor()

sdf::v11::Sensor::Sensor ( )

Default constructor.

Member Function Documentation

◆ AirPressureSensor()

const AirPressure* sdf::v11::Sensor::AirPressureSensor ( ) const

Get the air pressure sensor, or nullptr if this sensor type is not an AirPressure sensor.

Returns
Pointer to the AirPressure sensor, or nullptr if this Sensor is not a AirPressure sensor.
See also
SensorType Type() const

◆ AltimeterSensor()

const Altimeter* sdf::v11::Sensor::AltimeterSensor ( ) const

Get the altimeter sensor, or nullptr if this sensor type is not an Altimeter.

Returns
Pointer to the Altimeter sensor, or nullptr if this Sensor is not a Altimeter.
See also
SensorType Type() const

◆ CameraSensor()

const Camera* sdf::v11::Sensor::CameraSensor ( ) const

Get a pointer to a camera sensor, or nullptr if the sensor does not contain a camera sensor.

Returns
Pointer to the sensor's camera, or nullptr if the sensor is not a camera.
See also
SensorType Type() const

◆ Element()

sdf::ElementPtr sdf::v11::Sensor::Element ( ) const

Get a pointer to the SDF element that was used during load.

Returns
SDF element pointer. The value will be nullptr if Load has not been called.

◆ ForceTorqueSensor()

const ForceTorque* sdf::v11::Sensor::ForceTorqueSensor ( ) const

Get a pointer to a force torque sensor, or nullptr if the sensor does not contain a force torque sensor.

Returns
Pointer to the force torque sensor, or nullptr if the sensor is not a force torque sensor.
See also
SensorType Type() const

◆ ImuSensor()

const Imu* sdf::v11::Sensor::ImuSensor ( ) const

Get a pointer to an IMU sensor, or nullptr if the sensor does not contain an IMU sensor.

Returns
Pointer to the sensor's IMU, or nullptr if the sensor is not an IMU.
See also
SensorType Type() const

◆ LidarSensor()

const Lidar* sdf::v11::Sensor::LidarSensor ( ) const

Get the lidar sensor, or nullptr if this sensor type is not a Lidar.

Returns
Pointer to the Lidar sensor, or nullptr if this Sensor is not a Lidar.
See also
SensorType Type() const

◆ Load()

Errors sdf::v11::Sensor::Load ( ElementPtr  _sdf)

Load the sensor based on a element pointer.

This is not the usual entry point. Typical usage of the SDF DOM is through the Root object.

Parameters
[in]_sdfThe SDF Element pointer
Returns
Errors, which is a vector of Error objects. Each Error includes an error code and message. An empty vector indicates no error.

◆ MagnetometerSensor()

const Magnetometer* sdf::v11::Sensor::MagnetometerSensor ( ) const

Get the magnetometer sensor, or nullptr if this sensor type is not a Magnetometer.

Returns
Pointer to the Magnetometer sensor, or nullptr if this Sensor is not a Magnetometer.
See also
SensorType Type() const

◆ Name()

std::string sdf::v11::Sensor::Name ( ) const

Get the name of the sensor.

The name of the sensor should be unique within the scope of a World.

Returns
Name of the sensor.

◆ operator!=()

bool sdf::v11::Sensor::operator!= ( const Sensor _sensor) const

Return true this Sensor object does not contain the same values as the passed in parameter.

Parameters

◆ operator==()

bool sdf::v11::Sensor::operator== ( const Sensor _sensor) const

Return true if both Sensor objects contain the same values.

Parameters

◆ PoseRelativeTo()

const std::string& sdf::v11::Sensor::PoseRelativeTo ( ) const

Get the name of the coordinate frame relative to which this object's pose is expressed.

An empty value indicates that the frame is relative to the parent link/joint coordinate frame.

Returns
The name of the pose relative-to frame.

◆ RawPose()

const ignition::math::Pose3d& sdf::v11::Sensor::RawPose ( ) const

Get the pose of the sensor.

This is the pose of the sensor as specified in SDF (<sensor> <pose> ... </pose></sensor>), and is typically used to express the position and rotation of a sensor in a global coordinate frame.

Returns
The pose of the sensor.

◆ SemanticPose()

sdf::SemanticPose sdf::v11::Sensor::SemanticPose ( ) const

Get SemanticPose object of this object to aid in resolving poses.

Returns
SemanticPose object for this link.

◆ SetAirPressureSensor()

void sdf::v11::Sensor::SetAirPressureSensor ( const AirPressure _air)

Set the air pressure sensor.

Parameters
[in]_airThe air pressure sensor.

◆ SetAltimeterSensor()

void sdf::v11::Sensor::SetAltimeterSensor ( const Altimeter _alt)

Set the altimeter sensor.

Parameters
[in]_altThe altimeter sensor.

◆ SetCameraSensor()

void sdf::v11::Sensor::SetCameraSensor ( const Camera _cam)

Set the camera sensor.

Parameters
[in]_camThe camera sensor.

◆ SetForceTorqueSensor()

void sdf::v11::Sensor::SetForceTorqueSensor ( const ForceTorque _ft)

Set the force torque sensor.

Parameters
[in]_ftThe force torque sensor.

◆ SetImuSensor()

void sdf::v11::Sensor::SetImuSensor ( const Imu _imu)

Set the IMU sensor.

Parameters
[in]_imuThe IMU sensor.

◆ SetLidarSensor()

void sdf::v11::Sensor::SetLidarSensor ( const Lidar _lidar)

Set the lidar sensor.

Parameters
[in]_lidarThe lidar sensor.

◆ SetMagnetometerSensor()

void sdf::v11::Sensor::SetMagnetometerSensor ( const Magnetometer _mag)

Set the magnetometer sensor.

Parameters
[in]_magThe magnetometer sensor.

◆ SetName()

void sdf::v11::Sensor::SetName ( const std::string &  _name)

Set the name of the sensor.

The name of the sensor should be unique within the scope of a World.

Parameters
[in]_nameName of the sensor.

◆ SetPoseRelativeTo()

void sdf::v11::Sensor::SetPoseRelativeTo ( const std::string &  _frame)

Set the name of the coordinate frame relative to which this object's pose is expressed.

An empty value indicates that the frame is relative to the parent link/joint coordinate frame.

Parameters
[in]_frameThe name of the pose relative-to frame.

◆ SetRawPose()

void sdf::v11::Sensor::SetRawPose ( const ignition::math::Pose3d &  _pose)

Set the pose of the sensor.

See also
const ignition::math::Pose3d &RawPose() const
Parameters
[in]_poseThe new sensor pose.

◆ SetTopic()

void sdf::v11::Sensor::SetTopic ( const std::string &  _topic)

Set the topic on which sensor data should be published.

Parameters
[in]_topicTopic for this sensor's data.

◆ SetType() [1/2]

void sdf::v11::Sensor::SetType ( const SensorType  _type)

Set the sensor type.

Parameters
[in]_typeThe sensor type.

◆ SetType() [2/2]

bool sdf::v11::Sensor::SetType ( const std::string &  _typeStr)

Set the sensor type from a string.

Parameters
[in]_typeStrThe sensor type. A valid parameter should equal one of the enum value name in the SensorType enum. For example, "altimeter" or "camera".
Returns
True if the _typeStr parameter matched a known sensor type. False if the sensor type could not be set.

◆ SetUpdateRate()

void sdf::v11::Sensor::SetUpdateRate ( double  _hz)

Set the update rate.

This is The frequency at which the sensor data is generated. If left unspecified (0.0), the sensor will generate data every cycle.

Parameters
[in]_rateThe update rate in Hz.

◆ Topic()

std::string sdf::v11::Sensor::Topic ( ) const

Get the topic on which sensor data should be published.

Returns
Topic for this sensor's data.

◆ Type()

SensorType sdf::v11::Sensor::Type ( ) const

Get the sensor type.

Returns
The sensor type.

◆ TypeStr()

std::string sdf::v11::Sensor::TypeStr ( ) const

Get the sensor type as a string.

Returns
The sensor type as a string.

◆ UpdateRate()

double sdf::v11::Sensor::UpdateRate ( ) const

Get the update rate in Hz.

This is The frequency at which the sensor data is generated. If left unspecified (0.0), the sensor will generate data every cycle.

Returns
The update rate in Hz.

The documentation for this class was generated from the following file: