[Documentation] [TitleIndex] [WordIndex

Planet ROS

Planet ROS - http://planet.ros.org

Planet ROS - http://planet.ros.org[WWW] http://planet.ros.org


ROS Discourse General: Localization-only mode in ROS 2 API of mola_lidar_odometry

Update to the former post: Tons of new features have been added to mola + mola_lidar_odometry in the latest releases:

Resources:

MOLA-LO: Mapping, then localize - Step-by-step tutorial

Feedback, issues, or PRs are all greatly appreciated! :slight_smile:

PS: Not all these features are available in the current binaries from apt… you might need to build from sources or wait for the next release cycle.

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/localization-only-mode-in-ros-2-api-of-mola-lidar-odometry/41225

ROS Discourse General: ROS News for the Week of December 15th, 2024

ROS News for the Week of December 15th, 2024


xmas
It is that time of year! Time for robot holiday videos! IEEE Spectrum has a full run down. I particularly like the Clearpath Robotics’ video that features multiple TB4 lites acting as elves. :elf:



New tutorial alert. We just released an official tutorial for the ament lint CLI utilities. If you are not using these tools to clean up your code, you should be!


soar_ros_icon_slogan_default
SOAR is the OG of classic AI! This week we learned about a new package to
connect SOAR and ROS 2.



This week a team at MIT released ROMAN an open-set object mapping / global localization package along with a ROS 2 wrapper.



Everyone is talking about it! This week a team of 18 universities plus NVIDIA released Genesis, a generative world for general-purpose robotics & embodied AI learning. The early demos look impressive. You can learn more at the project page.

Events

News

ROS

Got a Minute? :mantelpiece_clock: :gift:

It is the holidays and everyone has some extra free time. Why not give the gift of open source and review a pull request or fix an issue in ROS 2?

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/ros-news-for-the-week-of-december-15th-2024/41220

ROS Discourse General: New packages for Humble Hawksbill 2024-12-20

Package Updates for Humble

Added Packages [30]:

Updated Packages [330]:

Removed Packages [0]:

Thanks to all ROS maintainers who make packages available to the ROS community. The above list of packages was made possible by the work of the following maintainers:

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/new-packages-for-humble-hawksbill-2024-12-20/41214

ROS Discourse General: World Magnetic Model 2025 released (and WMM2020 ending very soon!)

If you’re using magnetometers and World Magnetic Model on your robots, pay attention!

The World Magnetic Model 2025 (with validity 2025-2030) has been released by NOAA a few days ago (they made it before DOGE starts biting :smiley: ).

What’s more important, WMM2020 validity ends on 31 Dec 2024. If you’re using the model and check for validity, it is time to update pretty fast! If you don’t check date validity, your model will probably still work fine, but the error would be larger and larger.

If you’re using GeographicLib, it hasn’t adopted the new model yet, but the data are already provided by a side-channel: How to apply WMM2025 model in GeographicLib? · Issue #34 · geographiclib/geographiclib · GitHub .

If you’re using magnetic_model ROS package, WMM2025 will be included in its next release.

4 posts - 2 participants

Read full topic

[WWW] https://discourse.ros.org/t/world-magnetic-model-2025-released-and-wmm2020-ending-very-soon/41211

ROS Discourse General: Time to give your magnetometers a big refresh!

Are you using magnetometers on your robot? And are you using them right? Did you know each magnetometer has a bias that needs to be removed?


I’d like to announce the release of our suite of magnetometer tools that could be helpful to lots of people who deal with outdoor navigation.

The release is for ROS Noetic currently. We’ll definitely port the stack to ROS 2 some time next year.

I’ll be happy for feedback!

magnetometer_pipeline

To calibrate your magnetometer (i.e. identify its bias), use node magnetometer_pipeline/ magnetometer_bias_observer . Just spin up the node, call service /calibrate_magnetometer and you have 30 seconds to rotate your robot about as many axes as you can. This corresponds to the 8-shape phones sometimes want you to do.

Using a magnetometer without calibration is bad, bad, bad! The outputs are usually pretty much nonsense. Do not do it.

Once the magnetometer is calibrated, bias is published on topic /imu/mag_bias. Node (and nodelet) magnetometer_pipeline/magnetometer_bias_remover can take the raw /imu/mag data and remove the bias from them, providing topic /imu/mag_unbiased.

magnetometer_compass

To convert the magnetometer measurement to a heading, use node(let) magnetometer_compass/magnetometer_compass. It eats /imu/mag_unbiased and /imu/data (with orientation) and extracts azimuth (heading).

As there are multiple possible ways to express azimuths, magnetometer_compass supports all imaginable combinations:

Azimuth reference:

Azimuth orientation:

Units:

Output data types:

To be able to convert between magnetic and true North, magnetic declination needs to be known. This value depends on GNSS position, so the compass node can eat NavSatFix messages which tell it where the robot is. Or, if the position is predictable/static, you can set it as a config parameter and then you don’t need to provide the NavSatFix messages. The resolution of the magnetic model is ~3500 km, so you don’t need to be very precise here.

Magnetometer measurements can be quite noisy. Therefore, magnetometer_compass contains a built-in low-pass filter with configurable strength to make the azimuth reading a bit more stable.

Once you get the magnetometer_compass running, you might want to visualize its output using magnetometer_compass/visualize_azimuth, which can eat any of the above-defined outputs.

Some magnetometer drivers (ethzasl_xsens_driver, I’m looking at you) mix up the units in the magnetometer part and report in Gauss instead of Tesla (1 T = 10000 G). Fortunately, for just identifying the azimuth, this is no problem!

compass_conversions

As can be seen above, there are quite a lot of ways to express an azimuth. compass_conversions provide a C++ library, message filter and nodelet that can convert any kind of azimuth to any other kind.

Using the message filter, it is quite simple to subscribe to any kind of azimuth representation and get the one you actually need in your code:

message_filters::Subscriber azimuthInput(...);
message_filters::Subscriber fixInput(...);
compass_conversions::CompassFilter filter(log, nullptr, azimuthInput, fixInput,
  compass_msgs::Azimuth::UNIT_RAD, compass_msgs::Azimuth::ORIENTATION_ENU,
  compass_msgs::Azimuth::REFERENCE_GEOGRAPHIC);
filter.registerCallback([](const compass_msgs::AzimuthConstPtr& msg) {
  ...  // Handle the data which come geographic-referenced, ENU oriented, in radians
});

Analogically, you can spin up compass_conversions/compass_transformer to do this conversion at the ROS API level.

magnetic_model

Converting magnetic North to true North requires knowing the magnetic declination. This is a value provided by World Magnetic Model. magnetic_model is a C++ library that provides easy usage of the model with ROS data types. In addition to what GeographicLib already provides, magnetic_model also knows the error model of the conversion, so it can also tell you the variance of the conversion.

This package comes with all available releases of WMM preinstalled, so there’s no need to get the data elsewhere. But it still supports customizing the path to the folder with models - just in case you need to use something different.

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/time-to-give-your-magnetometers-a-big-refresh/41208

ROS Discourse General: New Packages for Noetic 2024-12-19

We’re happy to announce 10 new packages and 79 updates are now available in ROS Noetic. This sync was tagged as noetic/2024-12-19.

Thank you to every maintainer and contributor who made these updates available!

Package Updates for ROS Noetic

Added Packages [10]:

Updated Packages [79]:

Removed Packages [0]:

Thanks to all ROS maintainers who make packages available to the ROS community. The above list of packages was made possible by the work of the following maintainers:

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/new-packages-for-noetic-2024-12-19/41203

ROS Discourse General: How do you monitor your robot diagnostics (topic rates)?

Hi all!

What kind of tools do you use to monitor your robots in runtime? I’m especially interested in monitoring ROS 2 topic rates to confirm for example that all the sensors are publishing data correctly.

I’m looking for a solution that could do this without large overhead, and that would preferably work “from outside”, without injecting code to the subscriptions/publishers. It should publish ROS Diagnostics messages if the expected rates are below the given thresholds.

Is there a solution that can already do this? I’ve so far checked for example ROS 2 built-in Topic Statistics and ros2_tracing, but they don’t seem to fulfill these requirements.

I would be also interested in hearing how you monitor the other aspects of your robots, such as network usage, Node health, etc.

9 posts - 6 participants

Read full topic

[WWW] https://discourse.ros.org/t/how-do-you-monitor-your-robot-diagnostics-topic-rates/41191

ROS Discourse General: Next Client Library WG Meeting: Friday 20th December 2024 8AM PT

Hi,
The next meeting of the Client Library Working Group will be this Friday, 20th December 2024 at 8 AM Pacific Time.

The Client Library Working Group has also become the first official WG under the new OSRA and ROS PMC organization!

10 posts - 5 participants

Read full topic

[WWW] https://discourse.ros.org/t/next-client-library-wg-meeting-friday-20th-december-2024-8am-pt/41179

ROS Discourse General: ROS 2 Visualization Tools for Architecture

Hello everyone,

I was wondering what kind of visualizations tools do you use or are aware to see the architecture of a ROS 2 system?

For instance, if you would like to see the connections between nodes and topics (e.g., I know that rqt can show that), visualize messages flow, parameters, or even documentation.

Thank you!
Paulo

3 posts - 3 participants

Read full topic

[WWW] https://discourse.ros.org/t/ros-2-visualization-tools-for-architecture/41170

ROS Discourse General: Global Robot Density in Factories Doubled in Seven Years - What's the impact of ROS?

Has anybody read this news? What’s your opinion on the impact of ROS here?

+++

Global Robot Density in Factories Doubled in Seven Years

New World Robotics Data by International Federation of Robotics reveal

Frankfurt, Nov 20, 2024 — Robot adoption in factories around the world continues at high speed: The new global average robot density reaches a record 162 units per 10,000 employees in 2023 - more than double the number measured only seven years ago (74 units). This is according to the World Robotics 2024 report, presented by the International Federation of Robotics (IFR).

Robot density serves as a barometer to track the degree of automation adoption in the manufacturing industry around the world," says Takayuki Ito, President of the International Federation of Robotics. “This year’s runner-up is China, which ranks third worldwide behind Korea and Singapore, but right up with Germany and Japan."

Robot density by region

The European Union has a robot density of 219 units per 10,000 employees, an increase of 5.2%, with Germany, Sweden, Denmark and Slovenia in the global top ten.

North America´s robot density is 197 units per 10,000 employees – up 4,2%. The United States ranks tenth in the world among the most automated countries in the manufacturing industry.

Asia has a robot density of 182 units per 10,000 persons employed in manufacturing - an increase of 7.6%. The economies of Korea, Singapore, mainland China and Japan are among the top ten most automated countries.

Top countries

The Republic of Korea is the world´s number one adopter of industrial robots with 1,012 robots per 10,000 employees. Robot density has increased by 5% on average each year since 2018. With a world-renowned electronics industry and a strong automotive industry, the Korean economy relies on the two largest customers for industrial robots.

Singapore follows with 770 robots per 10,000 employees. Singapore is a small country with a very low number of employees in the manufacturing industry, so it can reach a high Robot density also with a relatively small operational stock.

China took third place in 2023, surpassing Germany and Japan. The country’s push to the use of automation technology results in a high robot density of 470 robots per 10,000 employees (2022: 402 units). China only entered the top 10 in 2019. It has managed to double its robot density within four years.

Germany ranks fourth with 429 robots per 10,000 employees. The robot density of Europe´s largest economy has grown by 5% CAGR since 2018.

Japan is in fifth place with 419 units. Robot density of the world´s predominant robot manufacturing country grew by 7% on average each year (2018-2023).

Robot density in the United States reached 295 units in 2023. The country ranks tenth in the world.

About Robot density

Robot density is the number of operational industrial robots relative to the number of employees. It can cover the whole manufacturing industry or just specific industrial branches. The number of employees serves as a measure of economic size, so the quotient of operational stock over employees puts the operational stock on a uniform base.

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/global-robot-density-in-factories-doubled-in-seven-years-whats-the-impact-of-ros/41123

ROS Discourse General: Is there a ROS 2 gazebo project for humanoids robots?

Dear ROS community,

I was researching if there are ROS 2 Gazebo project for humanoid robots that would facilitate in learning robot locomotion and whole-body motion planning. I am looking towards humanoids similar to Unitree’s H1/H2.

A research scientist from ETH Zurich pointed me to the Issac Gym environment that comes with the assets for H1/H2. But as far as I understand, that simulation pipeline does not use any ROS, and is meant for RL like research.

The closet project I found was Unitree’s ROS 1 project GitHub - unitreerobotics/unitree_ros but it has not been updated for the newer ROS 2 and Gazebo.

Thank you for your time.

With best,
Azmyin

4 posts - 3 participants

Read full topic

[WWW] https://discourse.ros.org/t/is-there-a-ros-2-gazebo-project-for-humanoids-robots/41094

ROS Discourse General: Opinion on companies still using ROS1

I would like to read what you think about taking a Job in companies who work extensively with ROS, but for one reason or another they are still in ROS1.
On one hand I realize that ROS is just a framework and that a lot can still be done and learned.
On the other, having worked for some years on both ROS and ROS2 I see the benefits of working with ROS2.
So I am torn and would like to hear other voices on the matter.

13 posts - 10 participants

Read full topic

[WWW] https://discourse.ros.org/t/opinion-on-companies-still-using-ros1/41079

ROS Discourse General: ROS News for the Week of December 9th, 2024

ROS News for the Week of December 9th, 2024



:cn: :tada: Our first ever ROSCon in China happened in Shanghai over the weekend! We want to congratulate the organizers on orchestrating such an impressive event. You can find a recap of ROSCon China here.


ROS 2 Iron Irwini is now officially end-of-life. If you are currently using Iron please consider upgrading to Jazzy!


harp2
Check out the HARP2 robot that was posted to the ROS Discord server yesterday. The developer’s website is full of really great posts that are worth checking out, especially on the topic of microROS.



The team behind TidyBot2 at Stanford and Princeton have open sourced the hardware for their robot. The robot supports a variety of arms and configurations allowing you to build a clone using hardware you may already have in the lab. See the docs for more details.



This week ROS Industrial released a comprehensive list of depth cameras for robotics applications. Even if you don’t need a new depth camera I recommend bookmarking this website for future website.



I want to send a big shout out @abaeyens for putting together this fantastic documentation on ROS 2 integration testing for docs.ros.org. :tada:

People often ask us how they can best contribute to the project. My recommendation is that when you run across something that feels not poorly documented take the time to summarize what you learned while figuring out how to solve the problem. That’s exactly what @abaeyens
did in this case and the results are excellent
.


Events

News

ROS

Got a minute? :alarm_clock:

All we want for Christmas are pull requests to the ROS 2 docs. :gift:

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/ros-news-for-the-week-of-december-9th-2024/41073

ROS Discourse General: Call for “IFR’s Women in Robotics: 10 Women Shaping the Future of Robotics in 2025” is now open

Call for “IFR’s Women in Robotics: 10 Women Shaping the Future of Robotics in 2025” is now open

The International Federation of Robotics (IFR) is looking for outstanding women in robotics

Dec 10, 2024 — IFR would like to highlight and honor Women in Robotics - in particular women in the robotics industry - and give them more visibility. IFR will select a list of 10 women to officially award as “IFR’s Women in Robotics: 10 Women Shaping the Future of Robotics” in 2025.

IFR decided to give women in robotics more visibility and acknowledgment. This should inspire girls and young women to pursue a career in STEM subjects or robotics and will also help companies to reach gender equality and overcome shortage of staff.

IFR would like to highlight and honor Women in Robotics - in particular women in the robotics industry - and give them more visibility.
IFR will select a list of 10 women to officially award as “IFR’s Women in Robotics: 10 Women Shaping the Future of Robotics” in 2025.

IRF is in particular looking for women that have either a proven track record in robotics, stand out as industry leader or women with a proven activity in encouraging young people to go into STEM or that somehow support females in robotics.

Deadline for submission is January 31st, 2025.

How to submit a suggestion

Send an email to secretariat@ifr.org
include a short bio and a description of what makes her noteworthy or particular with respect to our described scope
add her full name, affiliation, country, contact details and a photo

Selection criteria:

Publication of results will be on International Women’s Day - March 8th, 2025.

IFR’s 2024 Women in Robotics

Learn more on why gender balance is beneficial for economies

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/call-for-ifr-s-women-in-robotics-10-women-shaping-the-future-of-robotics-in-2025-is-now-open/41068

ROS Discourse General: REUSE compatibility vs multi-package repo

Hi. I’ve started trying to have my repos REUSE-compliant.

It seems that single-package repos can easily be turned into REUSE-compliant by adding all the SPDX comments to files, moving the top-level LICENSE file into LICENSES/BSD-3-Clause.txt and specifying <license file="LICENSES/BSD-3-Clause.txt">BSD</license> in package.xml.

However, if I want to do the same for a multi-package repo, then the LICENSES folder has to be a top-level one, i.e. at the same level as are the packages (that is a REUSE requirement). At the same time, I’d like to not have to copy all licenses to each package - as it’s best if each is stored only once. However, if I put <license file="../LICENSES/BSD-3-Clause.txt"> in package.xml, then bloom-release fails not being able to find the license file. That’s because it builds each package from the repo in a separate directory that is moved outside the repo.

I don’t see a clean solution how to satisfy both REUSE and bloom (except not adding the file= attribute, but I’d like to keep it). My current dirty workaround is to just copy the license file into the root of each subpackage. That’s not nice, but it does the job.

Does anybody know of a cleaner solution? I think it would be very nice if ROS deployment process would be compatible with REUSE.

5 posts - 3 participants

Read full topic

[WWW] https://discourse.ros.org/t/reuse-compatibility-vs-multi-package-repo/41063

ROS Discourse General: Optimizations cpp ROS2 node. colcon build

I’ve been using ROS2 for a year. Maybe previously you guys talked about this. However I’ve done experimental tests about the optimization C++ code ROS2 node and wrote a simple node.

#include "rclcpp/rclcpp.hpp"

class HelloWorldNode : public rclcpp::Node
{
public:
    HelloWorldNode() : Node("hello_world_node")
    {
        RCLCPP_INFO(this->get_logger(), "Hello, World! This is a ROS2 node.");
    }
};

int main(int argc, char **argv)
{
    rclcpp::init(argc, argv);
    rclcpp::spin(std::make_shared<HelloWorldNode>());
    rclcpp::shutdown();
    return 0;
}

Then by simply building the above code by using

colcon build

I got hello_node then explored assemble code

objdump -d <path>/hello_node > hello_node.asm

got around 5000 lines of instruction code in hello_node.asm, it seems like it didn’t do any optimization to the code. Then run the following command

colcon build --cmake-args -DCMAKE_BUILD_TYPE=Release
///alternative
colcon build --cmake-args -DCMAKE_CXX_FLAGS="-O3 -march=native"

then looked number instructions lines the number dramatically decreased from 5000 to 1700. the number of instruction lines in assemble doesn’t always mean it’s optimized yet it’s good factor.

“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”“”"
simple by adding “set(CMAKE_BUILD_TYPE Release)” to your CMakeLists.txt is enough. then you can simply use colcon build.
Optimizations flags

8 posts - 7 participants

Read full topic

[WWW] https://discourse.ros.org/t/optimizations-cpp-ros2-node-colcon-build/41048

ROS Discourse General: :checkered_flag: Gazebo Garden officially end-of-life [x-post Gazebo Sim Community]

Original Post

Dear ROS Community,

Gazebo Garden has reached end-of-life (EOL) as of November, 2024. Garden was the seventh major release of Gazebo and was supported for two years (non-LTS). It was the first release where Ignition was renamed Gazebo. It also introduced various exciting features, including custom shader plugins, Reset API, DEM support, lunar and custom surface coordinates, glTF and GLB mesh support, and an acoustic communication plugin, just to name a few. See the entire list of features on the Release Features page.

We recommend all Garden users migrate to a supported release as soon as possible, such as Harmonic (LTS) or Ionic, which are paired with ROS Jazzy and Rolling (Kilted once released) respectively. Migrating to either Harmonic or Ionic should be fairly smooth, however, be sure to check the release highlights for Harmonic and Ionic in addition to checking each Gazebo library’s migration guide.

As part of the Garden EOL, the following Gazebo libraries have also reached end-of-life. Their latest released binaries will remain available at http://packages.osrfoundation.org/, but no more fixes or releases will be made.

Library major version Final release
gz-fuel-tools8 8.2.0
gz-sim7 7.9.0
gz-gui7 7.2.2
gz-launch6 6.2.0
gz-msgs9 9.5.1
gz-physics6 6.7.0
gz-rendering7 7.5.0
gz-sensors7 7.3.1
gz-transport12 12.2.2
sdformat13 13.9.0

We sincerely thank all contributors to all libraries in Garden :pray:

What does End of Life Mean?

Users often ask us, “what does end of life mean?” To put it briefly, end of life means that the Gazebo team will no longer support that particular Gazebo release. In practical terms, this means that we will no longer be providing the following for Gazebo Garden:

It is also worth noting the things that won’t change after Gazebo Garden goes end of life:

:gazebo: Gazebo Dev Team :gazebo:

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/gazebo-garden-officially-end-of-life-x-post-gazebo-sim-community/41044

ROS Discourse General: How important is ROS when searching for a job?

I have made an analysis of almost 2.000 jobs in LinkedIn and found out how relevant is ROS for getting a job as a robotics software developer. I included other interesting data about what matters for companies posting robotics jobs.

Check all that data in this video: https://youtu.be/wDeVNsD73A4?si=wcD3F1FizuJ52K3e

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/how-important-is-ros-when-searching-for-a-job/41032

ROS Discourse General: Iron Irwini is End-of-Life

Dear ROS Community,

It is bitter-sweet to announce that ROS 2 Iron Irwini is now end-of-life.

Iron Irwini was released on May 23rd 2023 and marked the ninth distribution of ROS 2. Despite being a non-LTS release, it was feature packed (see more).

Over the past year and half, there have been 40 distro syncs and 7 patch releases that cumulatively brought thousands of packages and updates to the community.

The last patch and sync (tagged iron/2024-12-04) brought 6 new packages and 320 updates.

Expand for details of the final sync (click for more details)

The distribution has been marked end-of-life across docs.ros.org, index.ros.org and rosdistro. CI and Buildfarm jobs have been disabled and will be deleted after a month assuming no issues crop up. The final snapshot of the distribution has been uploaded to snapshots.ros.org. If you are currently using Iron, please switch to Jazzy Jalisco which is the latest LTS release. The transition should be very smooth.

It has been a great privilege of mine to serve as the ROS Boss for Iron Irwini especially given that Steve Irwin was my childhood hero. A big thank you to all ROS maintainers and community members for making Iron Irwini such a successful release! :iron: :irwini:

-Yadu

2 posts - 2 participants

Read full topic

[WWW] https://discourse.ros.org/t/iron-irwini-is-end-of-life/41031

ROS Discourse General: Guest Talk by Tomoya Fujita - Cloud Robotics WG Meeting 2024-12-16

Please come and join us for this coming meeting at 1700-1800 UTC on Monday 16th December 2024, where Tomoya Fujita will be talking about Robotics Platforms empowered by Cloud-Native Technologies.

Tomoya is a software engineer, contributor to ROS2 core, and well-respected community builder. In this session, he will talk about a range of Cloud-Native Technologies he has worked on, and their relevance to robotics. In particular, Tomoya has done a great deal of work on KubeEdge, a platform built on Kubernetes that can be used to deploy software to robots as if they are Kubernetes clusters. Some resources from his talk includes:

Tomoya also plans to leave time to discuss Cloud Robotics with the group, particularly the problems that people are having with Cloud Robotics.

Last meeting, we worked through a workshop for Eclipse Zenoh to test its capabilities and ease of setup. If you’re interested to see our progress, please check the meeting recording.

If you are willing and able to give a talk on cloud robotics in future meetings, we would be happy to host you - please reply here, message me directly, or sign up using the Guest Speaker Signup Sheet. We will record your talk and host it on YouTube with our other meeting recordings too!

The meeting link is here, and you can sign up to our calendar or our Google Group for meeting notifications.

Hopefully we will see you there!

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/guest-talk-by-tomoya-fujita-cloud-robotics-wg-meeting-2024-12-16/41021

ROS Discourse General: Robotics engineers are in high demand — but what is the job really like?

Robotics engineers are in high demand — but what is the job really like?

2 posts - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/robotics-engineers-are-in-high-demand-but-what-is-the-job-really-like/41015

ROS Discourse General: ROS News for the Week of December 2nd, 2024

ROS News for the Week of December 2nd, 2024


ROSCon Germany and ROSCon India were both this week! It was really exciting to see two ROS events happening concurrently on two different parts of the globe. We want to congratulate the organizers and attendees on putting together fantastic events.


But wait, there’s more! Our first ever ROSCon China in Shanghai is about to kick off in about four or five hours.



While we’re welcoming so many new friends to the ROS community we’re also getting ready to say farewell to ROS 1 Noetic, Gazebo Classic, Gazebo Citadel, and ROS 2 Iron Irwini.



We have two ROS Meetups planned for 2024-12-12. One meetup in Singapore and another one in Barcelona Spain



If you are in a giving mood this holiday season we are currently running a donation campaign for the OSRF. We’ve made it possible for you to earmark your donation for particular OSRF projects like the ROS Build Farm, the ROS Documentation, and our educational outreach initiatives.



At last week’s Gazebo Community Meeting we met multiple competitors from the NASA SpaceROS Summer Sprint Challenge. The results are absolutely amazing and are all open source! We recommend you check it out.

Events

News

ROS

Got a Minute? :alarm_clock:

We would really appreciate it if you took ten minutes to answer just one ROS question on Robotics Stack Exchange.

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/ros-news-for-the-week-of-december-2nd-2024/40997

ROS Discourse General: rmw_iceoryx2 v0.1.0 release

Hi all,

orecham here, one of the committers from the eclipse-iceoryx project.

I’m pleased to announce the alpha release of rmw_iceoryx2, compatible with ROS 2 rolling and available at: GitHub - ekxide/rmw_iceoryx2: ROS 2 RMW implementation for iceoryx2

Why yet another RMW? We have the following goals for rmw_iceoryx2:

  1. Bring the high-performance zero-copy shared-memory communication offered by iceoryx2 to ROS 2 applications
  2. Provide a unique option for reducing safety certification effort of ROS 2 applications with safety-critical use-cases

Rather than require the entire ROS 2 stack be certified (e.g. for ASIL-D), rmw_iceoryx2 offers an alternative through interoperability between ROS 2 and iceoryx2 applications. This allows the freedom for porting safety-critical components that require certification to iceoryx2 (which is designed for certification) while still participating in the ROS 2 ecosystem.

Current State

With this first alpha release, there is still some work to do and polish to be made. Not all features are yet available and existing ones need thorough real-world validation. Most notably, support for message serialization is not yet available nor service-client communication (waiting on some features to be completed in iceoryx2). Lack of serialization support means that rmw_iceoryx2 can currently only work with self-contained message types, however, this will be one of the first limitations to address next.

Furthermore, only intra-host communication is currently possible. We have plans to introduce host-to-host capabilities in the near future by leveraging existing host-to-host-capable middlewares. Some more info about this is available in the README.

Performance

The current performance_test results are as follow. There is still quite a bit of room for improvement compared to raw iceoryx2:

Contributing and Feedback

We look forward to your feedback! Input from real-world application configurations will be invaluable for bringing rmw_iceoryx2 to stability. Additionally, insights from those experienced with RMW implementations would greatly help improve quality. The current state was achieved using only the information available in the RMW documentation, thus there may be some edge-cases known to veterans which are not properly addressed.

For those who have the capacity to get involved with implementation, we welcome all contributions! We will provide as much support as needed to those who are interested.

Thanks for reading!
Cheers

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/rmw-iceoryx2-v0-1-0-release/40996

ROS Discourse General: New Packages for Noetic 2024-12-06

We’re happy to announce 2 new packages and 46 updates are now available in ROS Noetic. This sync was tagged as noetic/2024-12-06.

Thank you to every maintainer and contributor who made these updates available!

Package Updates for ROS Noetic

Added Packages [2]:

Updated Packages [46]:

Removed Packages [0]:

Thanks to all ROS maintainers who make packages available to the ROS community. The above list of packages was made possible by the work of the following maintainers:

2 posts - 2 participants

Read full topic

[WWW] https://discourse.ros.org/t/new-packages-for-noetic-2024-12-06/40995

ROS Discourse General: Open-RMF PMC Timing Change for 2024-12-17

Due to a one-time scheduling conflict, the Open-RMF Project Management Committee session that is normally scheduled for 2024-12-17T01:00:00Z UTC will instead take place one hour later at 2024-12-17T02:00:00Z UTC. This change is reflected in the official OSRF events calendar.

Sessions will return to the normal time afterwards.

1 post - 1 participant

Read full topic

[WWW] https://discourse.ros.org/t/open-rmf-pmc-timing-change-for-2024-12-17/40986


2024-12-21 13:07