File tree Expand file tree Collapse file tree 5 files changed +68
-1
lines changed Expand file tree Collapse file tree 5 files changed +68
-1
lines changed Original file line number Diff line number Diff line change 17
17
<build_depend >eigen_catkin</build_depend >
18
18
<build_depend >grid_map_core</build_depend >
19
19
<build_depend >grid_map_ros</build_depend >
20
- <build_depend >geo_map_msgs</build_depend >
21
20
<run_depend >eigen_catkin</run_depend >
22
21
<export >
23
22
</export >
Original file line number Diff line number Diff line change
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)
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments