Skip to content

Commit dc38dc9

Browse files
committed
Add gridmap geo messages
grid_map_geo_msgs
1 parent aab48d3 commit dc38dc9

File tree

5 files changed

+68
-1
lines changed

5 files changed

+68
-1
lines changed

grid_map_geo/package.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
<build_depend>eigen_catkin</build_depend>
1818
<build_depend>grid_map_core</build_depend>
1919
<build_depend>grid_map_ros</build_depend>
20-
<build_depend>geo_map_msgs</build_depend>
2120
<run_depend>eigen_catkin</run_depend>
2221
<export>
2322
</export>

grid_map_geo_msgs/CMakeLists.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
cmake_minimum_required(VERSION 2.8.3)
2+
project(grid_map_geo_msgs)
3+
4+
find_package(catkin REQUIRED COMPONENTS message_generation std_msgs)
5+
6+
include_directories(include)
7+
8+
add_message_files(
9+
DIRECTORY msg
10+
FILES
11+
GeographicMapInfo.msg
12+
)
13+
14+
generate_messages(DEPENDENCIES std_msgs)
15+
16+
catkin_package(
17+
INCLUDE_DIRS include
18+
CATKIN_DEPENDS message_runtime std_msgs)

grid_map_geo_msgs/include/dummy

Whitespace-only changes.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Geomap Message
2+
#
3+
4+
std_msgs/Header header
5+
6+
7+
# ESPG of the coordinate the map is in
8+
uint16 geo_coordinate
9+
10+
# Size of the map in pixels
11+
uint16 width
12+
uint16 height
13+
14+
15+
# Resolution of the map
16+
float64 x_resolution
17+
float64 y_resolution
18+
19+
# x value in the specified geocoordinate system
20+
float64 origin_x
21+
22+
# y value in the specified geocoordinate system
23+
float64 origin_y
24+
25+
# Altitude in the specified vertical datum
26+
float64 origin_altitude

grid_map_geo_msgs/package.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0"?>
2+
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
3+
<package format="3">
4+
<name>grid_map_geo_msgs</name>
5+
<version>0.0.1</version>
6+
<description>
7+
geomap_msgs includes the definition for custom services and messages for the grid_map_geo package.
8+
</description>
9+
10+
<maintainer email="[email protected]">Jaeyoung Lim</maintainer>
11+
<license>BSD</license>
12+
13+
<buildtool_depend>catkin</buildtool_depend>
14+
<build_depend>message_generation</build_depend>
15+
<exec_depend>message_runtime</exec_depend>
16+
<depend>std_msgs</depend>
17+
<!-- XXX needed for users of mavlink_convert.h
18+
<build_export_depend>libmavconn</build_export_depend>
19+
-->
20+
21+
<export>
22+
<architecture_independent/>
23+
</export>
24+
</package>

0 commit comments

Comments
 (0)