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

feat(autoware_map_msgs): add msg and srv files releated with dynamic lanelet loading #81

Merged
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
Loading