Skip to content

Commit

Permalink
feat(autoware_map_msgs): add msg and srv files releated with dynamic …
Browse files Browse the repository at this point in the history
…lanelet loading (#81)

Signed-off-by: Barış Zeren <[email protected]>
  • Loading branch information
StepTurtle authored Sep 29, 2024
1 parent f3ee114 commit 2ae076e
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 1 deletion.
5 changes: 4 additions & 1 deletion autoware_map_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ ament_auto_find_build_dependencies()
set(msg_files
"msg/AreaInfo.msg"
"msg/LaneletMapBin.msg"
"msg/LaneletMapMetaData.msg"
"msg/LaneletMapCellMetaData.msg"
"msg/PointCloudMapCellWithID.msg"
"msg/PointCloudMapCellMetaData.msg"
"msg/PointCloudMapCellMetaDataWithID.msg"
"msg/PointCloudMapMetaData.msg"
"srv/GetPartialPointCloudMap.srv"
"srv/GetDifferentialPointCloudMap.srv"
"srv/GetSelectedPointCloudMap.srv")
"srv/GetSelectedPointCloudMap.srv"
"srv/GetSelectedLanelet2Map.srv")

set(msg_dependencies
std_msgs
Expand Down
7 changes: 7 additions & 0 deletions autoware_map_msgs/msg/LaneletMapCellMetaData.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Metadata of lanelet map cell

string cell_id
float64 min_x
float64 max_x
float64 min_y
float64 max_y
4 changes: 4 additions & 0 deletions autoware_map_msgs/msg/LaneletMapMetaData.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Header
std_msgs/Header header

LaneletMapCellMetaData[] metadata_list
9 changes: 9 additions & 0 deletions autoware_map_msgs/srv/GetSelectedLanelet2Map.srv
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Osm file ids which are selected to be loaded
string[] cell_ids

---
# Header
std_msgs/Header header

# Newly loaded Lanelet map
autoware_map_msgs/LaneletMapBin lanelet2_cells

0 comments on commit 2ae076e

Please sign in to comment.