Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ROS2 rolling/galactic conversion #1622

Open
wants to merge 94 commits into
base: ros2-dashing
Choose a base branch
from

Commits on Nov 18, 2021

  1. Update clang-format to new Google style. (cartographer-project#1260)

    Apparently the format bot uses a bleeding edge clang-format that uses
    the new Google style and reformats a bunch of files in every PR. This is
    an empty commit to trigger this in a separate commit.
    
    See llvm-mirror/clang@62e3198
    
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    61126ec View commit details
    Browse the repository at this point in the history
  2. Unify trajectory state checks for service handlers. (cartographer-pro…

    …ject#1262)
    
    Some service handlers need to check if a trajectory is in a valid
    state for the requested operation. If it's not, they return an error
    response.
    
    `Node::CheckTrajectoryState` allows to avoid code duplication in such
    situations.
    
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    907080b View commit details
    Browse the repository at this point in the history
  3. Updated doc to remove abseil-cpp from ROS (cartographer-project#1211)

    I have added a few lines to the doc to alert users to remove ros abseil-cpp and also to change the rosinstall file if they wish to checkout a different version of cartographer. As discussed in cartographer-project#1208
    
    Signed-off-by: Guillaume Doisy <[email protected]>
    ashnarayan13 authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    1f712de View commit details
    Browse the repository at this point in the history
  4. Add explicit --save_state_filename to offline node options. (cartogra…

    …pher-project#1204)
    
    This allows to serialize the state also when no bagfile is given, e.g.
    when the offline node is used to run an optimization and/or trimming
    configuration on a pbstream. Or simply when one wants to use a custom
    name directly. This doesn't break compatibility with the previous CLI.
    
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    d497de9 View commit details
    Browse the repository at this point in the history
  5. Service to query trajectory segments from the pose graph. (cartograph…

    …er-project#1222)
    
    This `/trajectory_query` service allows to look up trajectory segments
    from the pose graph.
    
    This can be useful if one wants to get optimized trajectory data from
    the current SLAM run and listening to live TF data would be too noisy.
    For example, to stitch buffered point cloud data from a depth sensor
    based on a recent localization trajectory segment of a robot.
    
    Before, the pose graph trajectory nodes were not available except for
    the trajectory marker topic (only positions, no orientation; inefficient)
    or after serialization (which is not practical in live operation).
    
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    289ec49 View commit details
    Browse the repository at this point in the history
  6. Simplify start_trajectory service (RFC-28) (cartographer-project#1245)

    * Simplify start_trajectory.
    
    * Ran clang-format.
    
    * Make corrections based on the review
    
    * Make corrections based on review cartographer-project#2, remove obsolete functions
    
    * Remove unnecessary local variables
    
    Signed-off-by: Guillaume Doisy <[email protected]>
    mgladkova authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    2c20ec3 View commit details
    Browse the repository at this point in the history
  7. Update ROS API documentation with description of changed/new services (

    …cartographer-project#1282)
    
    Signed-off-by: Guillaume Doisy <[email protected]>
    mgladkova authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    920db8a View commit details
    Browse the repository at this point in the history
  8. Remove EOL Distros from CI matrix (cartographer-project#1379)

    Indigo and Lunar are both EOL
    
    Signed-off-by: Guillaume Doisy <[email protected]>
    tfoote authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    76f8989 View commit details
    Browse the repository at this point in the history
  9. Remove unnecessary eigen_conversions dependency. (cartographer-projec…

    …t#1278)
    
    Seems to have been used in the past, but isn't needed anymore.
    
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    d872cbe View commit details
    Browse the repository at this point in the history
  10. Fix broken build for melodic. Use official ros docker image. (cartogr…

    …apher-project#1484)
    
    Essentially revert cartographer-project#1021 as image seems to be fixed
    
    Signed-off-by: Bo Chen <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    bochen87 authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    f8c572b View commit details
    Browse the repository at this point in the history
  11. Change Google CLA to DCO in CONTRIBUTING.md (cartographer-project#1482)

    Signed-off-by: Guillaume Doisy <[email protected]>
    bochen87 authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    a463034 View commit details
    Browse the repository at this point in the history
  12. Fix build status on front page. (cartographer-project#1483)

    * Fix build status on front page.
    
    Changes "googlecartographer" to "cartographer-project"
    for references to CI and GitHub.
    
    Following cartographer-project/cartographer#1693.
    
    Signed-off-by: Wolfgang Hess <[email protected]>
    
    * Remove Indigo and Lunar Dockerfiles.
    
    Signed-off-by: Guillaume Doisy <[email protected]>
    wohe authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    ad5e157 View commit details
    Browse the repository at this point in the history
  13. Build Abseil dependency in CI. (cartographer-project#1485)

    cartographer-project/cartographer#1711 removed
    building Abseil from the Cartographer library.
    We follow here the same approach as in
    cartographer CI.
    
    An alternative approach which is now possible is
    adding an Abseil package for catkin and depending
    on that.
    
    Signed-off-by: Wolfgang Hess <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    wohe authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    2d9a4ab View commit details
    Browse the repository at this point in the history
  14. Remove support for Debian Jessie. (cartographer-project#1496)

    It has reached end-of-life with the
    end of LTS on June 30, 2020.
    
    Signed-off-by: Wolfgang Hess <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    wohe authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    82dce2e View commit details
    Browse the repository at this point in the history
  15. Prepare GMock support for Noetic. (cartographer-project#1499)

    This follows Cartographer installing libgmock-dev.
    
    Signed-off-by: Wolfgang Hess <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    wohe authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    d903fab View commit details
    Browse the repository at this point in the history
  16. Changes for ROS Noetic support (cartographer-project#1494)

    Signed-off-by: Michael Grupp <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    2654412 View commit details
    Browse the repository at this point in the history
  17. Remove legacy Jenkins quality pipeline. (cartographer-project#1510)

    - it has been used only at Google for a quality pipeline
    - the worker.py is Python 2 and closely tied to Google Cloud, so I don't
      believe there is much to be reused by someone else nowadays and not
      worth the effort to port to Python 3.
    
    Signed-off-by: Michael Grupp <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    622abfb View commit details
    Browse the repository at this point in the history
  18. Update assets_writer.rst (cartographer-project#1442)

    Signed-off-by: Geonhee-LEE <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    Geonhee-LEE authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    30d6430 View commit details
    Browse the repository at this point in the history
  19. Remove unnecessary bottlenecks from Dockerfiles to speed up CI. (cart…

    …ographer-project#1511)
    
    This should solve cartographer-project#1506.
    
    - Use osrf/ros-<distro>-desktop as base image for CI
    The basic ROS base image requires rosdep to install packages with many
    dependencies, e.g. rviz. Using the desktop base image should speed up CI
    because it has a good overlap with what we need and only little extra stuff.
    - Remove apt list only after installing everything.
    - Don't build protobuf 3 from source on Ubuntu 18 & 20.
    It should come with rosdep. Only on Ubuntu 16 we need to build manually
    because it ships with Protobuf 2.
    -  No need to build Ceres from source on Ubuntu 18 & 20. 
    The versions are greater or equal to 1.13, which is the one specified in
    the source build script. The apt packages should work just fine.
    
    The cartographer library is built from source in all cases, which is good to
    ensure that we always test compatibility with the latest version of it.
    
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    108dbf9 View commit details
    Browse the repository at this point in the history
  20. Follow cartographer-project/cartographer#1749. (cartographer-project#…

    …1516)
    
    Signed-off-by: Wolfgang Hess <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    wohe authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    9023f6e View commit details
    Browse the repository at this point in the history
  21. Follow cartographer-project/cartographer#1750. (cartographer-project#…

    …1518)
    
    Signed-off-by: Wolfgang Hess <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    wohe authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    4c8d47a View commit details
    Browse the repository at this point in the history
  22. Minor documentation tweaks for Noetic. (cartographer-project#1520)

    Signed-off-by: Wolfgang Hess <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    wohe authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    4f730df View commit details
    Browse the repository at this point in the history
  23. Use distinct issue templates for bugs, tuning and general things. (ca…

    …rtographer-project#1521)
    
    This uses the more modern issue template mechanism of GitHub.
    Users will be able to choose one of these after clicking "add issue".
    
    ---
    
    The template for tuning is reworded to reflect that tuning issues are
    not guaranteed to be handled by maintainers.
    
    Signed-off-by: Michael Grupp <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    8712d1d View commit details
    Browse the repository at this point in the history
  24. Fix includes to follow style guide in playable_bag.h (cartographer-pr…

    …oject#1524)
    
    Signed-off-by: Michael Grupp <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    108f2c6 View commit details
    Browse the repository at this point in the history
  25. Fix Sphinx documentation errors & warnings. (cartographer-project#1523)

    Fixes broken links, code blocks and other things that
    `sphinx-build docs/source docs/out -E` complained about.
    
    Signed-off-by: Michael Grupp <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    ee785ad View commit details
    Browse the repository at this point in the history
  26. Follow cartographer-project/cartographer#1759. (cartographer-project#…

    …1525)
    
    Signed-off-by: Wolfgang Hess <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    wohe authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    f372263 View commit details
    Browse the repository at this point in the history
  27. Update "Getting involved" documentation page. (cartographer-project#1522

    )
    
    Some things were outdated after recent changes.
    
    Signed-off-by: Michael Grupp <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    6daa4ac View commit details
    Browse the repository at this point in the history
  28. Make publishing tf optional, enable publishing PoseStamped (cartograp…

    …her-project#1099)
    
    If the output of cartographer should be used as an input to an additional sensor fusion method,
    using the published TF transform is inconvenient or in our specific use case even harmful
    because we don't want to add the raw cartographer output to our TF tree.
    
    With this change it becomes optional to broadcast to /tf.
    Morever there is an option to publish the tracked frame pose as a PoseStamped message.
    We add two new optional parameters:
    - `publish_to_tf` if false no tf transform is broadcasted
    -  `publish_tracked_pose` If set `true` a PoseStamped representing the position of the
    tracked pose w.r.t. map frame is published.
    
    If default launchers and settings are used this PR causes no change in the behavior.
    
    Signed-off-by: Guillaume Doisy <[email protected]>
    Jonathan Huber authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    804595b View commit details
    Browse the repository at this point in the history
  29. Add color requirement note for point_cloud_viewer (cartographer-proje…

    …ct#1424)
    
    I was running through these docs and having [trouble](cartographer-project/point_cloud_viewer#389)
    with map visualization via `point_cloud_viewer`.
    Notably, color is required for plys ingested by `point_cloud_viewer` (in contrast to Meshlab).
    
    This PR adds a note to make this clear.
    
    Signed-off-by: Erik Reed <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    erikreed authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    1cc08e9 View commit details
    Browse the repository at this point in the history
  30. Default to master in rosinstall (fixes cartographer-project#1122). (c…

    …artographer-project#1530)
    
    This makes much more sense than 1.0.0, which is counter-intuitive.
    
    If someone is building from source they usually do it to build the
    latest bleeding-edge version.
    
    Signed-off-by: Michael Grupp <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    820881c View commit details
    Browse the repository at this point in the history
  31. Remove ceres-solver from cartographer_ros.rosinstall. (cartographer-p…

    …roject#1532)
    
    Recent versions no longer build ceres-solver and instead
    depend on libceres-dev. See also cartographer-project#1518.
    
    Signed-off-by: Wolfgang Hess <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    wohe authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    5ef6a4f View commit details
    Browse the repository at this point in the history
  32. Fix outdated build instructions (closes cartographer-project#1531). (c…

    …artographer-project#1537)
    
    Signed-off-by: Michael Grupp <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    00825c9 View commit details
    Browse the repository at this point in the history
  33. Use PoseGraphInterface instead of PoseGraph. (cartographer-project#1547)

    Tiny improvement to not depend on more than is needed.
    
    Signed-off-by: Wolfgang Hess <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    wohe authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    fb81a3f View commit details
    Browse the repository at this point in the history
  34. Use the MapBuilder factory function. (cartographer-project#1551)

    This follows cartographer-project/cartographer#1776.
    
    Signed-off-by: Wolfgang Hess <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    wohe authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    2ae29b4 View commit details
    Browse the repository at this point in the history
  35. Update algo_walkthrough.rst (cartographer-project#1545)

    Fix typos.
    
    Signed-off-by: zhenzhenxiang <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    zhenzhenxiang authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    359e580 View commit details
    Browse the repository at this point in the history
  36. Check if we already publihed transformation at same timestamp Fix car…

    …tographer-project#1555 (cartographer-project#1556)
    
    Signed-off-by: stribor14 <[email protected]>
    
    Co-authored-by: stribor14 <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    2 people authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    1dfb8a0 View commit details
    Browse the repository at this point in the history
  37. Improve CONTRIBUTING.md and add a pull request template. (cartographe…

    …r-project#1564)
    
    This is similar to cartographer-project/cartographer#1780, but
    - we add a pull request template (there was none before)
    - we refer to cartographer_ros CONTRIBUTING.md
    - we give different instructions to execute cartographer_ros tests
    
    Signed-off-by: Wolfgang Hess <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    wohe authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    3e0f6aa View commit details
    Browse the repository at this point in the history
  38. Fixing typo in the docs (cartographer-project#1588)

    Signed-off-by: mohamedsayed18 <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    mohamedsayed18 authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    2cbe3f2 View commit details
    Browse the repository at this point in the history
  39. typo fix (cartographer-project#1591)

    Signed-off-by: mohamedsayed18 <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    mohamedsayed18 authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    0d7e742 View commit details
    Browse the repository at this point in the history
  40. Remove inactive mailing list from docs. (cartographer-project#1612)

    Signed-off-by: Michael Grupp <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    MichaelGrupp authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    4e34fd5 View commit details
    Browse the repository at this point in the history
  41. [docs] Fix parameter name of publish_tracked_pose (cartographer-proje…

    …ct#1620)
    
    Signed-off-by: Jonathan Huber <[email protected]>
    Signed-off-by: Guillaume Doisy <[email protected]>
    Jonathan Huber authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    30d4ac5 View commit details
    Browse the repository at this point in the history
  42. ros2 conversion

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    a967698 View commit details
    Browse the repository at this point in the history
  43. remove debug compil options

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    b244341 View commit details
    Browse the repository at this point in the history
  44. wip not compiling

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    9d523f5 View commit details
    Browse the repository at this point in the history
  45. wip not compiling

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    65e1e81 View commit details
    Browse the repository at this point in the history
  46. more wip

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    24bd93b View commit details
    Browse the repository at this point in the history
  47. even more wip not compiling

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    c1a44d0 View commit details
    Browse the repository at this point in the history
  48. wip

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    385c563 View commit details
    Browse the repository at this point in the history
  49. Still not compiling but almost there

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    45e6d0c View commit details
    Browse the repository at this point in the history
  50. almost compiling

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    ba35440 View commit details
    Browse the repository at this point in the history
  51. compiling but nothing happens

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    f2d4be3 View commit details
    Browse the repository at this point in the history
  52. not compiling again

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    1599871 View commit details
    Browse the repository at this point in the history
  53. fix warning

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    aa8baf3 View commit details
    Browse the repository at this point in the history
  54. finally compiling but getting segmentation fault

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    ddf2e31 View commit details
    Browse the repository at this point in the history
  55. add backward ros

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    c398712 View commit details
    Browse the repository at this point in the history
  56. backward changes temp

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    46d6f4a View commit details
    Browse the repository at this point in the history
  57. some tries

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    ebf144c View commit details
    Browse the repository at this point in the history
  58. some other tries. i think the prob is in the linking to abseilcpp

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    7154b7a View commit details
    Browse the repository at this point in the history
  59. solved one issue, got another one

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    c5f73de View commit details
    Browse the repository at this point in the history
  60. backward gbd

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    7b9adbf View commit details
    Browse the repository at this point in the history
  61. closer

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    6924818 View commit details
    Browse the repository at this point in the history
  62. solved one issue, got another two

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    6008cf3 View commit details
    Browse the repository at this point in the history
  63. dirty fix

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    9557e3a View commit details
    Browse the repository at this point in the history
  64. plugin can be loaded and used but only the submap markers are visualized

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    60f52b8 View commit details
    Browse the repository at this point in the history
  65. oof

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    eed779c View commit details
    Browse the repository at this point in the history
  66. ros1 dep

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    624d2fb View commit details
    Browse the repository at this point in the history
  67. more ros1 dep fix

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    9aadc1c View commit details
    Browse the repository at this point in the history
  68. fixes to offline node and pbstream to map

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    a4bd9ec View commit details
    Browse the repository at this point in the history
  69. revert change in pbstream map node

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    9d1cb2c View commit details
    Browse the repository at this point in the history
  70. Q_EMIT / slot working but material error

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume dev PC committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    2d9dbbe View commit details
    Browse the repository at this point in the history
  71. working submps

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume dev PC committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    14ea582 View commit details
    Browse the repository at this point in the history
  72. clean xml

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume dev PC committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    991e6fb View commit details
    Browse the repository at this point in the history
  73. carto_ros as proper lib

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume dev PC committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    a8c2f85 View commit details
    Browse the repository at this point in the history
  74. clean comments not useful

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    3d6bcbc View commit details
    Browse the repository at this point in the history
  75. cleaned cmake rviz

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    36e7d16 View commit details
    Browse the repository at this point in the history
  76. sync

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    4865f84 View commit details
    Browse the repository at this point in the history
  77. RCL_ROS_TIME

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Nov 18, 2021
    Configuration menu
    Copy the full SHA
    71b1b69 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2021

  1. de-boostify

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Nov 22, 2021
    Configuration menu
    Copy the full SHA
    7eab590 View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2021

  1. got rid of most stderr warnings

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 28, 2021
    Configuration menu
    Copy the full SHA
    c7d0a7e View commit details
    Browse the repository at this point in the history
  2. fix sharedptr operator bool misuse

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 28, 2021
    Configuration menu
    Copy the full SHA
    923c8fc View commit details
    Browse the repository at this point in the history
  3. using latest tf available to avoid warning

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 28, 2021
    Configuration menu
    Copy the full SHA
    dbcac02 View commit details
    Browse the repository at this point in the history
  4. fix deserialization

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Nov 28, 2021
    Configuration menu
    Copy the full SHA
    d1fbd06 View commit details
    Browse the repository at this point in the history
  5. removed unused function arg + comment

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Nov 28, 2021
    Configuration menu
    Copy the full SHA
    eb93b2d View commit details
    Browse the repository at this point in the history
  6. added 100ms timeout lookuptf rviz

    Signed-off-by: Guillaume Doisy <[email protected]>
    imstevenpmwork authored and Guillaume Doisy committed Nov 28, 2021
    Configuration menu
    Copy the full SHA
    22b3bbc View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2021

  1. fix offline node remappings

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Dec 9, 2021
    Configuration menu
    Copy the full SHA
    4f38194 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2022

  1. proper cmakelists install

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Jan 10, 2022
    Configuration menu
    Copy the full SHA
    0c48092 View commit details
    Browse the repository at this point in the history
  2. offline_backpack_2d.launch conversion

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Jan 10, 2022
    Configuration menu
    Copy the full SHA
    4d65069 View commit details
    Browse the repository at this point in the history
  3. fix demo_2d.rviz and set_remap for offline demo

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Jan 10, 2022
    Configuration menu
    Copy the full SHA
    c2760d6 View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2022

  1. all bags launch files

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Jan 13, 2022
    Configuration menu
    Copy the full SHA
    cb2e96b View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2022

  1. fix assets_writer for MultiEchoLaserScan and PointCloud2

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    5e04306 View commit details
    Browse the repository at this point in the history
  2. assets writer launch conversion

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    d9daae8 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2022

  1. args for asserts writer backpack 3d

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Jan 28, 2022
    Configuration menu
    Copy the full SHA
    446f5a3 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2022

  1. change folder structure to standard ros2

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    c91cac5 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2022

  1. visualize pbstream launch

    Signed-off-by: Guillaume Doisy <[email protected]>
    Guillaume Doisy committed Mar 7, 2022
    Configuration menu
    Copy the full SHA
    061b6bd View commit details
    Browse the repository at this point in the history