-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(autoware_map_msgs): add selected map loading (#57)
* feat(map_loader): add support for sequential_map_loading Signed-off-by: Shin-kyoto <58775300+Shin-kyoto@users.noreply.github.com> * feat(autoware_map_msgs): add PointCloudMetaData.msg Signed-off-by: Shin-kyoto <58775300+Shin-kyoto@users.noreply.github.com> * docs(autoware_map_msgs): add description of selected_map_loading Signed-off-by: Shin-kyoto <58775300+Shin-kyoto@users.noreply.github.com> * docs(autoware_map_msgs): remove gif for selected_map_loading Signed-off-by: Shin-kyoto <58775300+Shin-kyoto@users.noreply.github.com> * docs(autoware_map_msgs): fix typo Signed-off-by: Shin-kyoto <58775300+Shin-kyoto@users.noreply.github.com> * feat(autoware_map_msgs): make member of msg plural Signed-off-by: Shin-kyoto <58775300+Shin-kyoto@users.noreply.github.com> * docs(autoware_map_msgs): clarify the client needs to receive msg beforehand Signed-off-by: Shin-kyoto <58775300+Shin-kyoto@users.noreply.github.com> * docs(autoware_map_msgs): clarify IDs included in msgs are used as query for service Signed-off-by: Shin-kyoto <58775300+Shin-kyoto@users.noreply.github.com> --------- Signed-off-by: Shin-kyoto <58775300+Shin-kyoto@users.noreply.github.com>
- Loading branch information
1 parent
8667820
commit 75e6313
Showing
7 changed files
with
38 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Metadata of pointcloud map cell | ||
|
||
float32 min_x | ||
float32 min_y | ||
float32 max_x | ||
float32 max_y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Pointcloud metadata with ID | ||
|
||
string cell_id | ||
PointCloudMapCellMetaData metadata |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
# Pointcloud data with ID | ||
|
||
string cell_id | ||
sensor_msgs/PointCloud2 pointcloud | ||
float32 min_x | ||
float32 min_y | ||
float32 max_x | ||
float32 max_y | ||
PointCloudMapCellMetaData metadata |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Header | ||
std_msgs/Header header | ||
|
||
PointCloudMapCellMetaDataWithID[] metadata_list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# ID query for map loading | ||
string[] cell_ids | ||
|
||
--- | ||
# Header | ||
std_msgs/Header header | ||
|
||
# Newly loaded PCD maps with ID | ||
PointCloudMapCellWithID[] new_pointcloud_with_ids |