-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add geo_map_msgs for custom messages (#62) * Encapsulate grid_map_geo package * Add gridmap geo messages * Ported to ROS 2 * Remove dummy include folder Signed-off-by: Ryan Friedman <[email protected]> * Make CI build all packages and handle moved tests Signed-off-by: Ryan Friedman <[email protected]> --------- Signed-off-by: Ryan Friedman <[email protected]> Co-authored-by: Jaeyoung Lim <[email protected]>
- Loading branch information
1 parent
89d1b86
commit 0778982
Showing
22 changed files
with
66 additions
and
2 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,15 @@ | ||
cmake_minimum_required(VERSION 3.5) | ||
project(grid_map_geo_msgs) | ||
|
||
find_package(ament_cmake REQUIRED) | ||
find_package(std_msgs REQUIRED) | ||
find_package(rosidl_default_generators REQUIRED) | ||
|
||
rosidl_generate_interfaces(${PROJECT_NAME} | ||
"msg/GeographicMapInfo.msg" | ||
DEPENDENCIES std_msgs | ||
) | ||
|
||
ament_export_dependencies(rosidl_default_runtime) | ||
|
||
ament_package() |
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,26 @@ | ||
# Geomap Message | ||
# | ||
|
||
std_msgs/Header header | ||
|
||
|
||
# ESPG of the coordinate the map is in | ||
uint16 geo_coordinate | ||
|
||
# Size of the map in pixels | ||
uint16 width | ||
uint16 height | ||
|
||
|
||
# Resolution of the map | ||
float64 x_resolution | ||
float64 y_resolution | ||
|
||
# x value in the specified geocoordinate system | ||
float64 origin_x | ||
|
||
# y value in the specified geocoordinate system | ||
float64 origin_y | ||
|
||
# Altitude in the specified vertical datum | ||
float64 origin_altitude |
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,23 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>grid_map_geo_msgs</name> | ||
<version>0.0.1</version> | ||
<description> | ||
geomap_msgs includes the definition for custom services and messages for the grid_map_geo package. | ||
</description> | ||
|
||
<maintainer email="[email protected]">Jaeyoung Lim</maintainer> | ||
<license>BSD</license> | ||
|
||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
<depend>std_msgs</depend> | ||
<depend>rosidl_default_generators</depend> | ||
|
||
<member_of_group>rosidl_interface_packages</member_of_group> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |